/* Device Europe inspired look (dark navy + teal accents) */
:root{
  --bg:#070b14;
  --bg2:#0a1022;
  --card:#0d1630;
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --muted2:rgba(233,238,252,.55);
  --line:rgba(233,238,252,.10);
  --accent:#32d6cc;
  --accent2:#1aa2b1;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(50,214,204,.18), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(26,162,177,.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-decoration-color: rgba(50,214,204,.6); text-underline-offset:4px; }
img{ max-width:100%; display:block; }
.container{ width:min(1120px, calc(100% - 48px)); margin:0 auto; }

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:12px; z-index:1000; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,11,20,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand__logo{ height:36px; width:auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)); }
.brand__logo2 {
  height: 36px;          /* default for desktop */
  max-width: 100%;       /* ensures image won't overflow the container */
  width: auto;           /* maintain aspect ratio */
  object-fit: contain;   /* makes sure it scales inside box */
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.nav__menu{
  display:flex; gap:18px; align-items:center;
}
.nav__menu a{ font-weight:600; color:rgba(233,238,252,.88); }
.nav__toggle{ display:none; background:transparent; border:0; cursor:pointer; padding:10px; }
.burger{
  width:22px; height:2px; background:var(--text); display:block; position:relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width:22px; height:2px; background:var(--text);
}
.burger::before{ top:-7px; }
.burger::after{ top:7px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#06101a;
  font-weight:800;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(50,214,204,.12);
  text-decoration:none !important;
}
.btn:hover{ filter:brightness(1.05); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(233,238,252,.18);
  box-shadow:none;
}
.btn--ghost:hover{ border-color: rgba(50,214,204,.55); }
.btn--small{ padding:10px 14px; font-weight:800; }

/* Hero */
.hero{ padding:72px 0 28px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(240, 241, 245, 0.911);
  border:1px solid rgba(233, 238, 252, 0.833);
  color:rgba(0, 0, 0, 0.92);
  font-weight:600;
}
.pill2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.974);
  border: 1px solid rgba(233, 238, 252, 0.833);
  color: rgba(0, 0, 0, 0.92);
  font-weight: 600;
  flex-wrap: wrap;       /* optional: wrap if logos + text are too wide */
  justify-content: center; /* optional, centers remaining logos */
}

h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-0.03em;
}
.accent{ color:var(--accent); }
.lead{
  color:var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height:1.6;
  margin:0 0 18px;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 16px; }

.hero__metrics{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.metric{
  padding:14px 14px;
  border-radius:var(--radius);
  background:rgba(233,238,252,.05);
  border:1px solid rgba(233,238,252,.10);
}
.metric__value{ font-weight:900; letter-spacing:-.01em; }
.metric__label{ margin-top:6px; color:var(--muted2); font-weight:600; font-size:13px; }

.hero__visual{ position:relative; min-height: 380px; }
.card{
  position:relative;
  padding:22px;
  border-radius:calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(13,22,48,.88), rgba(13,22,48,.55));
  border:1px solid rgba(233,238,252,.12);
  box-shadow: var(--shadow);
}
.glow::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  background: radial-gradient(600px 240px at 20% 0%, rgba(50,214,204,.22), transparent 60%),
              radial-gradient(600px 260px at 80% 20%, rgba(26,162,177,.16), transparent 60%);
  pointer-events:none;
  z-index:-1;
  filter: blur(14px);
}
.card__kicker{ color:rgba(233,238,252,.70); font-weight:700; }
.card__title{ font-size:22px; font-weight:900; margin:8px 0 10px; letter-spacing:-.02em; }
.ticks{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.ticks li{
  padding-left:28px;
  position:relative;
  color:rgba(233,238,252,.86);
  font-weight:600;
}
.ticks li::before{
  content:"";
  position:absolute; left:0; top:7px;
  width:16px; height:16px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.35));
  box-shadow: inset 0 0 0 2px rgba(50,214,204,.9);
}
.note{ margin-top:14px; color:var(--muted2); font-size:12px; }

.orb{
  position:absolute;
  border-radius:999px;
  filter: blur(0.2px);
  opacity:.95;
}
.orb--1{ width:120px; height:120px; left:-18px; bottom:18px; background: radial-gradient(circle at 30% 30%, rgba(50,214,204,.55), rgba(50,214,204,0)); }
.orb--2{ width:180px; height:180px; right:-26px; top:14px; background: radial-gradient(circle at 30% 30%, rgba(26,162,177,.45), rgba(26,162,177,0)); }
.orb--3{ width:90px; height:90px; right:38px; bottom:-14px; background: radial-gradient(circle at 30% 30%, rgba(50,214,204,.38), rgba(50,214,204,0)); }

/* Sections */
.section{ padding:64px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(233,238,252,.04), rgba(233,238,252,0));
  border-top:1px solid rgba(233,238,252,.06);
  border-bottom:1px solid rgba(233,238,252,.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:24px;
}
.section__head h2{
  margin:0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:-.02em;
}
.section__head p{
  margin:0;
  color:var(--muted);
  max-width: 56ch;
  line-height:1.6;
  font-weight:600;
}

