
:root{
  --dark:#0A0F1C;
  --dark-soft:#0F172A;
  --white:#ffffff;
  --light:#F8FAFC;
  --primary:#2563EB;
  --primary-hover:#1D4ED8;
  --accent:#EF4444;
  --text:#111827;
  --muted:#64748B;
  --muted-soft:#94A3B8;
  --border:#E5E7EB;
  --border-dark:rgba(255,255,255,.10);
  --container:1200px;
  --radius-card:16px;
  --radius-button:6px;
  --shadow-card:0 10px 28px rgba(15,23,42,.08);
  --shadow-card-hover:0 18px 40px rgba(15,23,42,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto}
a{color:inherit}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#0A0F1C;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav-wrap{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  text-decoration:none;
  min-width:155px;
}
.brand-name{
  font-size:24px;
  font-weight:900;
  letter-spacing:.055em;
  color:#fff;
}
.brand-name span{color:var(--accent)}
.brand-tagline{
  margin-top:3px;
  font-size:8px;
  font-weight:700;
  letter-spacing:.11em;
  color:#fff;
}
.primary-nav{margin-left:auto}
.primary-menu{
  display:flex;
  align-items:center;
  gap:30px;
  margin:0;
  padding:0;
  list-style:none;
}
.primary-menu li{position:relative;margin:0}
.primary-menu a,
.primary-menu button{
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:700;
  line-height:1;
  text-transform:none;
  text-decoration:none;
  transition:color .18s ease;
}
.primary-menu a:hover,
.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-ancestor > a{color:#fff}
.primary-menu .menu-item-has-children > a::after{
  content:"⌄";
  display:inline-block;
  margin-left:6px;
  font-size:12px;
  transform:translateY(-1px);
}
.primary-menu .sub-menu{
  position:absolute;
  top:100%;
  left:-18px;
  min-width:260px;
  list-style:none;
  margin:0;
  padding:12px;
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.45),0 0 0 1px rgba(255,255,255,.03);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;
}
.primary-menu .sub-menu::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  pointer-events:none;
  background:radial-gradient(circle at top left,rgba(37,99,235,.14),transparent 62%);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.primary-menu .sub-menu a{
  position:relative;
  z-index:1;
  display:block;
  padding:13px 14px;
  border-radius:10px;
  color:rgba(255,255,255,.64);
  font-size:13px;
  font-weight:700;
  text-transform:none;
}
.primary-menu .sub-menu a:hover{
  color:#fff;
  background:rgba(255,255,255,.06);
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 22px;
  background:var(--primary);
  color:#fff;
  border-radius:4px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.03em;
  text-decoration:none;
  white-space:nowrap;
  transition:background .18s ease, transform .18s ease;
}
.nav-cta:hover{background:var(--primary-hover);transform:translateY(-1px)}
.mobile-menu-toggle{display:none;background:transparent;border:0;padding:10px}
.mobile-menu-toggle span:not(.screen-reader-text){display:block;width:22px;height:2px;background:#fff;margin:5px 0}

/* Buttons and type */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 28px;
  border-radius:var(--radius-button);
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
  transition:background .18s ease,color .18s ease,transform .18s ease,gap .18s ease;
}
.btn-primary{background:var(--primary);color:#fff;box-shadow:0 16px 32px rgba(37,99,235,.22)}
.btn-primary:hover{background:var(--primary-hover);transform:translateY(-1px)}
.btn-link-light{padding-left:0;padding-right:0;color:#fff;background:transparent;box-shadow:none}
.btn-link-light:hover{color:var(--muted-soft);gap:14px}
.eyebrow{
  margin:0 0 14px;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.eyebrow.red{color:var(--accent)}
.center{text-align:center}
.section-title{
  margin:0;
  color:var(--text);
  font-size:40px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.025em;
}
.section-intro{
  max-width:620px;
  margin:14px auto 54px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

/* Home */
.enveos-home{background:#fff}
.hero-figma{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 84% 8%,rgba(37,99,235,.28),transparent 20%),
    radial-gradient(circle at 72% 48%,rgba(37,99,235,.18),transparent 30%),
    #0A0F1C;
}
.hero-figma::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:rgba(255,255,255,.08);
}
.hero-figma-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(440px,520px);
  gap:72px;
  align-items:center;
  min-height:456px;
  padding-top:74px;
  padding-bottom:76px;
}
.hero-copy h1{
  max-width:600px;
  margin:0 0 20px;
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.025em;
  color:#fff;
}
.hero-subtitle{
  max-width:585px;
  margin:0 0 30px;
  color:var(--muted-soft);
  font-size:17px;
  line-height:1.65;
  font-weight:500;
}
.hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.hero-device-wrap{
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-height:315px;
}
.device-glow{
  position:absolute;
  inset:12% -5% 4% 5%;
  border-radius:999px;
  background:rgba(37,99,235,.16);
  filter:blur(48px);
}
.laptop-mockup{
  position:relative;
  z-index:2;
  width:min(100%,500px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:#111827;
  box-shadow:0 30px 70px rgba(0,0,0,.45);
  transform:perspective(1000px) rotateX(1deg) rotateY(-5deg);
}
.browser-bar{
  display:flex;
  align-items:center;
  gap:6px;
  height:32px;
  padding:0 12px;
  background:#1E293B;
}
.browser-bar span,
.browser-mini span{display:block;border-radius:999px}
.browser-bar span{width:10px;height:10px}
.browser-bar span:nth-child(1),.browser-mini span:nth-child(1){background:rgba(239,68,68,.65)}
.browser-bar span:nth-child(2),.browser-mini span:nth-child(2){background:rgba(250,204,21,.7)}
.browser-bar span:nth-child(3),.browser-mini span:nth-child(3){background:rgba(74,222,128,.65)}
.browser-bar i{
  display:block;
  flex:1;
  max-width:205px;
  height:16px;
  margin-left:8px;
  border-radius:4px;
  background:#334155;
}
.laptop-screen{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}
.laptop-screen img,
.phone-screen img,
.case-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.screen-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,15,28,.62);
}
.screen-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 34px;
}
.screen-content small{
  color:rgba(255,255,255,.55);
  font-size:9px;
  letter-spacing:.08em;
  font-weight:800;
}
.screen-content strong{
  margin-top:8px;
  color:#fff;
  font-size:22px;
  line-height:1.16;
  font-weight:800;
}
.mini-stats{
  display:flex;
  gap:22px;
  margin-top:20px;
  padding:14px;
  width:max-content;
  max-width:100%;
  border-radius:2px;
  background:rgba(15,23,42,.82);
}
.mini-stats span{display:block}
.mini-stats b{display:block;font-size:12px;color:#fff}
.mini-stats em{display:block;font-size:8px;color:rgba(255,255,255,.45);font-style:normal}
.phone-mockup{
  position:absolute;
  z-index:4;
  right:-16px;
  bottom:-28px;
  width:118px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:#111827;
  box-shadow:0 24px 50px rgba(0,0,0,.45);
}
.phone-notch{height:18px;display:flex;align-items:center;justify-content:center;background:#111827}
.phone-notch span{width:34px;height:6px;border-radius:999px;background:#334155}
.phone-screen{position:relative;aspect-ratio:9/16;overflow:hidden}
.phone-screen::after{content:"";position:absolute;inset:0;background:rgba(255,255,255,.08)}
.phone-card{
  position:absolute;
  left:9px;
  right:9px;
  bottom:12px;
  padding:9px;
  border-radius:8px;
  background:rgba(255,255,255,.92);
  z-index:2;
}
.phone-card strong{display:block;color:#111827;font-size:8px;line-height:1.32;font-weight:900}
.phone-card i{display:block;margin-top:7px;width:60%;height:7px;border-radius:3px;background:var(--primary)}

/* Trust */
.trust-bar{
  padding:38px 0 42px;
  background:#fff;
  border-bottom:1px solid #F1F5F9;
}
.trust-kicker{
  margin:0 0 30px;
  text-align:center;
  color:var(--muted-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.trust-logos{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:34px;
  text-align:center;
}
.trust-logos span{
  display:block;
  min-width:120px;
  color:#9CA3AF;
  font-family:Georgia,"Times New Roman",serif;
  font-size:17px;
  line-height:1;
  font-weight:700;
  letter-spacing:.12em;
}

/* Services */
.services-figma{
  padding:72px 0 82px;
  background:#fff;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.service-card{
  padding:28px 24px;
  min-height:228px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 14px rgba(15,23,42,.06);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.service-card:hover{
  border-color:rgba(37,99,235,.28);
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-2px);
}
.service-icon{
  width:46px;
  height:46px;
  margin-bottom:21px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-icon img{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
}
.service-card h3{
  margin:0 0 10px;
  color:#111827;
  font-size:16px;
  line-height:1.35;
  font-weight:800;
}
.service-card p{
  margin:0 0 20px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
}
.service-card a{
  display:inline-flex;
  gap:9px;
  align-items:center;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
  transition:gap .18s ease;
}
.service-card a:hover{gap:14px}

/* Metrics */
.metrics-figma{
  padding:44px 0;
  background:#0A0F1C;
  color:#fff;
}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.metric-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 34px;
  border-left:1px solid rgba(255,255,255,.16);
}
.metric-item:first-child{border-left:0;padding-left:0}
.metric-item:last-child{padding-right:0}
.metric-icon{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:2px solid var(--accent);
  border-radius:999px;
  color:var(--accent);
  font-size:18px;
  font-weight:800;
  line-height:1;
}
.metric-item strong{
  display:block;
  color:#fff;
  font-size:32px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.025em;
}
.metric-item span{
  display:block;
  margin-top:7px;
  color:#94A3B8;
  font-size:13px;
  line-height:1.35;
  font-weight:600;
}

/* Cases */
.case-studies-figma{
  padding:66px 0 78px;
  background:#fff;
}
.case-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:34px;
}
.case-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:8px;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
  white-space:nowrap;
  transition:gap .18s ease;
}
.case-link:hover{gap:14px}
.case-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
}
.case-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 14px rgba(15,23,42,.06);
  transition:box-shadow .18s ease,transform .18s ease;
}
.case-card:hover{box-shadow:var(--shadow-card-hover);transform:translateY(-2px)}
.case-image{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111827;
}
.case-card:hover .case-image img{transform:scale(1.04)}
.case-image img{transition:transform .5s ease}
.case-dark-overlay{position:absolute;inset:0;background:rgba(10,15,28,.45)}
.browser-mini{
  position:absolute;
  top:12px;
  left:12px;
  right:12px;
  height:20px;
  display:flex;
  align-items:center;
  gap:4px;
  padding:0 8px;
  border-radius:4px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
}
.browser-mini span{width:6px;height:6px}
.browser-mini i{
  display:block;
  flex:1;
  max-width:120px;
  height:8px;
  margin-left:4px;
  border-radius:999px;
  background:#E5E7EB;
}
.case-body{padding:18px 20px 20px}
.case-body h3{
  margin:0 0 3px;
  color:#111827;
  font-size:15px;
  font-weight:800;
}
.case-body p{
  margin:0 0 16px;
  color:var(--muted-soft);
  font-size:12px;
  font-weight:600;
}
.case-stats{
  display:flex;
  gap:30px;
}
.case-stats b{
  display:block;
  color:#111827;
  font-size:17px;
  line-height:1.1;
  font-weight:900;
}
.case-stats em{
  display:block;
  margin-top:3px;
  color:var(--muted-soft);
  font-size:11px;
  line-height:1.2;
  font-style:normal;
  font-weight:600;
}

/* Process */
.process-figma{
  padding:68px 0 76px;
  background:#fff;
  border-top:1px solid #F1F5F9;
}
.process-figma .section-title{margin-bottom:52px}
.process-line-wrap{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:30px;
}
.process-line{
  position:absolute;
  top:28px;
  left:12.5%;
  right:12.5%;
  height:1px;
  background:#E5E7EB;
  z-index:0;
}
.process-step{
  position:relative;
  z-index:1;
  text-align:center;
}
.step-number{
  width:56px;
  height:56px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #E5E7EB;
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-size:20px;
  font-weight:900;
  box-shadow:0 4px 10px rgba(15,23,42,.05);
}
.process-step h3{
  margin:0 0 9px;
  color:#111827;
  font-size:16px;
  font-weight:800;
}
.process-step p{
  max-width:190px;
  margin:0 auto;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  font-weight:500;
}

/* Final CTA */
.final-cta-figma{
  position:relative;
  overflow:hidden;
  padding:72px 0 62px;
  color:#fff;
  text-align:center;
  background:#0A0F1C;
}
.cta-bg{position:absolute;inset:0}
.cta-bg img{width:100%;height:100%;object-fit:cover;display:block;opacity:.38}
.cta-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(10,15,28,.55),rgba(10,15,28,.88)),rgba(10,15,28,.70);
}
.final-cta-figma .container{position:relative;z-index:1}
.final-cta-figma h2{
  max-width:760px;
  margin:0 auto 18px;
  color:#fff;
  font-size:44px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.03em;
}
.final-cta-figma p{
  max-width:620px;
  margin:0 auto 32px;
  color:#94A3B8;
  font-size:17px;
  line-height:1.65;
  font-weight:500;
}
.final-cta-figma small{
  display:block;
  margin-top:18px;
  color:#94A3B8;
  font-size:13px;
  font-weight:600;
}

