:root{
  --bg:#05070c;
  --bg2:#070a12;

  --card:rgba(255,255,255,.055);
  --card2:rgba(255,255,255,.075);
  --stroke:rgba(255,255,255,.10);

  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.52);

  /* blue accent */
  --accent:#60A5FA;   /* blue 400 */
  --accent2:#22D3EE;  /* cyan 400 */

  --shadow: 0 26px 90px rgba(0,0,0,.55);
  --shadow2: 0 16px 60px rgba(0,0,0,.45);

  --r:22px;
  --r2:28px;
  --r3:34px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(96,165,250,.22), transparent 55%),
    radial-gradient(820px 520px at 15% 20%, rgba(34,211,238,.12), transparent 62%),
    radial-gradient(900px 620px at 85% 30%, rgba(255,255,255,.04), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

/* Ambient “premium” */
.bg-ambient{
  position:fixed; inset:-140px;
  background:
    radial-gradient(720px 520px at 20% 18%, rgba(96,165,250,.20), transparent 62%),
    radial-gradient(760px 560px at 82% 28%, rgba(34,211,238,.14), transparent 62%),
    radial-gradient(980px 740px at 50% 84%, rgba(255,255,255,.045), transparent 60%);
  filter: blur(22px);
  z-index:-1;
  pointer-events:none;
}

/* Topbar */
.topbar{
  position:sticky; top:0;
  backdrop-filter: blur(16px);
  background: rgba(5,7,12,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:50;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:10px}
.brand__dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 7px rgba(96,165,250,.12);
}
.brand__text{font-weight:800; letter-spacing:.2px}
.brand__accent{color:rgba(255,255,255,.96)}

.nav{display:flex; gap:16px; align-items:center}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text); transform: translateY(-1px)}
.menu-btn{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.menu-btn span{
  display:block; height:2px; width:18px; margin:4px auto;
  background:rgba(255,255,255,.78);
  border-radius:999px;
}

/* Mobile nav */
.mobile{
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(5,7,12,.70);
}
.mobile__inner{
  padding:14px 0 18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mobile a{
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  color:var(--muted);
}
.mobile a:hover{color:var(--text); background:rgba(255,255,255,.06)}

/* Pills */
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.pill:hover{transform: translateY(-1px); background:rgba(255,255,255,.06)}
.pill--primary{
  border-color: rgba(96,165,250,.40);
  background: linear-gradient(90deg, rgba(96,165,250,.18), rgba(34,211,238,.14));
}
.pill--soft{
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}
.pill--ghost{background: transparent}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.badge__dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(96,165,250,.10);
}

/* HERO */
.hero{padding:56px 0 34px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:26px;
  align-items:start;
}
.hero h1{
  margin:16px 0 10px;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height:1.04;
  letter-spacing:-.03em;
}
.muted{color:var(--muted)}
.lead{
  color:var(--muted);
  font-size: 16px;
  line-height:1.75;
  margin:0 0 18px;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 18px}

.stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.stat{
  padding:14px;
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.stat__k{font-weight:800}
.stat__v{color:var(--muted2); font-size:13px; margin-top:4px}

/* Premium “stage” */
.hero__stage{position:relative}
.stack{
  position:absolute;
  inset:-18px -18px -18px -18px;
  pointer-events:none;
}
.layer{
  position:absolute;
  border-radius: var(--r3);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  filter: blur(.0px);
  transform: translateZ(0);
}
.layer--a{
  inset: 28px 40px 68px 10px;
  transform: rotate(-2.2deg);
  opacity:.55;
  background: linear-gradient(180deg, rgba(96,165,250,.10), rgba(255,255,255,.03));
}
.layer--b{
  inset: 16px 10px 44px 42px;
  transform: rotate(2.0deg);
  opacity:.45;
  background: linear-gradient(180deg, rgba(34,211,238,.09), rgba(255,255,255,.03));
}
.layer--c{
  inset: 54px 26px 16px 26px;
  transform: rotate(-.6deg);
  opacity:.30;
}

.center-card{
  position:relative;
  padding:18px;
  border-radius: var(--r3);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.46);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.center-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding:1px;
  background: linear-gradient(90deg, rgba(96,165,250,.32), rgba(34,211,238,.18), rgba(255,255,255,.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:.75;
}

.center-card__top{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.center-card__title{font-weight:800; letter-spacing:.2px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}

/* Center hero ring (premium vibe) */
.center-card__hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:center;
  margin-top:14px;
  margin-bottom:12px;
}
.ring{
  width: 100%;
  min-height: 150px;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(220px 160px at 50% 30%, rgba(96,165,250,.22), transparent 65%),
    radial-gradient(240px 180px at 60% 70%, rgba(34,211,238,.12), transparent 65%),
    rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.ring::after{
  content:"";
  position:absolute;
  inset:-80px;
  background: conic-gradient(from 120deg, rgba(96,165,250,.00), rgba(96,165,250,.18), rgba(34,211,238,.14), rgba(255,255,255,.05), rgba(96,165,250,.00));
  filter: blur(18px);
  opacity:.70;
  animation: spin 10s linear infinite;
}
@keyframes spin{
  from{transform: rotate(0deg)}
  to{transform: rotate(360deg)}
}
.ring__inner{
  position:relative;
  z-index:1;
  text-align:center;
  padding:18px;
}
.ring__k{font-weight:900; letter-spacing:.2px}
.ring__v{color:var(--muted); margin-top:4px; font-size:13px}

.hero-metrics{
  display:grid;
  gap:10px;
}
.metric{
  padding:12px 12px;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}
.metric__k{font-weight:800}
.metric__v{color:var(--muted2); font-size:12px; margin-top:3px}

.checklist{list-style:none; padding:0; margin:12px 0 12px; display:grid; gap:10px}
.checklist--tight{gap:9px}
.checklist li{display:flex; gap:10px; align-items:flex-start; color:var(--muted)}
.check{
  width:18px; height:18px; border-radius:999px;
  border:1px solid rgba(96,165,250,.40);
  background: rgba(96,165,250,.12);
  margin-top:2px;
  position:relative;
}
.check::after{
  content:"";
  position:absolute;
  width:8px; height:4px;
  border-left:2px solid rgba(255,255,255,.85);
  border-bottom:2px solid rgba(255,255,255,.85);
  transform: rotate(-45deg);
  left:4px; top:5px;
}

.center-card__cta{display:flex; gap:10px; flex-wrap:wrap}
.center-card__note{margin-top:12px; color:var(--muted2); font-size:12px; line-height:1.6}

.mini-row{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px; margin-top:12px}
.mini{
  padding:14px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.mini__k{font-weight:900}
.mini__v{color:var(--muted2); font-size:13px; margin-top:4px}

.logos{margin-top:22px}
.logos__label{color:var(--muted2); font-size:13px}
.logos__row{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.logo-pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}

/* Sections */
.section{padding:54px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(22px, 2.1vw, 34px);
  letter-spacing:-.02em;
}
.section__head p{margin:0; color:var(--muted); line-height:1.7}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.card:hover{transform: translateY(-2px); background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14)}
.card__icon{font-size:20px; margin-bottom:10px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.65}
.card__meta{margin-top:12px; display:flex; gap:8px; flex-wrap:wrap}
.tag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--muted2);
  font-size:12px;
}

/* Steps */
.steps{display:grid; gap:12px}
.step{
  display:flex; gap:14px;
  padding:18px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.step__n{
  width:38px; height:38px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(96,165,250,.34);
  background: rgba(96,165,250,.12);
  font-weight:900;
}
.step h3{margin:2px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.65}

.callout{
  margin-top:16px;
  padding:18px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(96,165,250,.12), rgba(34,211,238,.10));
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color:var(--muted)}

/* Pricing */
.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.price-card{
  padding:18px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.price-card__head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.price-card h3{margin:0 0 8px}
.price{color:var(--muted); font-size:13px}
.price span{font-size:26px; font-weight:900; color:var(--text)}
.price-card ul{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}
.price-card--featured{
  background: linear-gradient(180deg, rgba(96,165,250,.12), rgba(255,255,255,.03));
  border-color: rgba(96,165,250,.28);
  box-shadow: var(--shadow2);
}

/* Quotes */
.quote{
  padding:18px;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.quote p{margin:0; color:var(--muted); line-height:1.75}
.quote__meta{display:flex; align-items:center; gap:10px; margin-top:14px}
.avatar{
  width:34px; height:34px; border-radius:14px;
  background: linear-gradient(90deg, rgba(96,165,250,.30), rgba(34,211,238,.24));
  border:1px solid rgba(255,255,255,.10);
}
.quote__name{font-weight:900}
.quote__car{color:var(--muted2); font-size:12px; margin-top:2px}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.cardish{
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.info{padding:18px}
.info__row{
  display:flex; justify-content:space-between; gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.info__row:last-child{border-bottom:none}
.info__k{color:var(--muted2); font-size:13px}
.info__v a{color:var(--text)}

.map{margin-top:14px}
.map__top{display:flex; justify-content:space-between; align-items:center; padding:16px 18px 12px}
.map__title{font-weight:900}
.map__frame{
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  height: 260px;
}
.map__frame iframe{
  width:100%;
  height:100%;
  border:0;
  filter: saturate(1.05) contrast(1.02);
}
.map__actions{
  padding:14px 18px 18px;
  border-top:1px solid rgba(255,255,255,.06);
}

.form{padding:18px}
.form__row{display:grid; gap:8px; margin-bottom:12px}
label{color:var(--muted2); font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(96,165,250,.32);
  box-shadow: 0 0 0 7px rgba(96,165,250,.10);
}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.fine{color:var(--muted2); font-size:12px; line-height:1.6; margin:14px 0 0}

/* FAB */
.fab{
  position:fixed;
  right:18px; bottom:18px;
  width:54px; height:54px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(96,165,250,.32);
  background: linear-gradient(90deg, rgba(96,165,250,.18), rgba(34,211,238,.14));
  box-shadow: var(--shadow2);
  font-weight:900;
}

/* Footer */
.footer{padding:28px 0 34px; border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:16px}
.brand--small .brand__dot{box-shadow:0 0 0 6px rgba(96,165,250,.10)}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.footer__right a:hover{color:var(--text)}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; }
  .mini-row{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex; align-items:center; justify-content:center}
  .center-card__hero{grid-template-columns: 1fr}
}


/* SEO Areas (safe: visible summary, collapsible content) */
.seo-areas{ padding: 24px 0 0; }
.seo-details{
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.seo-summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  color: var(--muted);
  user-select:none;
}
.seo-summary::-webkit-details-marker{ display:none; }
.seo-details[open] .seo-summary{ color: var(--text); border-bottom:1px solid rgba(255,255,255,.06); }
.seo-hint{ color: var(--muted2); font-size:12px; }
.seo-body{ padding:18px; }
.seo-body h2{ margin:0 0 10px; font-size:18px; }
.seo-body h3{ margin:18px 0 10px; font-size:15px; color: rgba(255,255,255,.88); }
.seo-note{ margin:14px 0 0; color: var(--muted2); font-size:12px; line-height:1.6; }

.seo-tags{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.seo-tags li{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size:13px;
}

.seo-cities{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.9;
}


/* Subtle float for the right hero card */
.hero__stage .center-card{
  animation: floaty 7.5s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0); /* helps smoothness */
}

/* Optional: layers float too, slightly different timings */
.hero__stage .layer--a{ animation: floatyA 10s ease-in-out infinite; }
.hero__stage .layer--b{ animation: floatyB 12s ease-in-out infinite; }
.hero__stage .layer--c{ animation: floatyC 14s ease-in-out infinite; }

@keyframes floaty{
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -10px, 0); }
}

/* Layers: micro-movements so it feels “alive” */
@keyframes floatyA{
  0%, 100% { transform: rotate(-2.2deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-2.2deg) translate3d(0, -6px, 0); }
}
@keyframes floatyB{
  0%, 100% { transform: rotate(2.0deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(2.0deg) translate3d(0, -8px, 0); }
}
@keyframes floatyC{
  0%, 100% { transform: rotate(-.6deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-.6deg) translate3d(0, -5px, 0); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  .hero__stage .center-card,
  .hero__stage .layer--a,
  .hero__stage .layer--b,
  .hero__stage .layer--c{
    animation: none !important;
  }
}


/* Base logo */
.brand__logo{
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 26px rgba(0,0,0,.55));
  transition: transform .15s ease, filter .15s ease;
}

.brand__logo:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.65));
}

/* Desktop */
.brand__logo--desktop{
  height: 58px;
}

/* Mobile */
.brand__logo--mobile{
  height: 42px;
}

/* VISIBILITY RULES */
@media (max-width: 980px){
  .brand__logo--desktop{ display: none; }
}

@media (min-width: 981px){
  .brand__logo--mobile{ display: none; }
}

