:root{
  --mint: #9AF0D1;
  --aqua: #71D7FF;
  --lav: #C8A6FF;
  --peach: #FF8A7A;

  --bg0: #070b12;
  --bg1: #0b1220;
  --panel: rgba(255,255,255,.05);
  --panel-strong: rgba(255,255,255,.09);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.75);
  --ok: #9AF0D1;
  --danger: #ffb3a8;
}

*{box-sizing:border-box}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(113, 215, 255, 0.16), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(200, 166, 255, 0.14), transparent 38%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
  min-height:100vh;
  line-height:1.5;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:clamp(16px,3vw,30px) clamp(16px,3vw,20px) clamp(40px,7vw,60px);
}

.skip-link{
  position:absolute;
  left:12px;
  top:-48px;
  z-index:1000;
  background:#ffffff;
  color:#000000;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.skip-link:focus{
  top:12px;
}

.topbar{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:clamp(20px,4vw,30px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand img{
  width:48px;
  border-radius:12px;
  flex-shrink:0;
}

.name{
  min-width:0;
}

.name strong,
.name span{
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.name span{
  color:var(--muted);
  font-size:14px;
}

.menu-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
  border-radius:10px;
  padding:8px;
  width:42px;
  height:42px;
}

.menu-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--text);
  border-radius:2px;
}

.menu-toggle span + span{
  margin-top:6px;
}

nav{
  display:flex;
  gap:15px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
}

nav a:hover{
  color:white;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  color:white;
  background:var(--panel);
  cursor:pointer;
  font:inherit;
  transition:transform .2s ease, border-color .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.35);
}

.btn:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

.btn.primary{
  background: linear-gradient(90deg,var(--mint),var(--lav));
  color:#000;
  font-weight:600;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible{
  box-shadow:0 0 0 2px var(--bg1), 0 0 0 4px var(--aqua);
}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(0, .85fr);
  gap:20px;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.proof-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.proof-list li{
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  color:var(--text);
  border-radius:999px;
  padding:6px 10px;
  font-size:13px;
}

.card{
  background:var(--panel);
  padding:clamp(18px,3vw,25px);
  border-radius:18px;
  border:1px solid var(--border);
}

.kicker{
  font-size:13px;
  color:var(--muted);
  margin-bottom:10px;
}

h1{
  font-size:clamp(28px, 6vw, 42px);
  line-height:1.2;
  margin:10px 0;
}

h2{
  margin:0 0 8px;
}

h3{
  margin:0 0 8px;
}

p{
  margin:0;
}

p + p{
  margin-top:10px;
}

.grad{
  background:linear-gradient(90deg,var(--mint),var(--lav));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead,
.section-intro{
  color:var(--muted);
  line-height:1.6;
}

.logo-panel img{
  width:100%;
  border-radius:14px;
  object-fit:contain;
}

.feature-image{
  margin:12px 0 0;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
}

.feature-image img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
}

.trust-strip{
  margin-top:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.trust-strip span{
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  color:var(--muted);
}

.section{
  margin-bottom:25px;
  scroll-margin-top:90px;
}

.legal-content{
  max-width:860px;
}

.legal-content h1{
  margin-bottom:8px;
}

.legal-content h2{
  margin-top:22px;
}

.legal-content ul{
  margin:10px 0 0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.65;
}

.legal-content li + li{
  margin-top:6px;
}

.muted-line{
  color:var(--muted);
  font-size:14px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
  margin-top:15px;
}

.service,
.package,
.testimonials blockquote{
  background:rgba(255,255,255,.04);
  padding:15px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
}

.packages,
.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}

.image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:14px;
}

.image-card{
  margin:0;
  background:rgba(255,255,255,.04);
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.image-card img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:cover;
}

.image-card figcaption{
  padding:10px 12px 12px;
  color:var(--muted);
  font-size:13px;
}

.steps{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.65;
}

.steps li + li{
  margin-top:8px;
}

.testimonials blockquote{
  margin:0;
  color:var(--text);
  line-height:1.6;
}

.testimonials cite{
  display:block;
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
  font-style:normal;
}

form{
  margin-top:15px;
}

.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}

input,
textarea{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.3);
  color:white;
  width:100%;
  font:inherit;
}

textarea{
  min-height:120px;
  margin-bottom:15px;
  resize:vertical;
}

.small{
  min-height:22px;
  margin-top:10px;
  font-size:14px;
}

.small.error{
  color:var(--danger);
}

.small.success{
  color:var(--ok);
}

.next-steps{
  margin-top:16px;
  background:var(--panel-strong);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}

.next-steps h3{
  margin:0 0 10px;
}

.next-steps ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.next-steps li + li{
  margin-top:6px;
}

.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;
}

footer{
  margin-top:30px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
}

footer p{
  margin:0 0 8px;
}

.footer-links{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--text);
}

@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
  }

  .row{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    background:rgba(11,18,32,.96);
    border:1px solid var(--border);
    border-radius:14px;
    z-index:10;
  }

  .nav-open nav{
    display:flex;
  }

  nav a,
  nav .btn{
    width:100%;
  }

  .topbar{
    align-items:flex-start;
  }

  .brand img{
    width:44px;
  }

  .name strong,
  .name span{
    white-space:normal;
    overflow:visible;
  }
}

@media(max-width:480px){
  .card{
    border-radius:14px;
  }

  .btn{
    width:100%;
  }

  .proof-list li,
  .trust-strip span{
    width:100%;
    text-align:center;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *{
    animation:none !important;
    transition:none !important;
  }
}
