:root{
  --black:#111111;
  --charcoal:#1F2933;
  --steel:#4B5563;
  --lightsteel:#9CA3AF;
  --white:#F3F6FA;

  --bg:#0b0f14;
  --panel:#111827;
  --panel2:#0f172a;
  --text:var(--white);
  --muted:var(--lightsteel);
  --line:rgba(255,255,255,.12);
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius: 18px;

  --accent:var(--white);        /* brand-safe accent */
  --accent-soft:rgba(255,255,255,.14);
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin:0;
  font-family:"Oswald","Arial Narrow","Helvetica Neue Condensed",system-ui,Arial,sans-serif;
  background: var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}


.wordmark{display:flex; flex-direction:column; line-height:1.05}
.wordmark__top{font-weight:700; letter-spacing:0.08em; font-size: 27px}
.wordmark__mid{font-weight:500; letter-spacing:0.24em; font-size: 18px; color:var(--muted); margin-top:2px}
@media (max-width: 760px){
  .wordmark__top{font-size: 24px}
  .wordmark__mid{font-size: 16px}
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,20,.65);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
W0px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  font-size:14px; color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background: rgba(255,255,255,.06); color:var(--text)}

.header__cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--bg);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.btn--primary{
  border-color: rgba(255,255,255,.25);
  background: rgba(243,246,250,.95);
  color: var(--black);
}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--full{width:100%}

/* Mobile menu button */
.icon-btn{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.icon-btn__bars{
  width:18px; height:2px; display:block; margin:0 auto;
  background: var(--text);
  position:relative;
}
.icon-btn__bars::before,
.icon-btn__bars::after{
  content:""; position:absolute; left:0; width:18px; height:2px;
  background: var(--text);
}
.icon-btn__bars::before{top:-6px}
.icon-btn__bars::after{top:6px}

/* Mobile menu */
.mobile{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(7,10,20,.90);
}
.mobile__inner{
  display:flex; flex-direction:column;
  padding:14px 0 18px;
  gap:10px;
}
.mobile__inner a{
  color:var(--muted);
  padding:10px 12px;
  border-radius:14px;
}
.mobile__inner a:hover{background: rgba(255,255,255,.06); color:var(--text)}

/* Hero */
.hero{padding:44px 0 30px}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-size:13px;

  margin-top:0;}
h1{
  font-size: clamp(34px, 5vw, 54px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-0.02em;
}
.accent{color:var(--white);}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap; margin: 8px 0 18px}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 8px;
}
.stat{
  padding:12px 12px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.stat__num{font-weight:800; font-size:16px}
.stat__label{color:var(--muted); font-size:12px; margin-top:4px}

.fineprint{color:rgba(183,192,230,.8); font-size:12px; margin-top:12px}

.card{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(15,23,49,.65);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__header{padding:18px 18px 10px}
.card__header h3{margin:0 0 6px}
.card__header p{margin:0; color:var(--muted); font-size:13px}
.checklist{
  list-style:none;
  margin:0; padding:0 18px 12px;
}
.checklist li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}
.checklist li span{color:var(--text); font-weight:800}
.card__footer{padding:14px 18px 18px; border-top:1px solid rgba(255,255,255,.10)}
.tiny{color:rgba(183,192,230,.8); font-size:12px; margin:8px 0 0}

/* Trust */
.trust{padding:16px 0 6px}
.trust__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.trust__text{color:var(--muted); margin:0}
.trust__badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}

/* Sections */
.section{padding:64px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head{margin-bottom:18px}
.section__head h2{
  font-size: clamp(26px, 3.2vw, 34px);
  margin:0 0 8px;
  letter-spacing:-0.01em;
}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.feature, .panel, .quality, .quote, .contact-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.feature h3, .panel h3, .quality h3{margin:0 0 8px}
.feature p, .panel p, .quality p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.feature ul{
  margin:0; padding-left:18px; color:rgba(183,192,230,.92)
}
.feature li{margin:6px 0}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin:10px 0}
.chip{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:rgba(231,236,255,.92);
}
.bullets{margin:0; padding-left:18px; color:rgba(183,192,230,.92)}
.bullets li{margin:6px 0}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.step__num{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(124,92,255,.22);
  border:1px solid rgba(124,92,255,.35);
  font-weight:800;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.6}

/* Quotes */
.quote blockquote{
  margin:0;
  color:rgba(231,236,255,.95);
  line-height:1.7;
}
.quote figcaption{
  margin-top:10px;
  color:rgba(183,192,230,.85);
  font-size:12px;
}

/* FAQ */
.faq details{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:14px 16px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:600;
}
.faq p{color:var(--muted); line-height:1.6; margin:10px 0 0}

/* Contact */
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items: stretch;
}
.contact__cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.contact-card h3{margin:0 0 6px}
.contact-card p{margin:0; color:var(--muted); line-height:1.5}
.contact-card a{text-decoration:underline; text-underline-offset:4px}

.form{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(15,23,49,.60);
  box-shadow: var(--shadow);
  padding:18px;
}
label{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:10px 0;
  color:rgba(231,236,255,.92);
  font-size:13px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: var(--bg);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form__row--actions{
  grid-template-columns: 1fr;
  margin-top: 12px;
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:24px 0;
  color:rgba(183,192,230,.85);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px}
.footer__links a{text-decoration:underline; text-underline-offset:4px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .steps{grid-template-columns: 1fr 1fr}
  .contact__grid{grid-template-columns:1fr}
  .contact__cards{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav{display:none}
  .icon-btn{display:inline-grid; place-items:center}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero__stats{grid-template-columns:1fr}
}
/* Send panel (email + upload) */
.sendpanel{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,24,39,.60);
  box-shadow: var(--shadow);
  padding:18px;
}
.sendpanel h3{margin:0 0 8px}
.sendpanel .muted{
  margin:0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.sendpanel__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 6px 0 6px;
}
.sendpanel__note{margin-top:8px}


/* Contact alignment tweaks */
.contact__grid > div:first-child{
  display:flex;
  flex-direction:column;
  height:100%;
}
.contact__cards{
  margin-top:auto; /* push cards to bottom */
}
.sendpanel{
  height:100%;
  display:flex;
  flex-direction:column;
}
.sendpanel__note{
  margin-top:auto; /* keep note anchored to bottom */
}
