:root{
  --bg:#050505;
  --bg-soft:#0b0b0b;
  --card:#101010;
  --line:#232323;
  --text:#f4f4f4;
  --muted:#a8a8a8;
  --orange:#ff8700;
  --orange-light:#ffad42;
  --white:#ffffff;
  --radius:24px;
  --shadow:0 22px 70px rgba(0,0,0,.42);
  --max:1180px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  min-width:320px;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 75% 10%, rgba(255,135,0,.11), transparent 30rem),
    radial-gradient(circle at 10% 45%, rgba(255,255,255,.035), transparent 24rem),
    var(--bg);
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea{
  font:inherit;
}

img,
svg{
  display:block;
  max-width:100%;
}

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

.skip-link{
  position:fixed;
  top:12px;
  left:12px;
  z-index:9999;
  transform:translateY(-160%);
  padding:10px 14px;
  border-radius:10px;
  background:var(--white);
  color:#000;
  font-weight:700;
}

.skip-link:focus{
  transform:translateY(0);
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:15px;
  flex-shrink:0;
}

.brand-mark{
  width:54px;
  height:54px;
  flex:0 0 54px;
}

.brand-name{
  display:flex;
  align-items:baseline;
  gap:7px;
  font-family:"Montserrat",sans-serif;
  font-size:1.17rem;
  font-weight:700;
  letter-spacing:.12em;
  white-space:nowrap;
}

.brand-name strong{
  color:var(--orange);
}

.brand-tag{
  display:block;
  margin-top:2px;
  color:#bcbcbc;
  font-size:.58rem;
  font-weight:500;
  letter-spacing:.26em;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:#c9c9c9;
  font-size:.92rem;
  font-weight:600;
}

.nav-links a{
  transition:.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  color:var(--white);
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:13px 22px;
  border:1px solid transparent;
  border-radius:999px;
  background:var(--orange);
  color:#0a0a0a;
  font-weight:800;
  line-height:1.1;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover{
  transform:translateY(-2px);
  background:var(--orange-light);
}

.button-outline{
  border-color:#303030;
  background:transparent;
  color:var(--white);
}

.button-outline:hover{
  border-color:#545454;
  background:#111;
}

.button-small{
  min-height:44px;
  padding:10px 18px;
  font-size:.9rem;
}

.hero{
  position:relative;
  padding:112px 0 92px;
  isolation:isolate;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto -20% -20% 35%;
  z-index:-1;
  height:520px;
  background:radial-gradient(circle, rgba(255,135,0,.12), transparent 65%);
  filter:blur(24px);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(340px,.82fr);
  align-items:center;
  gap:72px;
}

.platform-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  margin-bottom:20px;
  border-radius:16px;
  background:#ffffff;
  box-shadow:var(--shadow);
}

.platform-badge img{
  width:32px;
  height:32px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#d6d6d6;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:34px;
  height:2px;
  background:var(--orange);
}

h1,
h2,
h3{
  font-family:"Montserrat",sans-serif;
  line-height:1.1;
}

h1{
  max-width:860px;
  font-size:clamp(3.25rem,7vw,6.7rem);
  letter-spacing:-.055em;
}

.accent{
  color:var(--orange);
}

.hero-copy{
  max-width:720px;
  margin-top:28px;
  color:#b9b9b9;
  font-size:clamp(1.05rem,1.8vw,1.28rem);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:36px;
}

.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:18px 28px;
  margin-top:38px;
  color:#b9b9b9;
  font-size:.9rem;
}

.hero-proof span{
  display:flex;
  align-items:center;
  gap:9px;
}

.check{
  width:19px;
  height:19px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,135,0,.13);
  color:var(--orange);
  font-size:.76rem;
  font-weight:900;
}

.hero-panel{
  position:relative;
  padding:34px;
  overflow:hidden;
  border:1px solid #232323;
  border-radius:32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.01)),
    #0b0b0b;
  box-shadow:var(--shadow);
}

.hero-panel::before{
  content:"";
  position:absolute;
  top:-90px;
  right:-90px;
  width:250px;
  height:250px;
  border-radius:50%;
  background:rgba(255,135,0,.12);
  filter:blur(28px);
}

.signal-label{
  color:#909090;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.signal-number{
  margin-top:6px;
  font-family:"Montserrat",sans-serif;
  font-size:clamp(3.8rem,7vw,5.7rem);
  font-weight:800;
  line-height:1;
  letter-spacing:-.06em;
}

.signal-number span{
  color:var(--orange);
}

.signal-text{
  max-width:340px;
  margin-top:12px;
  color:#b3b3b3;
}

.chart{
  height:160px;
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin-top:30px;
  padding:24px 20px 0;
  border:1px solid #202020;
  border-radius:20px;
  background:#080808;
}