/* Footer */
.site-footer{
  padding:56px 0;
  background:#07101F;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}
.site-footer p{max-width:360px;color:#94A3B8;line-height:1.6}
.site-footer a{display:block;color:#94A3B8;text-decoration:none;margin-top:10px}
.site-footer a:hover{color:#fff}
.site-footer strong{display:block;color:#fff;margin-bottom:10px}
.brand-footer{display:inline-flex;flex-direction:column;margin-top:0}

/* Legacy page template helpers */
.service-page-fullwidth,
.service-page-fullwidth .entry-content,
.service-page-fullwidth article,
.service-page-fullwidth .post,
.service-page-fullwidth .type-page{max-width:none;width:100%;margin:0;padding:0}
.service-page-fullwidth .alignfull{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}
.service-page-fullwidth .alignwide{max-width:1200px;margin-left:auto;margin-right:auto;padding-left:24px;padding-right:24px}
.service-page-fullwidth .wp-block-button__link{text-decoration:none}

/* Responsive */
@media (max-width: 1080px){
  .primary-menu{gap:18px}
  .nav-cta{padding:0 16px}
  .hero-figma-grid{grid-template-columns:1fr;gap:46px;padding-top:64px}
  .hero-device-wrap{justify-content:center}
  .service-grid,.metrics-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .metric-item{border-left:0;padding:20px 0;border-top:1px solid rgba(255,255,255,.10)}
  .metric-item:nth-child(-n+2){border-top:0}
  .case-grid{gap:22px}
}
@media (max-width: 860px){
  .nav-wrap{height:auto;min-height:68px;flex-wrap:wrap}
  .mobile-menu-toggle{display:block;margin-left:auto}
  .primary-nav{
    order:3;
    width:100%;
    display:none;
    padding:14px 0 20px;
    border-top:1px solid rgba(255,255,255,.10);
  }
  body.menu-open .primary-nav{display:block}
  .primary-menu{display:block}
  .primary-menu > li > a{display:block;padding:12px 0;font-size:14px}
  .primary-menu .sub-menu{
    position:static;
    opacity:1;
    transform:none;
    pointer-events:auto;
    margin:4px 0 12px;
    min-width:0;
    background:rgba(255,255,255,.04);
    box-shadow:none;
  }
  .nav-cta{display:none}
  .hero-copy h1{font-size:44px}
  .trust-logos{justify-content:center;gap:22px 34px}
  .service-grid,.case-grid,.process-line-wrap{grid-template-columns:1fr}
  .process-line{display:none}
  .case-head{align-items:flex-start;flex-direction:column}
  .metrics-grid{grid-template-columns:1fr}
  .metric-item:nth-child(-n+2){border-top:1px solid rgba(255,255,255,.10)}
  .metric-item:first-child{border-top:0}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .container{padding-left:20px;padding-right:20px}
  .brand-name{font-size:21px}
  .hero-figma-grid{padding-top:50px;padding-bottom:68px}
  .hero-copy h1{font-size:38px}
  .hero-actions{align-items:flex-start;flex-direction:column;gap:12px}
  .btn{width:100%;justify-content:center}
  .btn-link-light{width:auto}
  .phone-mockup{right:4px;width:96px}
  .laptop-mockup{transform:none}
  .trust-logos span{min-width:110px;font-size:14px}
  .section-title{font-size:32px}
  .final-cta-figma h2{font-size:34px}
}


/* ================================
   INTERNAL PAGE / SERVICE SYSTEM
================================ */
.service-page,
.inner-page{
  background:#fff;
  overflow:hidden;
}
.service-hero{
  position:relative;
  overflow:hidden;
  background:var(--dark);
  color:#fff;
  padding:88px 0 96px;
}
.service-hero__glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 24%, rgba(37,99,235,.26), transparent 34%),
    radial-gradient(circle at 85% 78%, rgba(37,99,235,.16), transparent 28%),
    linear-gradient(180deg,#0A0F1C 0%, #060A12 100%);
}
.service-hero__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,520px);
  align-items:center;
  gap:64px;
}
.service-hero__content h1{
  margin:0 0 22px;
  max-width:760px;
  font-size:clamp(42px,5vw,62px);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:800;
}
.service-hero__subtitle{
  max-width:680px;
  margin:0 0 30px;
  color:var(--muted-soft);
  font-size:18px;
  line-height:1.65;
}
.service-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:18px 24px;
  padding:0;
  margin:28px 0 0;
  list-style:none;
}
.service-bullets li{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.88);
  font-size:15px;
  font-weight:700;
}
.service-bullets li::before{
  content:"✓";
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  color:#fff;
  background:rgba(239,68,68,.22);
  border:1px solid rgba(239,68,68,.45);
  border-radius:50%;
  font-size:12px;
}
.service-hero__visual{
  position:relative;
  min-height:360px;
}
.service-hero__laptop{
  position:absolute;
  right:0;
  top:30px;
  width:100%;
  max-width:540px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
.service-hero__phone{
  position:absolute;
  right:-24px;
  bottom:8px;
  width:31%;
  max-width:150px;
  filter:drop-shadow(0 24px 45px rgba(0,0,0,.55));
}
.service-section{
  padding:88px 0;
}
.section-intro{
  max-width:790px;
  margin:0 auto 48px;
  text-align:center;
}
.section-intro h2,
.service-results h2,
.service-process h2,
.service-faq h2{
  margin:0 0 16px;
  color:var(--text);
  font-size:clamp(32px,4vw,44px);
  line-height:1.16;
  letter-spacing:-.025em;
  font-weight:800;
}
.section-intro p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.problem-list{
  max-width:760px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.problem-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 20px;
  background:#FEF2F2;
  border:1px solid #FECACA;
  border-radius:14px;
  color:var(--text);
  font-size:16px;
  line-height:1.55;
  font-weight:650;
}
.problem-item span{
  display:grid;
  place-items:center;
  flex:0 0 22px;
  height:22px;
  border-radius:50%;
  color:#fff;
  background:var(--accent);
  font-size:18px;
  line-height:1;
}
.service-solution,
.service-process,
.simple-hero{
  background:var(--light);
}
.included-title{
  margin:0 0 28px;
  text-align:center;
  font-size:24px;
  font-weight:800;
  color:var(--text);
}
.included-grid{
  max-width:940px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.included-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:22px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  box-shadow:0 8px 24px rgba(15,23,42,.045);
  font-size:16px;
  line-height:1.55;
  font-weight:700;
  color:var(--text);
}
.included-card span{
  display:grid;
  place-items:center;
  flex:0 0 22px;
  height:22px;
  color:var(--accent);
  font-weight:900;
}
.service-results{
  padding:88px 0;
  background:var(--dark-soft);
  color:#fff;
}
.service-results h2{
  color:#fff;
  text-align:center;
  margin-bottom:44px;
}
.results-list{
  max-width:820px;
  margin:0 auto;
  display:grid;
  gap:18px;
}
.result-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:24px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius-card);
  color:#fff;
  font-size:18px;
  line-height:1.55;
  font-weight:650;
}
.result-item span{
  color:var(--accent);
  font-size:22px;
  line-height:1;
}
.section-row-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:30px;
}
.section-row-title h2{
  margin:0;
  font-size:clamp(30px,3.6vw,42px);
  line-height:1.15;
}
.service-cases{
  background:#fff;
}
.service-process .process-grid{
  margin-top:42px;
}
.service-faq{
  background:#fff;
}
.faq-list{
  max-width:820px;
  margin:40px auto 0;
  display:grid;
  gap:14px;
}
.faq-item{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  padding:22px 24px;
  color:var(--text);
  font-size:18px;
  font-weight:800;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  margin:0;
  padding:0 24px 24px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.simple-hero{
  padding:82px 0;
  text-align:center;
}
.simple-hero--dark{
  background:var(--dark);
  color:#fff;
}
.simple-hero h1{
  max-width:860px;
  margin:0 auto 18px;
  color:inherit;
  font-size:clamp(42px,5vw,58px);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.035em;
}
.simple-hero p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.simple-hero--dark p{color:var(--muted-soft)}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:56px;
  align-items:start;
}
.contact-grid h2{
  margin:0 0 18px;
  font-size:42px;
  line-height:1.15;
  letter-spacing:-.025em;
}
.contact-grid p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.contact-cards{
  display:grid;
  gap:14px;
  margin-top:28px;
}
.contact-form{
  display:grid;
  gap:18px;
  padding:32px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow-card);
}
.contact-form label{
  display:grid;
  gap:8px;
  color:var(--text);
  font-size:14px;
  font-weight:800;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px 14px;
  font:inherit;
  color:var(--text);
  background:#fff;
}
.insight-card{
  padding:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-card);
}
.insight-card span{
  display:block;
  color:var(--accent);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.insight-card h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.25;
}
.insight-card p{
  color:var(--muted);
  line-height:1.65;
}
.thank-you-section{
  padding:120px 0;
  background:#fff;
}
.thank-you-card{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.thank-you-icon{
  display:grid;
  place-items:center;
  width:84px;
  height:84px;
  margin:0 auto 28px;
  border-radius:50%;
  background:#DCFCE7;
  color:#16A34A;
  font-size:42px;
  font-weight:900;
}
.thank-you-card h1{
  margin:0 0 18px;
  font-size:clamp(40px,5vw,56px);
  line-height:1.1;
  letter-spacing:-.035em;
}
.thank-you-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  margin:0 0 30px;
}
.legal-content{
  padding:70px 0;
}
.legal-content .container{
  max-width:860px;
}
.legal-content h2{
  margin:34px 0 12px;
  font-size:28px;
}
.legal-content p{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.muted{color:var(--muted)}
.text-center{text-align:center}

@media (max-width: 900px){
  .service-hero__inner,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .service-hero__visual{
    min-height:320px;
    max-width:520px;
    margin:0 auto;
    width:100%;
  }
  .included-grid{
    grid-template-columns:1fr;
  }
  .section-row-title{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media (max-width: 640px){
  .service-hero{
    padding:64px 0 76px;
  }
  .service-section,
  .service-results{
    padding:64px 0;
  }
  .service-bullets{
    display:grid;
    gap:14px;
  }
  .service-hero__visual{
    min-height:240px;
  }
  .service-hero__phone{
    right:0;
  }
  .contact-form{
    padding:22px;
  }
}


/* ================================
   Case Studies Page
================================ */
.case-studies-page {
  background: #fff;
  color: var(--text);
}

.case-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, .28), transparent 36%),
    radial-gradient(circle at 18% 82%, rgba(239, 68, 68, .10), transparent 36%),
    var(--dark);
  color: #fff;
}

.case-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

.case-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: 64px;
  align-items: center;
}

.case-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #fff;
}

.case-hero p:not(.section-eyebrow) {
  max-width: 670px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.65;
}

.case-hero__panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(15,23,42,.74);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
}

.case-hero__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.case-hero__stat strong {
  color: #fff;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.04em;
}

.case-hero__stat span {
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.case-studies-list {
  padding: 86px 0 96px;
  background: #fff;
}

.case-study-grid--full {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.case-study-card--real {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.case-study-card--real:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(37,99,235,.22);
}

.case-study-image {
  display: block;
  position: relative;
  height: 212px;
  overflow: hidden;
  background: var(--dark);
}

.case-study-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,28,0) 45%, rgba(10,15,28,.22) 100%),
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.22), transparent 42%);
  pointer-events: none;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.92) contrast(1.05);
  transition: transform .3s ease, filter .3s ease;
}

.case-study-card--real:hover .case-study-image img {
  transform: scale(1.035);
  filter: brightness(.98) contrast(1.06);
}

.case-study-content {
  padding: 26px 26px 28px;
}

.case-study-services {
  margin: 0 0 8px;
  color: #5F6FA8;
  font-size: 14px;
  font-weight: 800;
}

.case-study-content h3 {
  margin: 0 0 10px;
  color: #071124;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.case-study-content > p:not(.case-study-services) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-study-metrics strong {
  display: block;
  color: #06164B;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.045em;
}

.case-study-metrics span {
  display: block;
  margin-top: 6px;
  color: #7181A8;
  font-size: 13px;
  font-weight: 700;
}

.case-method {
  padding: 86px 0 96px;
  background: var(--light);
}