/* Grids */
.grid{ display:grid; gap:14px; }
.grid--cards{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service, .feature{
  padding:18px 18px;
  border-radius:var(--radius);
  background:rgba(233,238,252,.045);
  border:1px solid rgba(233,238,252,.10);
}
.service h3, .feature h3{ margin:0 0 8px; font-size:16px; letter-spacing:-.01em; }
.service p, .feature p{ margin:0; color:var(--muted); line-height:1.6; font-weight:600; }

.banner{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 18px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(50,214,204,.14), rgba(13,22,48,.55));
  border:1px solid rgba(233,238,252,.12);
}
.banner h3{ margin:0 0 4px; }
.banner p{ margin:0; color:var(--muted); font-weight:600; }

/* Steps */
.steps{ margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:14px;
  padding:16px;
  border-radius:var(--radius);
  background:rgba(233,238,252,.045);
  border:1px solid rgba(233,238,252,.10);
}
.step__nr{
  width:44px; height:44px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(50,214,204,.14);
  border:1px solid rgba(50,214,204,.35);
  font-weight:900;
  color: rgba(233,238,252,.92);
}
.step h3{ margin:0 0 6px; font-size:16px; }
.step p{ margin:0; color:var(--muted); line-height:1.6; font-weight:600; }

/* Forms */
.form{
  padding:18px;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(13,22,48,.55);
  border:1px solid rgba(233,238,252,.12);
  box-shadow: var(--shadow);
}
.form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field--full{ grid-column: 1 / -1; }
label{ font-weight:800; font-size:13px; color: rgba(233,238,252,.92); }
.hint{ color:var(--muted2); font-weight:600; font-size:12px; }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.14);
  background: rgba(7,11,20,.55);
  color:var(--text);
  outline:none;
  font-weight:600;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(50,214,204,.7);
  box-shadow: 0 0 0 4px rgba(50,214,204,.12);
}
select[multiple]{ min-height: 112px; }
textarea{ resize: vertical; }

.check{ display:flex; gap:10px; align-items:flex-start; font-weight:700; color:var(--muted); }
.check input{ width:auto; margin-top:4px; }

.form__actions{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.form__fineprint{ margin:0; color:var(--muted2); font-weight:600; font-size:12px; max-width: 72ch; }

.toast{
  margin-left:auto;
  color: rgba(233,238,252,.92);
  font-weight:800;
  font-size:13px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.12);
  background: rgba(7,11,20,.55);
  display:none;
}

/* =========================================================
   SUCCESS CONFIRMATION MESSAGE
========================================================= */

#confirmationMessage{
  display:none;
  margin-top:18px;
  padding:18px 20px;
  border-radius: calc(var(--radius) + 4px);

  background: linear-gradient(
    135deg,
    rgba(50,214,204,.18),
    rgba(13,22,48,.75)
  );

  border:1px solid rgba(50,214,204,.55);
  box-shadow: 0 0 0 1px rgba(50,214,204,.25),
              0 18px 40px rgba(50,214,204,.12);

  font-weight:800;
  font-size:15px;
  line-height:1.5;
  color: var(--text);

  position:relative;
}

.summary{
  margin-top:14px;
  padding:18px;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(233,238,252,.04);
  border:1px solid rgba(233,238,252,.10);
}
.summary h3{ margin:0 0 10px; }
pre{
  margin:0;
  padding:14px;
  border-radius:14px;
  background: rgba(7,11,20,.55);
  border:1px solid rgba(233,238,252,.12);
  color: rgba(233,238,252,.88);
  overflow:auto;
  white-space:pre-wrap;
  word-break:break-word;
  font-weight:600;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.contact__cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.contact__card{
  padding:14px;
  border-radius:var(--radius);
  background: rgba(233,238,252,.045);
  border:1px solid rgba(233,238,252,.10);
}
.contact__label{ color:var(--muted2); font-weight:800; font-size:12px; }
.contact__value{ margin-top:6px; font-weight:800; }
.contact__panel{
  padding:18px;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(13,22,48,.55);
  border:1px solid rgba(233,238,252,.12);
  box-shadow: var(--shadow);
}
.contact__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }
.divider{ height:1px; background: rgba(233,238,252,.10); margin:14px 0; }
.muted{ color:var(--muted2); font-weight:650; }

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid rgba(233,238,252,.10);
  background: rgba(7,11,20,.72);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.footer__left{ display:flex; gap:12px; align-items:center; }
.footer__logo{ height:30px; width:auto; opacity:.95; }
.footer__meta{ display:flex; flex-direction:column; gap:4px; font-weight:700; }
.footer__right a{ color:rgba(233,238,252,.85); font-weight:800; }

/* Responsive */
@media (max-width: 960px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: auto; }
  .section__head{ flex-direction:column; align-items:flex-start; }
  .grid--cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--three{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .container{ width:min(1120px, calc(100% - 28px)); }
  .hero{ padding:52px 0 20px; }
  .hero__metrics{ grid-template-columns: 1fr; }
  .grid--cards{ grid-template-columns: 1fr; }
  .grid--three{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
  .contact__cards{ grid-template-columns: 1fr; }

  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right:24px;
    top:62px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    border-radius:18px;
    background: rgba(7,11,20,.92);
    border:1px solid rgba(233,238,252,.12);
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .nav__menu.is-open{ display:flex; }
  .nav__menu a{ padding:10px 10px; border-radius:14px; }
  .nav__menu a:hover{ background: rgba(233,238,252,.06); text-decoration:none; }
}
@media (max-width: 768px) { /* target smartphones */
  .mobile {
    display: none !important; /* remove two main logos */
  }

  .pill2 .brand__logo2 {
    height: 24px;      /* shrink remaining logos */
    width: auto;       /* maintain aspect ratio */
    max-width: 100%;   /* don’t overflow the pill */
  }
}