.bar{
  flex:1;
  min-width:14px;
  border-radius:8px 8px 3px 3px;
  background:linear-gradient(180deg, var(--orange), #6d3900);
  opacity:.94;
}

.bar:nth-child(1){height:24%}
.bar:nth-child(2){height:35%}
.bar:nth-child(3){height:31%}
.bar:nth-child(4){height:52%}
.bar:nth-child(5){height:48%}
.bar:nth-child(6){height:67%}
.bar:nth-child(7){height:75%}
.bar:nth-child(8){height:92%}

.ai-logos{
  padding:22px 0;
  border-bottom:1px solid #181818;
}

.ai-logos-label{
  margin-bottom:16px;
  color:#8a8a8a;
  text-align:center;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.ai-logos-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:38px;
}

.ai-logos-row img{
  height:24px;
  width:auto;
  filter:brightness(0) invert(1);
  opacity:.6;
  transition:opacity .2s ease;
}

.ai-logos-row img:hover{
  opacity:1;
}

.trust-strip{
  padding:24px 0;
  border-block:1px solid #181818;
  background:#080808;
}

.trust-items{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}

.trust-item strong{
  display:block;
  color:var(--white);
  font-family:"Montserrat",sans-serif;
  font-size:1.1rem;
}

.trust-item span{
  color:#858585;
  font-size:.82rem;
}

section{
  padding:108px 0;
}

.section-heading{
  max-width:760px;
  margin-bottom:52px;
}

.section-heading h2{
  font-size:clamp(2.2rem,4.7vw,4.4rem);
  letter-spacing:-.045em;
}

.section-heading p{
  max-width:680px;
  margin-top:20px;
  color:var(--muted);
  font-size:1.05rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  min-height:330px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,#111,#0b0b0b);
  transition:transform .25s ease,border-color .25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:#444;
}

.service-number{
  color:var(--orange);
  font-family:"Montserrat",sans-serif;
  font-weight:800;
  letter-spacing:.1em;
}

.service-card h3{
  margin-top:54px;
  font-size:1.55rem;
}

.service-card p{
  margin-top:16px;
  color:var(--muted);
}

.service-card ul{
  display:grid;
  gap:8px;
  margin-top:22px;
  list-style:none;
  color:#c7c7c7;
  font-size:.9rem;
}

.service-card li::before{
  content:"•";
  margin-right:9px;
  color:var(--orange);
}

.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:start;
  gap:76px;
}

.sticky-copy{
  position:sticky;
  top:125px;
}

.sticky-copy h2{
  font-size:clamp(2.2rem,4.5vw,4rem);
  letter-spacing:-.045em;
}

.sticky-copy p{
  margin-top:20px;
  color:var(--muted);
}

.process-list{
  display:grid;
  gap:16px;
}

.process-item{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:20px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#0b0b0b;
}

.process-index{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,135,0,.1);
  color:var(--orange);
  font-family:"Montserrat",sans-serif;
  font-weight:800;
}

.process-item h3{
  font-size:1.25rem;
}

.process-item p{
  margin-top:8px;
  color:var(--muted);
}

.markets,
.local{
  position:relative;
  overflow:hidden;
  border-block:1px solid #181818;
  background:#080808;
}

.market-grid,
.local-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:38px;
}

.market,
.local-item{
  padding:20px 18px;
  border:1px solid #222;
  border-radius:16px;
  color:#d0d0d0;
  text-align:center;
  font-weight:700;
  background:#0d0d0d;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.blog-card{
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,#111,#0b0b0b);
  transition:transform .25s ease,border-color .25s ease;
}

.blog-card:hover{
  transform:translateY(-5px);
  border-color:#444;
}

.blog-card .eyebrow{
  margin-bottom:14px;
}

.blog-card h3{
  font-size:1.3rem;
}

.blog-card p{
  margin-top:14px;
  color:var(--muted);
  flex-grow:1;
}

.blog-card .button{
  align-self:flex-start;
  margin-top:22px;
}

.article-body{
  max-width:760px;
  color:#c7c7c7;
}

.article-body p{
  margin-top:20px;
}

.article-body h2{
  margin-top:44px;
  font-size:1.9rem;
  letter-spacing:-.03em;
}

.article-body h3{
  margin-top:32px;
  font-size:1.3rem;
}

.article-body ul{
  display:grid;
  gap:10px;
  margin-top:20px;
  padding-left:22px;
  color:#c7c7c7;
}

.article-body li{
  padding-left:4px;
}

.article-meta{
  margin-top:20px;
  color:#858585;
  font-size:.85rem;
}

.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:38px;
}

.sector-chip{
  display:block;
  padding:16px 18px;
  border:1px solid #222;
  border-radius:14px;
  color:#d0d0d0;
  font-weight:600;
  font-size:.92rem;
  background:#0d0d0d;
  transition:border-color .2s ease, color .2s ease;
}