.case-method h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .case-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .case-study-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .case-hero {
    padding: 82px 0 72px;
  }

  .case-study-grid--full {
    grid-template-columns: 1fr;
  }

  .case-study-image {
    height: 225px;
  }

  .case-hero__stat {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ================================
   Service Page Refactor Pass
   Centralized hero, process, and CTA styles
================================ */
.service-page{
  background:#fff;
}
.service-hero__visual{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
  overflow:visible;
}
.service-hero__mockup{
  display:block;
  width:min(100%,520px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 34px 70px rgba(0,0,0,.58));
  transform:translateY(8px) rotate(-2deg);
}
.section-intro--compact{
  max-width:720px;
  margin-bottom:40px;
}
.service-process{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(132,204,22,.11), transparent 28%),
    linear-gradient(180deg,#F8FAFC 0%,#FFFFFF 100%);
}
.service-process::before{
  content:"";
  position:absolute;
  left:50%;
  top:238px;
  width:min(920px,70vw);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(132,204,22,.75),rgba(37,99,235,.42),transparent);
  opacity:.72;
}
.service-process .container{
  position:relative;
  z-index:1;
}
.service-process .process-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin-top:0;
}
.service-process .process-grid::before{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  top:42px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(132,204,22,.70),rgba(37,99,235,.36),transparent);
  pointer-events:none;
}

.service-page--seo-toronto .service-process .process-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.service-process .process-step{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  min-height:280px;
  padding:22px 24px 24px;
  display:flex;
  flex-direction:column;
  text-align:left;
  background:
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.02)),
    #0B1120;
  border:1px solid rgba(255,255,255,.11);
  border-radius:22px;
  box-shadow:0 22px 60px rgba(15,23,42,.14);
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.service-process .process-step:nth-child(3){
  border-color:rgba(132,204,22,.46);
  box-shadow:0 24px 70px rgba(15,23,42,.18),0 0 0 1px rgba(132,204,22,.14);
}
.service-process .process-step::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 18% 10%,rgba(132,204,22,.14),transparent 30%),
    radial-gradient(circle at 92% 18%,rgba(37,99,235,.16),transparent 34%);
  opacity:.78;
}
.service-process .process-step:hover{
  transform:translateY(-7px);
  border-color:rgba(132,204,22,.62);
  box-shadow:0 28px 80px rgba(15,23,42,.22),0 0 0 1px rgba(132,204,22,.16);
}
.service-process .process-step__top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:28px;
}
.service-process .process-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(132,204,22,.34);
  border-radius:14px;
  background:rgba(132,204,22,.10);
  color:var(--primary);
}
.service-process .process-icon::before{
  font-size:21px;
  line-height:1;
}
.service-process .process-icon--target::before{content:"◎"}
.service-process .process-icon--audit::before{content:"⌕"}
.service-process .process-icon--research::before{content:"↗"}
.service-process .process-icon--launch::before{content:"✦"}
.service-process .process-icon--growth::before{content:"▰"}
.service-process .process-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  min-width:48px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1;
  font-weight:900;
  letter-spacing:.08em;
}
.service-process .process-step h3{
  position:relative;
  z-index:1;
  margin:0 0 12px;
  color:#fff;
  font-size:21px;
  line-height:1.12;
  font-weight:850;
  letter-spacing:-.025em;
}
.service-process .process-step p{
  position:relative;
  z-index:1;
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:1.6;
}
.service-process .process-outcome{
  position:relative;
  z-index:1;
  margin-top:auto;
  padding-top:22px;
  color:#D9F99D;
  font-size:13px;
  line-height:1.3;
  font-weight:850;
  letter-spacing:.02em;
}
.service-process .process-outcome::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:8px;
  border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 18px rgba(132,204,22,.72);
}
.process-timeline-note{
  max-width:900px;
  margin:28px auto 0;
  padding:15px 20px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  box-shadow:0 16px 45px rgba(15,23,42,.08);
  color:#334155;
  font-size:14px;
  line-height:1.45;
  font-weight:750;
  text-align:center;
}

.service-cta{
  position:relative;
  overflow:hidden;
  padding:86px 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(37,99,235,.20), transparent 30%),
    linear-gradient(135deg,#07111F 0%,#020617 100%);
  color:#fff;
}
.service-cta__inner{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.65fr);
  gap:44px;
  align-items:center;
  padding:46px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:rgba(255,255,255,.045);
  box-shadow:0 30px 90px rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
}
.service-cta h2{
  margin:0 0 16px;
  color:#fff;
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:850;
}
.service-cta p{
  max-width:620px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.65;
}
.service-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.service-cta__trust{
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}
.service-cta__trust li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  font-weight:750;
}
.service-cta__trust li::before{
  content:"✓";
  display:grid;
  place-items:center;
  flex:0 0 22px;
  height:22px;
  border-radius:50%;
  color:#07111F;
  background:var(--primary);
  font-size:13px;
  font-weight:900;
}


@media (max-width: 1180px){
  .service-page--seo-toronto .service-process .process-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .service-page--seo-toronto .service-process .process-step:nth-child(4){
    grid-column:1 / span 1;
  }
}
@media (max-width: 900px){
  .service-process::before,
  .service-process .process-grid::before{display:none;}
  .service-hero__visual{
    min-height:340px;
  }
  .service-hero__mockup{
    width:min(100%,440px);
  }
  .service-process .process-grid,
  .service-page--seo-toronto .service-process .process-grid,
  .service-cta__inner{
    grid-template-columns:1fr;
  }
  .service-cta__inner{
    padding:32px;
  }
}
@media (max-width: 640px){
  .service-hero__visual{
    min-height:280px;
  }
  .service-hero__mockup{
    width:min(112%,390px);
    transform:translateY(2px) rotate(-2deg);
  }
  .service-process .process-grid{
    gap:16px;
  }
  .service-process .process-step{
    min-height:auto;
  }
  .service-cta{
    padding:64px 0;
  }
  .service-cta__actions{
    flex-direction:column;
  }
  .service-cta__actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* ================================
   Service Header + Case Study Refinements
   2026 service visual system
================================ */
.service-hero__inner{
  grid-template-columns:minmax(0,1fr) minmax(390px,560px);
}
.service-hero__visual{
  isolation:isolate;
}
.service-hero__visual::before{
  content:"";
  position:absolute;
  inset:14% 4% 8%;
  z-index:-1;
  background:radial-gradient(circle at 50% 50%, rgba(37,99,235,.24), transparent 62%);
  filter:blur(12px);
  opacity:.8;
}
.service-hero__mockup{
  max-height:520px;
  object-fit:contain;
  object-position:center;
}
.service-page--web-design-toronto .service-hero__mockup,
.service-page--web-design-contractors .service-hero__mockup,
.service-page--web-design-law-firms .service-hero__mockup,
.service-page--web-design-local-services .service-hero__mockup{
  width:min(112%,560px);
  transform:translateY(6px) rotate(-2deg);
}
.service-page--seo-toronto .service-hero__mockup{
  width:min(108%,540px);
  transform:translateY(4px) rotate(0deg);
}
.service-page--ecommerce .service-hero__mockup{
  width:min(118%,600px);
  transform:translateY(4px) rotate(-3deg);
}
.service-page--shopify-optimization .service-hero__mockup{
  width:min(110%,560px);
  transform:translateY(6px) rotate(-4deg);
}
.service-page--ai-automation .service-hero__mockup,
.service-page--ai-automation-small-business .service-hero__mockup{
  width:min(124%,640px);
  transform:translateY(4px) rotate(-1deg);
}
.service-cases{
  background:#fff;
}
.service-cases .section-row-title{
  margin-bottom:34px;
}
.service-cases .case-study-grid--full.service-case-grid{
  gap:34px;
}
.service-cases .case-study-image{
  height:228px;
}
.service-cases .case-study-content{
  padding:24px 24px 26px;
}
.service-cases .case-study-content h3{
  font-size:21px;
}
.service-cases .case-study-content > p:not(.case-study-services){
  min-height:74px;
}
.service-cases .case-study-metrics strong{
  font-size:28px;
}

@media (max-width:980px){
  .service-hero__inner{
    grid-template-columns:1fr;
    gap:36px;
  }
  .service-hero__content{
    max-width:760px;
  }
  .service-hero__visual{
    min-height:340px;
  }
  .service-hero__mockup,
  .service-page--ai-automation .service-hero__mockup,
  .service-page--ai-automation-small-business .service-hero__mockup,
  .service-page--ecommerce .service-hero__mockup{
    width:min(100%,560px);
  }
}
@media (max-width:680px){
  .service-hero{
    padding:72px 0 76px;
  }
  .service-hero__content h1{
    font-size:clamp(38px,12vw,52px);
  }
  .service-cases .case-study-content > p:not(.case-study-services){
    min-height:0;
  }
}

/* ================================
   About Page Local Trust + Logos
================================ */
.about-trust-section{
  background:#172027;
  color:#fff;
  padding:84px 0;
  overflow:hidden;
}
.about-trust-header{
  max-width:850px;
  margin:0 auto 38px;
  text-align:center;
}
.about-trust-header .section-eyebrow{
  color:rgba(255,255,255,.68);
  letter-spacing:.32em;
}
.about-trust-header h2{
  color:#fff;
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
  margin:10px 0 16px;
}
.about-trust-header p{
  color:rgba(255,255,255,.74);
  font-size:18px;
  line-height:1.7;
  margin:0;
}
.about-logo-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:18px;
  align-items:center;
  margin:40px 0 34px;
}
.about-logo-card{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.about-logo-card img{
  max-width:100%;
  max-height:66px;
  object-fit:contain;
  filter:grayscale(100%) brightness(1.85) contrast(.9);
  opacity:.82;
  transition:filter .25s ease, opacity .25s ease;
}
.about-logo-card:hover{
  transform:translateY(-4px);
  border-color:rgba(163,230,53,.34);
  background:rgba(255,255,255,.06);
}
.about-logo-card:hover img{
  filter:grayscale(0%) brightness(1) contrast(1);
  opacity:1;
}
.about-local-proof{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,340px);
  gap:24px;
  align-items:stretch;
  padding:28px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  background:linear-gradient(135deg, rgba(15,23,42,.68), rgba(37,99,235,.13));
}
.about-local-proof__label{
  display:inline-flex;
  width:max-content;
  margin-bottom:10px;
  color:#a3e635;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.about-local-proof strong{
  display:block;
  color:#fff;
  font-size:24px;
  line-height:1.25;
}
.about-local-proof p{
  color:rgba(255,255,255,.72);
  margin:10px 0 0;
  line-height:1.7;
}
.bbb-profile-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding:24px;
  border-radius:18px;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(163,230,53,.28);
  background:rgba(2,6,23,.44);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.bbb-profile-card span{
  color:#a3e635;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.bbb-profile-card strong{
  font-size:20px;
}
.bbb-profile-card em{
  color:rgba(255,255,255,.72);
  font-style:normal;
}
.bbb-profile-card:hover{
  transform:translateY(-4px);
  border-color:rgba(163,230,53,.55);
  background:rgba(2,6,23,.68);
}
@media (max-width:980px){
  .about-logo-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
  .about-local-proof{
    grid-template-columns:1fr;
  }
}
@media (max-width:620px){
  .about-trust-section{
    padding:64px 0;
  }
  .about-logo-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
  }
  .about-logo-card{
    min-height:94px;
    padding:18px 14px;
  }
  .about-logo-card img{
    max-height:54px;
  }
  .about-local-proof{
    padding:22px;
  }
}

/* ================================
   Final Production Patch
   Header logo, homepage video/logos, icon polish, footer
================================ */
.brand--image{
  min-width:180px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.site-logo{
  display:block;
  max-width:190px;
  max-height:48px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.hero-video-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
}
.hero-video-card{
  position:relative;
  width:min(100%,560px);
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:#020617;
  box-shadow:0 34px 90px rgba(0,0,0,.46);
}
.hero-video-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(239,68,68,.24),transparent 36%,rgba(37,99,235,.18));
  z-index:1;
}
.hero-video-card iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.trust-bar--client-logos{
  background:#fff;
}
.client-logo-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
  align-items:center;
}
.client-logo-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:86px;
  padding:18px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(15,23,42,.045);
}
.client-logo-card img{
  display:block;
  max-width:100%;
  max-height:44px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.72;
  transition:filter .25s ease,opacity .25s ease,transform .25s ease;
}
.client-logo-card:hover img{
  filter:grayscale(0%);
  opacity:1;
  transform:translateY(-2px);
}
.service-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border-radius:16px;
  background:rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.14);
}
.service-icon img{
  display:block;
  width:38px;
  height:38px;
  object-fit:contain;
}
.service-card:hover .service-icon{
  transform:translateY(-2px);
  transition:transform .22s ease;
}
.btn-ghost{
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}
.btn-ghost:hover{
  color:#fff;
  background:rgba(255,255,255,.14);
  transform:translateY(-1px);
}
.site-footer{
  padding:64px 0;
  background:#07101F;
  color:#fff;
}
.footer-grid--expanded{
  grid-template-columns:1.6fr .9fr .9fr 1.1fr;
  align-items:start;
}
.footer-brand-title{
  display:inline-block!important;
  margin:0 0 14px!important;
  color:#fff!important;
  font-size:18px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.site-footer .footer-socials a{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  margin:0;
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  font-size:11px;
  font-weight:850;
  letter-spacing:.02em;
  text-decoration:none;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.site-footer .footer-socials a:hover{
  background:var(--accent);
  border-color:var(--accent);
  transform:translateY(-2px);
}
.footer-contact{
  margin:0 0 10px;
}
.case-study-final-cta{
  margin-top:0;
}
@media (max-width:1080px){
  .client-logo-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .footer-grid--expanded{grid-template-columns:1fr 1fr;}
}
@media (max-width:860px){
  .hero-video-wrap{min-height:auto;}
  .client-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .footer-grid--expanded{grid-template-columns:1fr;}
  .site-logo{max-width:160px;}
}

/* ================================
   Contact Page Conversion + Spam Controls
================================ */
.contact-page .simple-hero{
  padding-bottom:72px;
}
.contact-conversion-section{
  background:linear-gradient(180deg,#f8fafc 0%,#fff 100%);
}
.contact-grid--conversion{
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:64px;
  align-items:start;
}
.contact-intro-panel{
  max-width:520px;
}
.contact-intro-panel h2{
  max-width:560px;
  margin-bottom:18px;
}
.contact-intro-panel > p:not(.section-eyebrow){
  max-width:500px;
  margin-bottom:28px;
}
.contact-direct{
  display:grid;
  gap:10px;
  margin-top:26px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(15,23,42,.12);
}
.contact-direct h3,
.contact-trust-list h3{
  margin:0 0 4px;
  font-size:18px;
  line-height:1.3;
  letter-spacing:-.02em;
}
.contact-direct p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
}
.contact-direct strong{
  color:var(--text);
  font-weight:800;
}
.contact-direct a:not(.contact-email-button){
  color:var(--muted);
  text-decoration:none;
}
.contact-direct a:not(.contact-email-button):hover{
  color:var(--primary);
}
.contact-email-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:42px;
  margin-top:4px;
  padding:10px 22px;
  border-radius:9px;
  border:1px solid rgba(37,99,235,.55);
  color:var(--primary);
  background:#fff;
  font-weight:900;
  line-height:1;
  text-decoration:none;
  box-shadow:0 8px 24px rgba(37,99,235,.08);
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-email-button::before{
  content:"✉";
  margin-right:10px;
  font-size:15px;
  line-height:1;
}
.contact-email-button:hover{
  color:#fff;
  background:var(--primary);
  border-color:var(--primary);
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(37,99,235,.2);
}
.contact-trust-list{
  margin-top:24px;
}
.contact-trust-list ul{
  display:grid;
  gap:10px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
}
.contact-trust-list li{
  position:relative;
  padding-left:24px;
  color:var(--text);
  font-size:15px;
  line-height:1.55;
}
.contact-trust-list li::before{
  content:"✓";
  position:absolute;
  top:.05em;
  left:0;
  color:var(--primary);
  font-size:14px;
  font-weight:900;
}
.contact-form-stack{
  display:grid;
  gap:16px;
}
.contact-form--lead{
  border-radius:26px;
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 24px 70px rgba(15,23,42,.12);
}
.contact-form__row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.contact-form--lead select,
.contact-form--lead input,
.contact-form--lead textarea{
  transition:border-color .2s ease, box-shadow .2s ease;
}
.contact-form--lead select:focus,
.contact-form--lead input:focus,
.contact-form--lead textarea:focus{
  outline:none;
  border-color:rgba(14,165,233,.55);
  box-shadow:0 0 0 4px rgba(14,165,233,.12);
}
.contact-form__note{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}
.contact-hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
.contact-alert{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(239,68,68,.28);
  background:rgba(239,68,68,.08);
  color:#991b1b;
  font-weight:800;
  font-size:14px;
}
.contact-reviews-section{
  padding:86px 0;
  background:#020617;
  color:#fff;
}
.contact-reviews-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:42px;
  align-items:center;
}
.contact-reviews-grid h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.12;
  letter-spacing:-.035em;
}
.contact-reviews-grid p{
  max-width:620px;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.7;
}
.contact-reviews-grid .text-link{
  color:#fff;
}
.review-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.google-review-card{
  padding:26px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.google-review-card .stars{
  color:#fbbf24;
  letter-spacing:.08em;
  margin-bottom:16px;
  font-size:15px;
}
.google-review-card p{
  margin:0 0 18px;
  color:rgba(255,255,255,.86);
  font-size:16px;
}
.google-review-card strong{
  color:#fff;
  font-size:14px;
}
@media (max-width:900px){
  .contact-grid--conversion,
  .contact-reviews-grid{
    grid-template-columns:1fr;
  }
  .contact-intro-panel{
    max-width:100%;
  }
}
@media (max-width:640px){
  .contact-form__row,
  .review-card-grid{
    grid-template-columns:1fr;
  }
  .contact-reviews-grid h2,
  .contact-grid h2{
    font-size:34px;
  }
  .contact-grid--conversion{
    gap:36px;
  }
}

/* ================================
   ACF-Ready Case Study Detail Pages
================================ */
.case-study-readmore{
  display:inline-flex;
  margin-top:22px;
  color:#06164B;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}
.case-study-readmore:hover{color:var(--accent);}
.single-case-study{background:#f6f8fc;}
.case-detail-hero{
  padding:112px 0 86px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(37,99,235,.34), transparent 34%),
    linear-gradient(135deg,#071124 0%,#0b1530 55%,#101b3d 100%);
  overflow:hidden;
}
.case-detail-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:58px;
  align-items:center;
}
.case-detail-hero h1{
  color:#fff;
  margin:0 0 18px;
  font-size:clamp(44px,6vw,76px);
  line-height:.95;
  letter-spacing:-.06em;
}
.case-detail-subtitle{
  max-width:640px;
  margin:0 0 28px;
  color:rgba(255,255,255,.74);
  font-size:20px;
  line-height:1.55;
}
.case-detail-hero__image{
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 34px 90px rgba(0,0,0,.34);
  background:#fff;
}
.case-detail-hero__image img{display:block;width:100%;height:354px;object-fit:cover;}
.case-detail-body{padding:86px 0 98px;}
.case-detail-layout{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:42px;
  align-items:start;
}
.case-detail-sidebar{
  position:sticky;
  top:106px;
  display:grid;
  gap:16px;
}
.case-meta-card{
  padding:20px 22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-card);
}
.case-meta-card span{
  display:block;
  margin-bottom:8px;
  color:#7181A8;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.case-meta-card strong{
  display:block;
  color:#071124;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-.035em;
}
.case-detail-content{display:grid;gap:24px;}
.case-content-card{
  padding:34px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-card);
}
.case-content-card h2{
  margin:0 0 14px;
  color:#071124;
  font-size:clamp(26px,3vw,38px);
  line-height:1.08;
  letter-spacing:-.045em;
}
.case-content-card p{
  margin:0;
  color:#55627d;
  font-size:16px;
  line-height:1.75;
}
.case-check-list{
  display:grid;
  gap:12px;
  padding:0;
  margin:0;
  list-style:none;
}
.case-check-list li{
  position:relative;
  padding-left:30px;
  color:#55627d;
  font-size:16px;
  line-height:1.65;
}
.case-check-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:900;
}
.case-homepage-strategy-card{overflow:hidden;}
.homepage-strategy-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:26px 0;
}
.homepage-strategy-grid > div{
  padding:20px;
  border:1px solid rgba(6,22,75,.08);
  border-radius:18px;
  background:#f8fafc;
}
.homepage-strategy-grid span{
  display:block;
  margin-bottom:10px;
  color:#9aa7c2;
  font-weight:900;
  letter-spacing:.08em;
}
.homepage-strategy-grid strong{
  display:block;
  margin-bottom:8px;
  color:#071124;
  font-size:17px;
}
.homepage-strategy-grid p{font-size:14px;line-height:1.6;}
.homepage-preview-frame{
  margin:28px 0 0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:22px;
  background:#071124;
  box-shadow:0 24px 60px rgba(7,17,36,.12);
}
.homepage-preview-frame img{display:block;width:100%;height:auto;}
.homepage-preview-frame figcaption{
  padding:14px 18px;
  color:#7181A8;
  background:#fff;
  font-size:13px;
  line-height:1.5;
}
.case-service-tags{display:flex;flex-wrap:wrap;gap:12px;}
.case-service-tags a{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  color:#06164B;
  background:#eef3ff;
  font-weight:850;
  text-decoration:none;
}
.case-service-tags a:hover{background:var(--accent);color:#fff;}
.case-detail-cta{margin-top:0;}
.cta-trust-list{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.cta-trust-list span{
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:rgba(255,255,255,.76);
  font-size:13px;
  font-weight:800;
}
@media (max-width:980px){
  .case-detail-hero__grid,.case-detail-layout{grid-template-columns:1fr;}
  .case-detail-sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:680px){
  .case-detail-hero{padding:84px 0 64px;}
  .case-detail-hero__image img{height:280px;}
  .case-content-card{padding:24px;}
  .case-detail-sidebar,.homepage-strategy-grid{grid-template-columns:1fr;}
}


/* Blog index */
.blog-index .blog-hero{
  padding:96px 0 36px;
  background:var(--light);
}
.blog-hero h1{
  max-width:820px;
  margin:12px 0 0;
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  letter-spacing:-.055em;
  color:var(--dark);
}
.blog-hero__intro{
  max-width:720px;
  margin:24px 0 0;
  font-size:20px;
  line-height:1.65;
  color:var(--muted);
}
.blog-featured{
  padding:36px 0 32px;
  background:var(--light);
}
.blog-featured-card{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:24px;
  background:var(--white);
  box-shadow:var(--shadow-card);
}
.blog-featured-card__media{
  position:relative;
  min-height:420px;
  display:block;
  overflow:hidden;
  background:#EAF0F8;
}
.blog-featured-card__media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.blog-featured-card:hover .blog-featured-card__media img{
  transform:scale(1.035);
}
.blog-featured-card__content{
  padding:56px;
  align-self:center;
}
.blog-card-kicker{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 16px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.blog-card-kicker span{
  color:var(--muted);
  font-weight:700;
}
.blog-featured-card h2{
  margin:0;
  color:var(--dark);
  font-size:clamp(32px,4vw,52px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.blog-featured-card h2 a,
.blog-card h3 a{
  text-decoration:none;
}
.blog-featured-card p:not(.blog-card-kicker){
  margin:20px 0 28px;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.blog-grid-section{
  padding:48px 0 96px;
  background:var(--light);
}
.blog-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:28px;
}
.blog-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--white);
  box-shadow:var(--shadow-card);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.blog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(37,99,235,.28);
  box-shadow:var(--shadow-card-hover);
}
.blog-card__media{
  display:block;
  height:220px;
  overflow:hidden;
  background:#EAF0F8;
}
.blog-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.blog-card:hover .blog-card__media img{
  transform:scale(1.04);
}
.blog-card-placeholder{
  width:100%;
  height:100%;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#EFF6FF,#F8FAFC);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.blog-card__content{
  padding:28px;
}
.blog-card h3{
  margin:0;
  color:var(--dark);
  font-size:24px;
  line-height:1.16;
  letter-spacing:-.035em;
}
.blog-card__content > p:not(.blog-card-kicker){
  margin:14px 0 22px;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}
.blog-card__link{
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.05em;
  text-decoration:none;
  text-transform:uppercase;
}
.blog-card__link:hover{
  color:var(--primary-hover);
}
.blog-pagination{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:44px;
}
.blog-pagination .page-numbers{
  min-width:40px;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--white);
  color:var(--dark);
  font-weight:700;
  text-decoration:none;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover{
  border-color:var(--primary);
  background:var(--primary);
  color:var(--white);
}

.case-card-link{
  display:block;
  height:100%;
  color:inherit;
  text-decoration:none;
}

@media (max-width: 980px){
  .blog-featured-card{
    grid-template-columns:1fr;
  }
  .blog-featured-card__media,
  .blog-featured-card__media img{
    min-height:320px;
  }
  .blog-featured-card__content{
    padding:36px;
  }
  .blog-card-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .blog-index .blog-hero{
    padding:72px 0 28px;
  }
  .blog-hero__intro{
    font-size:17px;
  }
  .blog-card-grid{
    grid-template-columns:1fr;
  }
  .blog-card__media{
    height:200px;
  }
  .blog-featured-card__content,
  .blog-card__content{
    padding:26px;
  }
}
/* ================================
   Past Client Work Grid
================================ */

.past-client-work {
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, .08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.past-client-work__header {
  margin-bottom: 36px;
}

.past-client-work__header h2 {
  max-width: 860px;
}

.past-client-work__header p:not(.section-eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.past-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.past-client-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.past-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: var(--shadow-card-hover);
}

.past-client-card__image {
  position: relative;
  height: 145px;
  overflow: hidden;
  background: #0f172a;
}

.past-client-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, .55) 100%);
  pointer-events: none;
}

.past-client-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(.94) contrast(1.04);
  transition: transform .3s ease, filter .3s ease;
}