.sector-chip:hover,
.sector-chip:focus-visible{
  border-color:var(--orange);
  color:#fff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.why-card{
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#0b0b0b;
}

.why-card h3{
  font-size:1.35rem;
}

.why-card p{
  margin-top:12px;
  color:var(--muted);
}

.cta-panel{
  padding:64px;
  border:1px solid #2a2a2a;
  border-radius:34px;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,135,0,.18),transparent 24rem),
    linear-gradient(135deg,#121212,#090909);
  box-shadow:var(--shadow);
}

.cta-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:start;
  gap:64px;
}

.cta-copy h1,.cta-copy h2{
  font-size:clamp(2.4rem,4.8vw,4.5rem);
  letter-spacing:-.05em;
}

.map-embed{
  position:relative;
  width:100%;
  aspect-ratio:21/9;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  filter:grayscale(1) contrast(1.05) brightness(.92);
}

.map-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

@media (max-width:640px){
  .map-embed{
    aspect-ratio:4/5;
  }
}

.cta-copy p{
  margin-top:18px;
  color:#b8b8b8;
  font-size:1.04rem;
}

.contact-form{
  display:grid;
  gap:14px;
}

.field{
  display:grid;
  gap:7px;
}

.field label{
  color:#d2d2d2;
  font-size:.82rem;
  font-weight:700;
}

.field input,
.field textarea{
  width:100%;
  border:1px solid #2e2e2e;
  border-radius:14px;
  outline:none;
  background:#090909;
  color:var(--white);
  padding:14px 15px;
}

.field input:focus,
.field textarea:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(255,135,0,.11);
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.form-note{
  color:#777;
  font-size:.75rem;
}

.pricing-note{
  margin-top:24px;
  color:#8d8d8d;
  text-align:center;
  font-size:.9rem;
}

.form-status{
  padding:13px 15px;
  border:1px solid;
  border-radius:14px;
  font-size:.9rem;
  font-weight:700;
}

.form-status.success{
  border-color:#2f7d49;
  background:rgba(47,125,73,.14);
  color:#9fe0b5;
}

.form-status.error{
  border-color:#9b3939;
  background:rgba(155,57,57,.14);
  color:#ffb1b1;
}

.button[disabled]{
  cursor:not-allowed;
  opacity:.68;
  transform:none;
}

.faq-list{
  display:grid;
  gap:14px;
  max-width:900px;
}

details{
  border:1px solid var(--line);
  border-radius:18px;
  background:#0b0b0b;
  padding:21px 24px;
}

summary{
  cursor:pointer;
  list-style:none;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
}

summary::-webkit-details-marker{
  display:none;
}

details p{
  margin-top:14px;
  color:var(--muted);
}

footer{
  padding:38px 0 48px;
  border-top:1px solid #191919;
  color:#848484;
  font-size:.84rem;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.mobile-toggle{
  display:none;
  width:44px;
  height:44px;
  place-items:center;
  border:1px solid #2b2b2b;
  border-radius:12px;
  background:#0b0b0b;
  color:#fff;
  cursor:pointer;
}

@media (max-width:980px){
  .nav-links{
    position:absolute;
    top:82px;
    left:20px;
    right:20px;
    display:none;
    padding:22px;
    border:1px solid #222;
    border-radius:18px;
    background:#090909;
    box-shadow:var(--shadow);
  }

  .nav-links.open{
    display:grid;
  }

  .mobile-toggle{
    display:grid;
  }

  .nav > .button-small{
    display:none;
  }

  .hero{
    padding-top:82px;
  }

  .hero-grid,
  .split,
  .cta-grid{
    grid-template-columns:1fr;
  }

  .hero-grid{
    gap:48px;
  }

  .sticky-copy{
    position:static;
  }

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

  .trust-items,
  .market-grid,
  .local-grid,
  .sector-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:660px){
  .container{
    width:min(calc(100% - 28px), var(--max));
  }

  .brand-name{
    font-size:.92rem;
  }

  .brand-tag{
    display:none;
  }

  .brand-mark{
    width:47px;
    height:47px;
    flex-basis:47px;
  }

  .hero{
    padding:66px 0 72px;
  }

  h1{
    font-size:clamp(2.8rem,14vw,4.6rem);
  }

  section{
    padding:78px 0;
  }

  .services-grid,
  .why-grid,
  .trust-items,
  .market-grid,
  .local-grid,
  .sector-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .service-card h3{
    margin-top:34px;
  }

  .process-item{
    grid-template-columns:1fr;
  }

  .cta-panel{
    padding:34px 22px;
  }

  .hero-actions .button{
    width:100%;
  }
}