.past-client-card:hover .past-client-card__image img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

.past-client-card__image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.past-client-card__content {
  padding: 18px 18px 20px;
}

.past-client-card__content p {
  margin: 0 0 8px;
  color: #5F6FA8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.past-client-card__content h3 {
  margin: 0 0 12px;
  color: #071124;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.past-client-card__content div {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .past-client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .past-client-work {
    padding: 72px 0 82px;
  }

  .past-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .past-client-grid {
    grid-template-columns: 1fr;
  }

  .past-client-card__image {
    height: 190px;
  }
}
.growth-stack {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.growth-stack__header {
  max-width: 820px;
  margin-bottom: 34px;
}

.growth-stack__header h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #071124;
}

.growth-stack__header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.growth-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.growth-stack__card {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.growth-stack__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: #2457d6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.growth-stack__card h3 {
  margin: 0 0 12px;
  color: #071124;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.growth-stack__card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.growth-stack__footer {
  margin-top: 24px;
  padding: 34px;
  border-radius: 28px;
  background: #071124;
  color: #fff;
}

.growth-stack__footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.035em;
}

.growth-stack__footer p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .growth-stack__grid {
    grid-template-columns: 1fr;
  }
}
.hero-ai {
  position: relative;
  height: 360px;
}

/* Core */
.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #2563eb, #071124);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(37,99,235,0.4);
}

.ai-core span {
  font-size: 28px;
  font-weight: 700;
}

.ai-core small {
  font-size: 11px;
  opacity: 0.7;
}

/* Cards */
.ai-card {
  position: absolute;
  width: 160px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Positioning */
.ai-card--1 { top: 0; left: 20%; }
.ai-card--2 { top: 0; right: 20%; }
.ai-card--3 { bottom: 0; left: 20%; }
.ai-card--4 { bottom: 0; right: 20%; }



/* ================================
   HOME HERO – AI GROWTH SYSTEM PATCH
   Scoped to .hero-figma--ai to avoid affecting other pages/sections
================================ */

.hero-figma--ai {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.24), transparent 35%),
    radial-gradient(circle at 18% 75%, rgba(239, 68, 68, 0.08), transparent 28%),
    #071124;
}

.hero-figma-grid--ai {
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  gap: 58px;
  min-height: 690px;
  padding-top: 92px;
  padding-bottom: 82px;
}

.hero-copy--ai {
  position: relative;
  z-index: 5;
  max-width: 620px;
}

.hero-copy--ai h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-copy--ai .hero-subtitle {
  max-width: 560px;
  color: #b9d7ff;
  font-size: 18px;
  line-height: 1.7;
}

.hero-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin-top: 74px;
}

.hero-proof-stats div {
  position: relative;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof-stats div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-proof-stats strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.hero-proof-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.hero-trust-line {
  margin: 34px 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}



.hero-ai-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.ai-fixed-panel {
  position: relative;
  width: 100%;
  height: 570px;
  max-width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.ai-fixed-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ai-orbit {
  fill: none;
  stroke: rgba(37,153,255,.24);
  stroke-width: 1;
  stroke-dasharray: 3 8;
  transform-origin: 320px 245px;
  animation: aiOrbitSpin 18s linear infinite;
}

.ai-orbit--two {
  stroke: rgba(255,255,255,.08);
  animation-duration: 26s;
}

.ai-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: aiElectricLine 2.8s linear infinite;
}

.ai-line--blue {
  stroke: rgba(37,153,255,.96);
  filter:
    drop-shadow(0 0 6px rgba(37,153,255,.85))
    drop-shadow(0 0 14px rgba(37,153,255,.45));
}

.ai-line--red {
  stroke: rgba(239,68,68,.92);
  filter:
    drop-shadow(0 0 6px rgba(239,68,68,.75))
    drop-shadow(0 0 14px rgba(239,68,68,.4));
}

.ai-particles {
  fill: none;
  stroke: rgba(37,153,255,.75);
  stroke-width: 2;
  stroke-dasharray: 3 14;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(37,153,255,.7));
  animation: aiParticleDrift 3s linear infinite;
}

.ai-particles--right {
  animation-delay: .6s;
}

@keyframes aiElectricLine {
  0% { stroke-dashoffset: 120; opacity: .25; }
  45% { opacity: 1; }
  100% { stroke-dashoffset: -120; opacity: .48; }
}

@keyframes aiParticleDrift {
  0% { stroke-dashoffset: 80; opacity: 0; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: -160; opacity: 0; }
}

@keyframes aiOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ai-fixed-core {
  position: absolute;
  top: 245px;
  left: 284px;
  width: 142px;
  height: 142px;
  transform: translate(-50%, -50%);
  z-index: 5;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.28), transparent 15%),
    radial-gradient(circle, #2563eb 0%, #123ea3 44%, #071124 80%);
  border: 1px solid rgba(93,173,255,.7);
  box-shadow:
    0 0 34px rgba(37,99,235,.9),
    0 0 100px rgba(37,99,235,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: aiCorePulse 3.8s ease-in-out infinite;
}

.ai-fixed-core::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(37,153,255,.35);
  animation: aiCoreRing 2.6s ease-out infinite;
}

.ai-fixed-core span {
  color: #fff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.ai-fixed-core small {
  margin-top: 8px;
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
}

@keyframes aiCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes aiCoreRing {
  0% { transform: scale(.88); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.ai-fixed-card {
  position: absolute;
  z-index: 4;
  width: 160px;
  min-height: 142px;
  padding: 20px;
  border-radius: 17px;
  background: rgba(7,17,36,.66);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 18px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.ai-fixed-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 54px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(37,153,255,.95);
  box-shadow: 0 0 15px rgba(37,153,255,.9);
}

.ai-fixed-card--seo::before,
.ai-fixed-card--ads::before {
  background: rgba(239,68,68,.95);
  box-shadow: 0 0 15px rgba(239,68,68,.75);
}

.ai-fixed-card--web {
  top: 20px;
  left: 20px;
  border-color: rgba(37,153,255,.42);
}

.ai-fixed-card--seo {
  top: 20px;
  right: 20px;
  border-color: rgba(239,68,68,.42);
}

.ai-fixed-card--ads {
  top: 365px;
  left: 23px;
  border-color: rgba(239,68,68,.42);
}

.ai-fixed-card--performance {
  top: 365px;
  right: 19px;
  border-color: rgba(37,153,255,.42);
}

.ai-fixed-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #60a5fa;
  font-size: 22px;
  background: rgba(37,99,235,.14);
}

.ai-fixed-card--seo .ai-fixed-icon,
.ai-fixed-card--ads .ai-fixed-icon {
  color: #ef4444;
  background: rgba(239,68,68,.14);
}

.ai-fixed-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.035em;
}

.ai-fixed-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.42;
}

.ai-process-bar {
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 470px;
  height: 74px;
  transform: translateX(-50%);
  z-index: 6;
  border-radius: 16px;
  background: rgba(7,17,36,.76);
  border: 1px solid rgba(37,153,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  text-align: center;
}

.ai-process-bar div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.ai-process-bar span {
  color: rgba(255,255,255,.9);
  font-size: 22px;
  line-height: 1;
}

.ai-process-bar strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.ai-process-bar i {
  display: block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,153,255,.7), transparent);
  animation: aiSmallFlow 2s ease-in-out infinite;
}

@keyframes aiSmallFlow {
  0%, 100% { opacity: .25; transform: scaleX(.75); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 1180px) {
  .hero-figma-grid--ai {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy--ai {
    max-width: 760px;
  }

  .hero-proof-stats {
    margin-top: 48px;
  }

  .ai-fixed-panel {
    transform: scale(.96);
    transform-origin: top center;
  }

  .hero-ai-visual {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .hero-figma-grid--ai {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .hero-proof-stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero-proof-stats div,
  .hero-proof-stats div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-text-logos {
    gap: 14px 20px;
  }

  .ai-fixed-panel {
    width: 640px;
    height: 520px;
    transform: scale(.52);
    transform-origin: top center;
  }

  .hero-ai-visual {
    height: 292px;
    min-height: 292px;
    overflow: hidden;
  }
}



/* Hero client logos */
.hero-logo-row{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  height:42px;
}

.hero-logo-item img{
  max-height:32px;
  width:auto;
  object-fit:contain;
  filter:grayscale(1) brightness(1.6);
  opacity:.7;
  transition:.25s ease;
}

.hero-logo-item:hover img{
  filter:grayscale(0) brightness(1);
  opacity:1;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;

  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-legal-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal-links span {
  color: rgba(255,255,255,.3);
}
/* Mobile hero stat row + hide AI animation */
@media (max-width: 680px) {
  .hero-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
  }

  .hero-proof-stats div,
  .hero-proof-stats div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-proof-stats strong {
    font-size: 22px;
  }

  .hero-proof-stats span {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-ai-visual {
    display: none;
  }
}
/* Force logos into ONE row on mobile */
@media (max-width: 680px) {

  .hero-logo-row {
    display: flex;
    flex-wrap: nowrap;          /* prevents wrapping */
    justify-content: space-between;
    align-items: center;

    gap: 10px;
    overflow-x: hidden;         /* prevents scroll */
  }

  .hero-logo-item {
    flex: 1;                    /* each logo takes equal space */
    display: flex;
    justify-content: center;
  }

  .hero-logo-item img {
    max-height: 22px;           /* scale down */
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

}
/* ================================
   404 PAGE – AI STYLE
================================ */

.error-404--ai {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(37,99,235,.24), transparent 36%),
    radial-gradient(circle at 18% 80%, rgba(239,68,68,.10), transparent 30%),
    #071124;
  color: #fff;
}

.error-404__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 70px;
  align-items: center;
}

.error-404__content {
  max-width: 680px;
}

.error-404__content h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.error-404__content p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 30px;
  color: #b9d7ff;
  font-size: 18px;
  line-height: 1.7;
}

.error-404__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Visual */

.error-404__visual {
  position: relative;
  height: 360px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.24), transparent 36%),
    linear-gradient(135deg, rgba(7,17,36,.72), rgba(10,25,55,.5));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 36px 100px rgba(0,0,0,.32);
  overflow: hidden;
}

.error-ai-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.25), transparent 15%),
    radial-gradient(circle, #2563eb 0%, #123ea3 44%, #071124 80%);
  border: 1px solid rgba(93,173,255,.7);
  box-shadow:
    0 0 34px rgba(37,99,235,.85),
    0 0 100px rgba(37,99,235,.34);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: errorOrbPulse 3.8s ease-in-out infinite;
}

.error-ai-orb::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(37,153,255,.32);
  animation: errorOrbRing 2.8s ease-out infinite;
}

.error-ai-orb span {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.error-ai-orb small {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.error-node {
  position: absolute;
  z-index: 4;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(7,17,36,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.error-node--one {
  top: 70px;
  left: 58px;
}

.error-node--two {
  top: 70px;
  right: 58px;
}

.error-node--three {
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
}

.error-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.error-lines path {
  fill: none;
  stroke: rgba(37,153,255,.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  filter:
    drop-shadow(0 0 6px rgba(37,153,255,.75))
    drop-shadow(0 0 14px rgba(37,153,255,.35));
  animation: errorLineFlow 2.8s linear infinite;
}

.error-lines path:nth-child(2) {
  stroke: rgba(239,68,68,.85);
  animation-delay: .35s;
}

.error-lines path:nth-child(3) {
  animation-delay: .7s;
}

@keyframes errorLineFlow {
  0% {
    stroke-dashoffset: 120;
    opacity: .25;
  }

  45% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -120;
    opacity: .45;
  }
}

@keyframes errorOrbPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@keyframes errorOrbRing {
  0% {
    transform: scale(.88);
    opacity: .7;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

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

  .error-404__visual {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .error-404--ai {
    padding: 88px 0;
  }

  .error-404__visual {
    display: none;
  }

  .error-404__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================================
   THANK YOU PAGE – AI STYLE
================================ */

.thank-you-ai {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(37,99,235,.24), transparent 36%),
    radial-gradient(circle at 18% 80%, rgba(239,68,68,.08), transparent 30%),
    #071124;
  color: #fff;
}

.thank-you-ai__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 70px;
  align-items: center;
}

.thank-you-ai__content {
  max-width: 680px;
}

.thank-you-ai__content h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.thank-you-ai__content p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 30px;
  color: #b9d7ff;
  font-size: 18px;
  line-height: 1.7;
}

.thank-you-ai__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.thank-you-ai__visual {
  position: relative;
  height: 360px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.24), transparent 36%),
    linear-gradient(135deg, rgba(7,17,36,.72), rgba(10,25,55,.5));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 36px 100px rgba(0,0,0,.32);
  overflow: hidden;
}

.thank-you-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.25), transparent 15%),
    radial-gradient(circle, #2563eb 0%, #123ea3 44%, #071124 80%);
  border: 1px solid rgba(93,173,255,.7);
  box-shadow:
    0 0 34px rgba(37,99,235,.85),
    0 0 100px rgba(37,99,235,.34);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: thankOrbPulse 3.8s ease-in-out infinite;
}

.thank-you-orb::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(37,153,255,.32);
  animation: thankOrbRing 2.8s ease-out infinite;
}

.thank-you-orb span {
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.thank-you-orb small {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.thank-node {
  position: absolute;
  z-index: 4;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(7,17,36,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.thank-node--one {
  top: 70px;
  left: 58px;
}

.thank-node--two {
  top: 70px;
  right: 58px;
}

.thank-node--three {
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
}

.thank-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.thank-lines path {
  fill: none;
  stroke: rgba(37,153,255,.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  filter:
    drop-shadow(0 0 6px rgba(37,153,255,.75))
    drop-shadow(0 0 14px rgba(37,153,255,.35));
  animation: thankLineFlow 2.8s linear infinite;
}

.thank-lines path:nth-child(2) {
  stroke: rgba(239,68,68,.85);
  animation-delay: .35s;
}

.thank-lines path:nth-child(3) {
  animation-delay: .7s;
}

@keyframes thankLineFlow {
  0% { stroke-dashoffset: 120; opacity: .25; }
  45% { opacity: 1; }
  100% { stroke-dashoffset: -120; opacity: .45; }
}

@keyframes thankOrbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes thankOrbRing {
  0% { transform: scale(.88); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

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

  .thank-you-ai__visual {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .thank-you-ai {
    padding: 88px 0;
  }

  .thank-you-ai__visual {
    display: none;
  }

  .thank-you-ai__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Maintenance page tweaks */

/* Website Maintenance Page */
.maintenance-section {
  padding: 86px 0;
  background: #fff;
}

.maintenance-section:nth-of-type(even) {
  background: #f8fafc;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.maintenance-copy {
  max-width: 440px;
}

.maintenance-copy h2 {
  margin: 0 0 18px;
  color: #071124;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.maintenance-copy p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.maintenance-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.maintenance-card {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.maintenance-card h3 {
  margin: 0 0 10px;
  color: #071124;
  font-size: 18px;
  line-height: 1.2;
}

.maintenance-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.maintenance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.maintenance-list .maintenance-card {
  padding: 22px;
}

@media (max-width: 980px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .maintenance-card-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-list {
    grid-template-columns: 1fr;
  }
}
.contact-alt-path {
  margin-top: 22px;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.contact-alt-path h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.3;
}

.contact-alt-path p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.contact-alt-path .text-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
/* Holidays Page */

.holidays-section {
  padding: 80px 0;
}

.holidays-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.holidays-content h2 {
  margin-bottom: 24px;
  color: #071124;
}

.holidays-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  border-top: 1px solid #e5e7eb;
}

.holidays-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
}

.holidays-list strong {
  color: #071124;
}

.holidays-list span {
  color: #ef4444;
  font-weight: 600;
}

.holidays-note {
  margin-bottom: 24px;
  color: #64748b;
}


/* SEO Growth Framework premium process - cache-bust v1.2.1 */
.service-process--premium{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(132,204,22,.08), transparent 32%),
    linear-gradient(180deg,#F8FAFC 0%,#FFFFFF 100%);
}
.service-process--premium .section-intro{
  margin-bottom:36px;
}
.service-process--premium .process-grid--premium{
  position:relative;
  display:grid !important;
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:stretch;
  margin-top:0 !important;
}
.service-process--premium .process-grid--premium::before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:46px;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(132,204,22,.65),rgba(37,99,235,.35),transparent);
  pointer-events:none;
  z-index:0;
}
.service-process--premium .process-step--premium{
  position:relative !important;
  z-index:1;
  isolation:isolate;
  overflow:hidden;
  min-height:306px;
  padding:22px 22px 24px !important;
  display:flex !important;
  flex-direction:column;
  text-align:left !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:22px !important;
  background:
    radial-gradient(circle at 18% 12%,rgba(132,204,22,.14),transparent 30%),
    radial-gradient(circle at 88% 15%,rgba(37,99,235,.16),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.02)),
    #0B1120 !important;
  box-shadow:0 22px 60px rgba(15,23,42,.14) !important;
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.service-process--premium .process-step--premium:nth-child(3){
  border-color:rgba(132,204,22,.52) !important;
  box-shadow:0 24px 70px rgba(15,23,42,.18),0 0 0 1px rgba(132,204,22,.18) !important;
}
.service-process--premium .process-step--premium:hover{
  transform:translateY(-7px);
  border-color:rgba(132,204,22,.65) !important;
  box-shadow:0 28px 80px rgba(15,23,42,.22),0 0 0 1px rgba(132,204,22,.18) !important;
}
.service-process--premium .process-step__top{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:28px;
}
.service-process--premium .process-icon{
  width:40px !important;
  height:40px !important;
  display:grid !important;
  place-items:center;
  flex:0 0 40px;
  border:1px solid rgba(132,204,22,.38);
  border-radius:14px;
  background:rgba(132,204,22,.10);
  color:#A3E635;
}
.service-process--premium .process-icon::before{
  font-size:21px;
  line-height:1;
}
.service-process--premium .process-icon--target::before{content:"◎"}
.service-process--premium .process-icon--audit::before{content:"⌕"}
.service-process--premium .process-icon--research::before{content:"↗"}
.service-process--premium .process-icon--launch::before{content:"✦"}
.service-process--premium .process-icon--growth::before{content:"▰"}
.service-process--premium .process-number{
  position:static !important;
  inset:auto !important;
  width:auto !important;
  height:34px !important;
  min-width:48px !important;
  padding:0 12px !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.06) !important;
  color:rgba(255,255,255,.82) !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  opacity:1 !important;
  transform:none !important;
}
.service-process--premium .process-step--premium h3{
  margin:0 0 12px !important;
  max-width:none !important;
  color:#fff !important;
  font-size:clamp(18px,1.55vw,21px) !important;
  line-height:1.12 !important;
  font-weight:850 !important;
  letter-spacing:-.025em !important;
}
.service-process--premium .process-step--premium p{
  margin:0 !important;
  max-width:none !important;
  color:rgba(255,255,255,.75) !important;
  font-size:14.5px !important;
  line-height:1.58 !important;
  font-weight:650 !important;
}
.service-process--premium .process-outcome{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  margin-top:auto !important;
  padding:12px 0 0 !important;
  color:#D9F99D !important;
  font-size:13px !important;
  line-height:1.25 !important;
  font-weight:850 !important;
  letter-spacing:.01em !important;
  opacity:1 !important;
}
.service-process--premium .process-outcome::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  flex:0 0 7px;
  border-radius:999px;
  background:#A3E635;
  box-shadow:0 0 18px rgba(163,230,53,.72);
}
.service-process--premium .process-timeline-note{
  max-width:920px;
  margin:30px auto 0 !important;
  padding:15px 22px !important;
  border:1px solid rgba(15,23,42,.08);
  border-radius:999px;
  background:rgba(255,255,255,.90);
  box-shadow:0 16px 45px rgba(15,23,42,.08);
  color:#334155 !important;
  font-size:14px;
  line-height:1.45;
  font-weight:750;
  text-align:center;
}

@media (max-width:1180px){
  .service-process--premium .process-grid--premium{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}
@media (max-width:760px){
  .service-process--premium .process-grid--premium{
    grid-template-columns:1fr !important;
  }
  .service-process--premium .process-grid--premium::before{
    display:none;
  }
  .service-process--premium .process-step--premium{
    min-height:auto;
  }
  .service-process--premium .process-timeline-note{
    border-radius:18px;
    text-align:left;
  }
}


/* ================================
   SEO Audit Toronto Hero Animation + Lead Form
================================ */
.service-page--seo-audit-toronto .service-hero__visual{
  min-height:440px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.seo-audit-visual{
  position:relative;
  width:min(100%,560px);
  min-height:430px;
  isolation:isolate;
}
.seo-audit-visual__orb{
  position:absolute;
  border-radius:999px;
  filter:blur(8px);
  opacity:.85;
  z-index:0;
}
.seo-audit-visual__orb--one{
  width:220px;
  height:220px;
  right:38px;
  top:42px;
  background:radial-gradient(circle,rgba(37,99,235,.42),transparent 68%);
  animation:seoAuditFloat 7s ease-in-out infinite;
}
.seo-audit-visual__orb--two{
  width:170px;
  height:170px;
  left:40px;
  bottom:32px;
  background:radial-gradient(circle,rgba(132,204,22,.28),transparent 68%);
  animation:seoAuditFloat 8s ease-in-out infinite reverse;
}
.seo-audit-panel{
  position:absolute;
  z-index:1;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg,rgba(15,23,42,.92),rgba(3,7,18,.86));
  box-shadow:0 28px 80px rgba(0,0,0,.38);
  backdrop-filter:blur(14px);
  border-radius:22px;
  color:#fff;
}
.seo-audit-panel--main{
  left:30px;
  top:34px;
  width:390px;
  padding:22px;
  animation:seoAuditPanelIn .7s ease both;
}
.seo-audit-panel__top{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:20px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
}
.seo-audit-panel__top span{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
}
.seo-audit-panel__top strong{margin-left:8px}
.seo-audit-score{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}
.seo-audit-score__ring{
  width:92px;
  height:92px;
  flex:0 0 92px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at center,#101827 58%,transparent 60%),
    conic-gradient(#84CC16 0 74%, rgba(255,255,255,.1) 74% 100%);
  box-shadow:0 0 30px rgba(132,204,22,.22);
  animation:seoAuditPulse 3s ease-in-out infinite;
}
.seo-audit-score__ring span{
  font-size:26px;
  line-height:1;
  font-weight:900;
}
.seo-audit-score__ring small{
  margin-top:-28px;
  color:rgba(255,255,255,.58);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
}
.seo-audit-score p{
  margin:0 0 6px;
  color:rgba(255,255,255,.68);
  font-size:14px;
  font-weight:700;
}
.seo-audit-score strong{
  display:block;
  color:#fff;
  font-size:17px;
  line-height:1.25;
}
.seo-audit-bars{
  display:grid;
  gap:10px;
  margin:18px 0;
}
.seo-audit-bars div{
  height:10px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}
.seo-audit-bars span{
  display:block;
  height:100%;
  width:var(--w);
  border-radius:inherit;
  background:linear-gradient(90deg,#2563EB,#84CC16);
  transform-origin:left center;
  animation:seoAuditBar 2.4s ease-in-out infinite;
}
.seo-audit-checklist{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.seo-audit-checklist div,
.seo-audit-issue{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.8);
  font-size:13px;
  font-weight:750;
}
.seo-audit-checklist span,
.seo-audit-issue span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#84CC16;
  box-shadow:0 0 18px rgba(132,204,22,.7);
}
.seo-audit-panel--serp{
  right:8px;
  top:120px;
  width:190px;
  padding:18px;
  animation:seoAuditPanelIn .7s ease .15s both, seoAuditFloat 6s ease-in-out 1.2s infinite;
}
.seo-audit-panel--issues{
  left:0;
  bottom:52px;
  width:210px;
  padding:18px;
  animation:seoAuditPanelIn .7s ease .25s both, seoAuditFloat 7s ease-in-out 1.5s infinite reverse;
}
.seo-audit-panel--leads{
  right:22px;
  bottom:18px;
  width:245px;
  padding:18px;
  animation:seoAuditPanelIn .7s ease .35s both, seoAuditFloat 7.5s ease-in-out 1.1s infinite;
}
.seo-audit-panel small{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.54);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.seo-audit-panel p{
  margin:8px 0 0;
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.45;
}
.seo-audit-rank{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}
.seo-audit-rank span{
  color:rgba(255,255,255,.46);
  font-size:24px;
}
.seo-audit-rank i{
  width:38px;
  height:2px;
  background:linear-gradient(90deg,rgba(255,255,255,.2),#84CC16);
}
.seo-audit-rank strong{
  color:#84CC16;
  font-size:31px;
}
.seo-audit-panel--leads strong{
  display:block;
  color:#fff;
  font-size:17px;
  line-height:1.25;
}
.service-lead-form{
  background:#fff;
}
.service-lead-form__wrap{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(360px,1fr);
  gap:42px;
  align-items:start;
  padding:42px;
  border:1px solid var(--border);
  border-radius:28px;
  background:
    radial-gradient(circle at 12% 10%,rgba(37,99,235,.08),transparent 30%),
    linear-gradient(180deg,#fff,#F8FAFC);
  box-shadow:var(--shadow-card);
}
.service-lead-form__content h2{
  margin:0 0 16px;
  font-size:clamp(32px,4vw,44px);
  line-height:1.12;
  letter-spacing:-.025em;
}
.service-lead-form__content > p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.service-lead-form__trust{
  display:grid;
  gap:12px;
  margin:28px 0 0;
  padding:0;
  list-style:none;
}
.service-lead-form__trust li{
  display:flex;
  gap:10px;
  color:var(--text);
  font-weight:750;
}
.service-lead-form__trust li::before{
  content:"✓";
  color:#2563EB;
  font-weight:900;
}
.service-lead-form__form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}
.service-lead-form__form label{
  display:grid;
  gap:8px;
  color:var(--text);
  font-size:13px;
  font-weight:850;
}
.service-lead-form__form input,
.service-lead-form__form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:13px 14px;
  color:var(--text);
  background:#fff;
  font:inherit;
  outline:none;
}
.service-lead-form__form input:focus,
.service-lead-form__form textarea:focus{
  border-color:#2563EB;
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.service-lead-form__full,
.service-lead-form__form button{
  grid-column:1 / -1;
}

@keyframes seoAuditPanelIn{
  from{opacity:0;transform:translateY(18px) scale(.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes seoAuditFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
@keyframes seoAuditPulse{
  0%,100%{box-shadow:0 0 30px rgba(132,204,22,.22)}
  50%{box-shadow:0 0 46px rgba(132,204,22,.38)}
}
@keyframes seoAuditBar{
  0%{transform:scaleX(.52)}
  50%,100%{transform:scaleX(1)}
}

@media (prefers-reduced-motion: reduce){
  .seo-audit-visual *,
  .seo-audit-visual__orb{
    animation:none!important;
  }
}
@media (max-width:980px){
  .service-page--seo-audit-toronto .service-hero__visual{min-height:400px}
  .seo-audit-visual{max-width:520px;margin:0 auto}
  .service-lead-form__wrap{grid-template-columns:1fr;padding:28px}
}
@media (max-width:680px){
  .service-page--seo-audit-toronto .service-hero__visual{min-height:520px}
  .seo-audit-visual{min-height:500px}
  .seo-audit-panel--main{
    left:0;
    right:0;
    width:auto;
  }
  .seo-audit-panel--serp{right:0;top:285px}
  .seo-audit-panel--issues{left:0;bottom:64px}
  .seo-audit-panel--leads{right:0;bottom:0}
  .service-lead-form__form{grid-template-columns:1fr}
}


/* Local SEO Toronto hero growth engine */
.service-page--local-seo-toronto .service-hero__visual{
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.local-seo-engine{
  position:relative;
  width:min(560px,100%);
  min-height:460px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(156,255,58,.18), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(37,99,235,.28), transparent 34%),
    linear-gradient(145deg, rgba(15,23,42,.82), rgba(2,6,23,.94));
  box-shadow:0 32px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  isolation:isolate;
}

.local-seo-engine::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg, transparent, rgba(156,255,58,.28), transparent);
  opacity:.55;
  animation:localSeoSweep 7s ease-in-out infinite;
  z-index:-1;
}

.local-seo-engine__grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(circle at center, #000 0 58%, transparent 82%);
  opacity:.55;
}

.local-seo-engine__map{
  position:absolute;
  inset:42px 44px;
  border-radius:24px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.06) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.06) 49% 51%, transparent 52%);
  opacity:.92;
}

.local-seo-engine__pin,
.local-seo-engine__pulse{
  position:absolute;
  border-radius:999px;
}

.local-seo-engine__pin{
  width:16px;
  height:16px;
  background:#9cff3a;
  box-shadow:0 0 0 7px rgba(156,255,58,.12), 0 0 26px rgba(156,255,58,.9);
  animation:localSeoPin 2.4s ease-in-out infinite;
}

.local-seo-engine__pin::after{
  content:"";
  position:absolute;
  left:4px;
  top:4px;
  width:8px;
  height:8px;
  border-radius:inherit;
  background:#07111f;
}

.local-seo-engine__pin--one{left:58%;top:23%}
.local-seo-engine__pin--two{left:28%;top:54%;animation-delay:.45s}
.local-seo-engine__pin--three{left:72%;top:68%;animation-delay:.9s}

.local-seo-engine__pulse{
  width:112px;
  height:112px;
  border:1px solid rgba(156,255,58,.22);
  transform:translate(-50%,-50%);
  animation:localSeoPulse 3.4s ease-out infinite;
}

.local-seo-engine__pulse--one{left:58%;top:23%}
.local-seo-engine__pulse--two{left:28%;top:54%;animation-delay:1.1s}

.local-seo-engine__card{
  position:absolute;
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  background:rgba(6,13,27,.82);
  backdrop-filter:blur(14px);
  box-shadow:0 20px 50px rgba(0,0,0,.28);
  color:#fff;
}

.local-seo-engine__label{
  margin-bottom:8px;
  color:#9fb0c7;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.local-seo-engine__card--profile{
  top:42px;
  left:32px;
  width:210px;
  padding:18px;
  animation:localSeoFloat 5.8s ease-in-out infinite;
}

.local-seo-engine__stars{
  margin:8px 0 12px;
  color:#9cff3a;
  font-size:13px;
  letter-spacing:2px;
}

.local-seo-engine__mini-row{
  display:flex;
  gap:8px;
  margin-top:8px;
}

.local-seo-engine__mini-row span{
  display:block;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
}

.local-seo-engine__mini-row span:first-child{width:54px}
.local-seo-engine__mini-row span:last-child{width:92px}
.local-seo-engine__mini-row--short span:first-child{width:34px}
.local-seo-engine__mini-row--short span:last-child{width:72px}

.local-seo-engine__card--rank{
  top:96px;
  right:32px;
  width:170px;
  padding:16px;
  animation:localSeoFloat 6.6s ease-in-out infinite reverse;
}

.local-seo-engine__rank-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  color:#9fb0c7;
  font-weight:800;
}

.local-seo-engine__rank-row i{
  flex:1;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}

.local-seo-engine__rank-row--active i{background:rgba(37,99,235,.72)}
.local-seo-engine__rank-row--top{
  color:#9cff3a;
  animation:localSeoGlow 2.2s ease-in-out infinite;
}
.local-seo-engine__rank-row--top i{background:linear-gradient(90deg,#2563eb,#9cff3a)}

.local-seo-engine__card--lead{
  right:38px;
  bottom:54px;
  width:190px;
  padding:18px;
  animation:localSeoFloat 5.2s ease-in-out infinite;
}

.local-seo-engine__card--lead strong{
  display:block;
  font-size:42px;
  line-height:1;
  letter-spacing:-.05em;
  color:#9cff3a;
}

.local-seo-engine__card--lead small{
  display:block;
  margin-top:8px;
  color:#cbd5e1;
  line-height:1.4;
}

.local-seo-engine__graph{
  position:absolute;
  left:32px;
  right:32px;
  bottom:54px;
  height:170px;
  opacity:.95;
}

.local-seo-engine__graph svg{
  width:100%;
  height:100%;
}

.local-seo-engine__graph-bg{
  fill:none;
  stroke:rgba(255,255,255,.12);
  stroke-width:10;
  stroke-linecap:round;
}

.local-seo-engine__graph-line{
  fill:none;
  stroke:url(#localSeoLine);
  stroke-width:6;
  stroke-linecap:round;
  stroke-dasharray:430;
  stroke-dashoffset:430;
  animation:localSeoDraw 3s ease-in-out infinite;
  filter:drop-shadow(0 0 12px rgba(156,255,58,.42));
}

.local-seo-engine__search{
  position:absolute;
  left:42px;
  bottom:28px;
  max-width:255px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
}

.local-seo-engine__search span{
  display:block;
  color:#9fb0c7;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.local-seo-engine__search strong{
  display:block;
  margin-top:3px;
  font-size:13px;
}

@keyframes localSeoSweep{
  0%,100%{transform:translateX(-55%) rotate(8deg)}
  50%{transform:translateX(55%) rotate(8deg)}
}

@keyframes localSeoPin{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-5px) scale(1.08)}
}

@keyframes localSeoPulse{
  0%{opacity:.55;transform:translate(-50%,-50%) scale(.55)}
  100%{opacity:0;transform:translate(-50%,-50%) scale(1.55)}
}

@keyframes localSeoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes localSeoGlow{
  0%,100%{filter:brightness(1)}
  50%{filter:brightness(1.35)}
}

@keyframes localSeoDraw{
  0%{stroke-dashoffset:430}
  55%,100%{stroke-dashoffset:0}
}

@media (max-width: 980px){
  .service-page--local-seo-toronto .service-hero__visual{
    min-height:420px;
  }

  .local-seo-engine{
    min-height:400px;
  }
}

@media (max-width: 640px){
  .service-page--local-seo-toronto .service-hero__visual{
    min-height:360px;
  }

  .local-seo-engine{
    min-height:340px;
    border-radius:22px;
  }

  .local-seo-engine__card--profile{
    left:18px;
    top:24px;
    width:185px;
  }

  .local-seo-engine__card--rank{
    right:18px;
    top:118px;
    width:150px;
  }

  .local-seo-engine__card--lead{
    right:18px;
    bottom:38px;
    width:165px;
  }

  .local-seo-engine__card--lead strong{
    font-size:34px;
  }

  .local-seo-engine__graph{
    left:18px;
    right:18px;
    bottom:38px;
  }

  .local-seo-engine__search{
    left:18px;
    bottom:18px;
    max-width:230px;
  }
}

@media (prefers-reduced-motion: reduce){
  .local-seo-engine::before,
  .local-seo-engine__pin,
  .local-seo-engine__pulse,
  .local-seo-engine__card,
  .local-seo-engine__rank-row--top,
  .local-seo-engine__graph-line{
    animation:none!important;
  }

  .local-seo-engine__graph-line{
    stroke-dashoffset:0;
  }
}


/* Process icon fallbacks for city/service pages.
   Keeps icons CSS-only so no extra image/font dependency is required. */
.service-process .process-icon::before,
.service-process--premium .process-icon::before{
  display:block;
  font-weight:800;
  color:currentColor;
  opacity:1;
}

.service-process .process-icon--search::before,
.service-process--premium .process-icon--search::before{content:"⌕"}

.service-process .process-icon--map::before,
.service-process--premium .process-icon--map::before{content:"◆"}

.service-process .process-icon--content::before,
.service-process--premium .process-icon--content::before{content:"▰"}

.service-process .process-icon--authority::before,
.service-process--premium .process-icon--authority::before{content:"✓"}

.service-process .process-icon--review::before,
.service-process--premium .process-icon--review::before{content:"★"}

.service-process .process-icon--analytics::before,
.service-process--premium .process-icon--analytics::before{content:"↗"}

.service-process .process-icon--local::before,
.service-process--premium .process-icon--local::before{content:"◎"}

.service-process .process-icon--conversion::before,
.service-process--premium .process-icon--conversion::before{content:"+"}

.service-process .process-icon--roadmap::before,
.service-process--premium .process-icon--roadmap::before{content:"→"}


/* Shopify SEO Toronto hero animation */
.shopify-seo-visual{
  position:relative;
  width:min(100%,560px);
  min-height:520px;
  margin-left:auto;
  border-radius:34px;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 22% 18%, rgba(156,255,58,.18), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(37,99,235,.26), transparent 34%),
    linear-gradient(145deg, rgba(15,23,42,.92), rgba(2,6,23,.96));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 36px 110px rgba(0,0,0,.34);
}
.shopify-seo-visual__grid{
  position:absolute;
  inset:0;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(circle at 50% 45%, #000, transparent 72%);
}
.shopify-seo-visual__orb{
  position:absolute;
  width:180px;
  height:180px;
  border-radius:999px;
  filter:blur(26px);
  opacity:.5;
  animation:shopifySeoFloat 7s ease-in-out infinite;
}
.shopify-seo-visual__orb--one{left:34px;top:38px;background:rgba(156,255,58,.34)}
.shopify-seo-visual__orb--two{right:24px;bottom:70px;background:rgba(37,99,235,.34);animation-delay:-2.8s}
.shopify-seo-panel{
  position:absolute;
  z-index:2;
  border:1px solid rgba(255,255,255,.13);
  border-radius:24px;
  background:rgba(8,13,26,.76);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
}
.shopify-seo-panel--store{
  left:48px;
  right:48px;
  top:58px;
  padding:18px;
}
.shopify-seo-panel__top{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:18px;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:850;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.shopify-seo-panel__top span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
}
.shopify-seo-panel__top strong{margin-left:auto}
.shopify-seo-product-row{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 44px;
  align-items:center;
  gap:12px;
  margin-top:10px;
  padding:12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  animation:shopifySeoRowPulse 4.8s ease-in-out infinite;
}
.shopify-seo-product-row:nth-child(3){animation-delay:.8s}
.shopify-seo-product-row:nth-child(4){animation-delay:1.6s}
.shopify-seo-product-row i{
  display:block;
  width:42px;
  height:42px;
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(156,255,58,.86), rgba(37,99,235,.62));
  box-shadow:0 0 28px rgba(156,255,58,.24);
}
.shopify-seo-product-row strong{
  display:block;
  color:#fff;
  font-size:13px;
  line-height:1.2;
}
.shopify-seo-product-row span{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.58);
  font-size:12px;
}
.shopify-seo-product-row b{
  display:grid;
  place-items:center;
  min-width:38px;
  height:32px;
  border-radius:999px;
  background:rgba(156,255,58,.12);
  color:#D9F99D;
  font-size:13px;
}
.shopify-seo-card{
  position:absolute;
  z-index:4;
  width:184px;
  padding:17px 18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  background:rgba(8,13,26,.82);
  box-shadow:0 18px 50px rgba(0,0,0,.26);
  backdrop-filter:blur(14px);
  animation:shopifySeoFloat 6.4s ease-in-out infinite;
}
.shopify-seo-card span{
  display:block;
  color:rgba(255,255,255,.62);
  font-size:12px;
  font-weight:800;
}
.shopify-seo-card strong{
  display:block;
  margin:6px 0 2px;
  color:#D9F99D;
  font-size:31px;
  line-height:1;
  letter-spacing:-.05em;
}
.shopify-seo-card small{
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1.35;
}
.shopify-seo-card--traffic{left:28px;bottom:118px}
.shopify-seo-card--conversion{right:26px;bottom:54px;animation-delay:-2.2s}
.shopify-seo-serp{
  position:absolute;
  z-index:3;
  right:34px;
  top:284px;
  width:220px;
  padding:14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(12px);
}
.shopify-seo-serp__query{
  margin-bottom:11px;
  color:rgba(255,255,255,.74);
  font-size:11px;
  font-weight:850;
}
.shopify-seo-serp__result{
  display:grid;
  grid-template-columns:1fr 42px;
  gap:10px;
  align-items:center;
  margin-top:8px;
}
.shopify-seo-serp__result span,
.shopify-seo-serp__result i{
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
}
.shopify-seo-serp__result--one span{background:rgba(156,255,58,.72)}
.shopify-seo-serp__result--one i{background:rgba(37,99,235,.72)}
.shopify-seo-serp__result--two span{width:78%}
.shopify-seo-serp__result--three span{width:58%}
.shopify-seo-graph{
  position:absolute;
  z-index:1;
  left:78px;
  right:52px;
  bottom:34px;
  width:380px;
  max-width:calc(100% - 120px);
  height:auto;
  opacity:.9;
}
.shopify-seo-graph__bg,
.shopify-seo-graph__line{
  fill:none;
  stroke-width:8;
  stroke-linecap:round;
}
.shopify-seo-graph__bg{stroke:rgba(255,255,255,.10)}
.shopify-seo-graph__line{
  stroke:url(#shopifySeoLine);
  stroke-dasharray:430;
  stroke-dashoffset:430;
  animation:shopifySeoDraw 3.8s ease-in-out infinite;
}
.service-process .process-icon--technical::before{content:"⚙"}
.service-process .process-icon--product::before{content:"▣"}
.service-process .process-icon--cart::before{content:"◧"}
.service-process .process-icon--schema::before{content:"◆"}
@keyframes shopifySeoDraw{
  0%,12%{stroke-dashoffset:430}
  52%,100%{stroke-dashoffset:0}
}
@keyframes shopifySeoFloat{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-12px,0)}
}
@keyframes shopifySeoRowPulse{
  0%,100%{border-color:rgba(255,255,255,.08);background:rgba(255,255,255,.045)}
  50%{border-color:rgba(156,255,58,.34);background:rgba(156,255,58,.075)}
}
@media (max-width:900px){
  .shopify-seo-visual{
    min-height:470px;
    margin:24px auto 0;
  }
  .shopify-seo-panel--store{left:22px;right:22px;top:36px}
  .shopify-seo-card--traffic{left:18px;bottom:106px}
  .shopify-seo-card--conversion{right:18px;bottom:42px}
  .shopify-seo-serp{right:22px;top:262px;width:205px}
}
@media (max-width:560px){
  .shopify-seo-visual{
    min-height:520px;
    border-radius:26px;
  }
  .shopify-seo-panel--store{left:16px;right:16px}
  .shopify-seo-product-row{
    grid-template-columns:34px minmax(0,1fr) 36px;
    padding:10px;
  }
  .shopify-seo-product-row i{width:34px;height:34px}
  .shopify-seo-card{width:160px}
  .shopify-seo-card strong{font-size:26px}
  .shopify-seo-card--traffic{left:16px;bottom:130px}
  .shopify-seo-card--conversion{right:16px;bottom:56px}
  .shopify-seo-serp{left:16px;right:16px;top:292px;width:auto}
  .shopify-seo-graph{left:32px;max-width:calc(100% - 64px)}
}
@media (prefers-reduced-motion:reduce){
  .shopify-seo-visual *,
  .shopify-seo-visual *::before,
  .shopify-seo-visual *::after{
    animation:none!important;
    transition:none!important;
  }
  .shopify-seo-graph__line{stroke-dashoffset:0}
}


/* Technical SEO Services hero animation */
.technical-seo-visual{
  position:relative;
  width:min(100%,560px);
  min-height:520px;
  margin-left:auto;
  border-radius:34px;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 24% 18%, rgba(156,255,58,.18), transparent 28%),
    radial-gradient(circle at 76% 26%, rgba(37,99,235,.26), transparent 34%),
    linear-gradient(145deg, rgba(15,23,42,.92), rgba(2,6,23,.97));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 36px 110px rgba(0,0,0,.34);
}
.technical-seo-visual__grid{
  position:absolute;
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(circle at 50% 46%, #000, transparent 72%);
}
.technical-seo-visual__orb{
  position:absolute;
  width:190px;
  height:190px;
  border-radius:999px;
  filter:blur(30px);
  opacity:.5;
  animation:technicalSeoFloat 7.5s ease-in-out infinite;
}
.technical-seo-visual__orb--one{left:28px;top:42px;background:rgba(156,255,58,.34)}
.technical-seo-visual__orb--two{right:18px;bottom:68px;background:rgba(37,99,235,.34);animation-delay:-3s}
.technical-seo-core{
  position:absolute;
  z-index:4;
  left:50%;
  top:50%;
  width:176px;
  height:176px;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:999px;
  border:1px solid rgba(156,255,58,.38);
  background:rgba(8,13,26,.78);
  box-shadow:0 28px 90px rgba(0,0,0,.32),0 0 0 14px rgba(156,255,58,.04);
  backdrop-filter:blur(14px);
}
.technical-seo-core__ring{
  position:absolute;
  inset:-16px;
  border-radius:inherit;
  border:1px solid rgba(156,255,58,.18);
  animation:technicalSeoPulse 3.4s ease-in-out infinite;
}
.technical-seo-core strong{
  color:#fff;
  font-size:20px;
  line-height:1.05;
  max-width:120px;
}
.technical-seo-core small{
  margin-top:8px;
  color:rgba(255,255,255,.62);
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.technical-seo-node{
  position:absolute;
  z-index:3;
  width:168px;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(8,13,26,.76);
  box-shadow:0 24px 70px rgba(0,0,0,.27);
  backdrop-filter:blur(14px);
  animation:technicalSeoNode 5.2s ease-in-out infinite;
}
.technical-seo-node span{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  margin-bottom:12px;
  color:#9cff3a;
  font-size:12px;
  font-weight:900;
  background:rgba(156,255,58,.10);
  border:1px solid rgba(156,255,58,.22);
}
.technical-seo-node strong{
  display:block;
  color:#fff;
  font-size:15px;
  margin-bottom:5px;
}
.technical-seo-node small{
  color:rgba(255,255,255,.58);
  font-size:12px;
  font-weight:750;
}
.technical-seo-node--crawl{left:42px;top:54px}
.technical-seo-node--speed{right:42px;top:48px;animation-delay:-1.2s}
.technical-seo-node--index{left:38px;bottom:54px;animation-delay:-2.4s}
.technical-seo-node--schema{right:42px;bottom:48px;animation-delay:-3.6s}
.technical-seo-links{
  position:absolute;
  z-index:2;
  inset:0;
  width:100%;
  height:100%;
}
.technical-seo-links path{
  fill:none;
  stroke:url(#technicalSeoLine);
  stroke-width:2;
  stroke-linecap:round;
  opacity:.72;
  stroke-dasharray:260;
  stroke-dashoffset:260;
  animation:technicalSeoDraw 4.2s ease-in-out infinite;
}
.technical-seo-links path:nth-child(2){animation-delay:.25s}
.technical-seo-links path:nth-child(3){animation-delay:.5s}
.technical-seo-links path:nth-child(4){animation-delay:.75s}
.technical-seo-panel{
  position:absolute;
  z-index:5;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(8,13,26,.78);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  backdrop-filter:blur(14px);
}
.technical-seo-panel small{
  display:block;
  color:rgba(255,255,255,.58);
  font-size:11px;
  font-weight:850;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.technical-seo-panel--vitals{
  left:50%;
  bottom:22px;
  width:230px;
  padding:14px;
  transform:translateX(-50%);
}
.technical-seo-vital{
  display:grid;
  grid-template-columns:38px 48px 1fr;
  gap:8px;
  align-items:center;
  margin-top:10px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
}
.technical-seo-vital b{
  color:#fff;
  font-size:12px;
}
.technical-seo-vital i{
  display:block;
  height:7px;
  border-radius:99px;
  background:rgba(255,255,255,.09);
  overflow:hidden;
}
.technical-seo-vital i::before{
  content:"";
  display:block;
  width:var(--w);
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#2563eb,#9cff3a);
  animation:technicalSeoBar 3.4s ease-in-out infinite;
}
.technical-seo-panel--console{
  right:22px;
  top:210px;
  width:176px;
  padding:14px;
}
.technical-seo-panel--console strong{
  display:block;
  color:#fff;
  margin-top:8px;
  font-size:14px;
}
.technical-seo-panel--console p{
  margin:6px 0 0;
  color:rgba(255,255,255,.60);
  font-size:12px;
  line-height:1.45;
}
.technical-seo-crawler{
  position:absolute;
  z-index:6;
  left:26px;
  top:234px;
  display:flex;
  gap:7px;
  padding:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  animation:technicalSeoCrawler 6s ease-in-out infinite;
}
.technical-seo-crawler span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#9cff3a;
  box-shadow:0 0 18px rgba(156,255,58,.7);
}
.service-process .process-icon--crawl::before,
.service-process--premium .process-icon--crawl::before{content:"⛓"}
.service-process .process-icon--index::before,
.service-process--premium .process-icon--index::before{content:"⌁"}
.service-process .process-icon--speed::before,
.service-process--premium .process-icon--speed::before{content:"⚡"}
.service-process .process-icon--monitoring::before,
.service-process--premium .process-icon--monitoring::before{content:"◌"}
@keyframes technicalSeoDraw{
  0%,16%{stroke-dashoffset:260;opacity:.2}
  52%,100%{stroke-dashoffset:0;opacity:.78}
}
@keyframes technicalSeoFloat{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-13px,0)}
}
@keyframes technicalSeoPulse{
  0%,100%{transform:scale(.96);opacity:.45}
  50%{transform:scale(1.08);opacity:1}
}
@keyframes technicalSeoNode{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
@keyframes technicalSeoBar{
  0%,20%{transform:scaleX(.35);transform-origin:left}
  58%,100%{transform:scaleX(1);transform-origin:left}
}
@keyframes technicalSeoCrawler{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(52px,12px,0)}
}
@media (max-width: 720px){
  .technical-seo-visual{
    min-height:500px;
    margin:28px auto 0;
  }
  .technical-seo-node{
    width:142px;
    padding:13px;
  }
  .technical-seo-node--crawl{left:18px;top:38px}
  .technical-seo-node--speed{right:18px;top:42px}
  .technical-seo-node--index{left:18px;bottom:68px}
  .technical-seo-node--schema{right:18px;bottom:68px}
  .technical-seo-core{
    width:148px;
    height:148px;
  }
  .technical-seo-panel--console{
    display:none;
  }
  .technical-seo-panel--vitals{
    width:210px;
    bottom:18px;
  }
}
@media (prefers-reduced-motion: reduce){
  .technical-seo-visual *,
  .technical-seo-visual *::before{
    animation:none!important;
  }
}
