/* ============================================================
   ALENOR — Homepage Stylesheet
   Design tokens: Nordic-clean, navy/cyan brand system
   Signature motif: the logo's diagonal slash + dot ("/.")
   ============================================================ */

:root{
  /* ---- Brand colors ---- */
  --navy-950:#00113a;
  --navy-900:#000c2b;
  --navy-800:#031a4d;
  --navy-700:#0a2664;
  --cyan-500:#01c4ff;
  --cyan-400:#4ddcff;
  --cyan-100:#e3f8ff;
  --teal-400:#05e0c4;

  /* ---- Neutrals ---- */
  --ice-50:#f5f9fc;
  --ice-100:#eef3f9;
  --white:#ffffff;
  --slate-900:#0c1830;
  --slate-700:#2c3850;
  --slate-600:#54637d;
  --slate-500:#7688a3;
  --line:#e2e8f4;
  --line-dark:rgba(255,255,255,0.12);

  /* ---- Type ---- */
  --font-display:'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:'Inter', 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --max-w:1240px;
  --pad-section:clamp(64px, 9vw, 128px);
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:24px;

  /* ---- Shadow ---- */
  --shadow-card:0 4px 24px rgba(3, 15, 46, 0.06);
  --shadow-card-hover:0 16px 40px rgba(3, 15, 46, 0.12);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate-700);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--slate-900);
  margin:0;
  letter-spacing:-0.02em;
  line-height:1.12;
}
p{margin:0;}
.container{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 24px;
}
section{padding:var(--pad-section) 0;}
:focus-visible{outline:2px solid var(--cyan-500);outline-offset:3px;}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
  html{scroll-behavior:auto;}
}

/* ---- Signature eyebrow (slash + dot glyph from the logo) ---- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--navy-700);
}
.eyebrow::before{
  content:"";
  width:16px;
  height:2px;
  background:linear-gradient(90deg, var(--cyan-500), var(--teal-400));
  border-radius:2px;
  transform:skewX(-20deg);
}
.eyebrow.on-dark{color:var(--cyan-400);}
.eyebrow.on-dark::before{background:linear-gradient(90deg, var(--cyan-400), var(--teal-400));}

.glyph-dot{
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--cyan-500), var(--teal-400));
  flex:none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  padding:13px 24px;
  border-radius:10px;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn svg{width:16px;height:16px;flex:none;transition:transform .18s ease;}
.btn:hover svg{transform:translateX(3px);}
.btn-primary{
  background:var(--cyan-500);
  color:var(--navy-950);
  box-shadow:0 8px 24px rgba(1,196,255,0.28);
}
.btn-primary:hover{
  background:var(--cyan-400);
  box-shadow:0 10px 30px rgba(1,196,255,0.38);
  transform:translateY(-1px);
}
.btn-ghost-dark{
  background:transparent;
  border-color:rgba(255,255,255,0.28);
  color:var(--white);
}
.btn-ghost-dark:hover{
  border-color:rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.06);
}
.btn-ghost-light{
  background:transparent;
  border-color:var(--line);
  color:var(--navy-950);
}
.btn-ghost-light:hover{
  border-color:var(--navy-950);
}
.btn-sm{padding:10px 18px;font-size:14px;}
.btn-block{width:100%;justify-content:center;}

/* ============================================================
   NAVBAR + MEGA MENU
   ============================================================ */
.navbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 24px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav-left{display:flex;align-items:center;gap:40px;}
.brand{ display: flex;align-items: center;gap: 2px;text-decoration: none;}
.brand img{  height:33px;width: auto;}

.nav-links{display:flex;align-items:center;gap:4px;}
.nav-item{position:relative;}
.nav-link{
  display:flex;
  align-items:center;
  gap:6px;
  padding:14px 14px;
  font-family:var(--font-display);
  font-size:15px;
  font-weight:500;
  color:var(--slate-700);
  border-radius:8px;
  transition:color .15s ease, background .15s ease;
}
.nav-link:hover, .nav-item:focus-within > .nav-link{color:var(--navy-950);background:var(--ice-100);}
.nav-link .chev{width:10px;height:10px;transition:transform .2s ease;flex:none;}
.nav-item:hover .chev, .nav-item:focus-within .chev{transform:rotate(180deg);}

.nav-right{display:flex;align-items:center;gap:12px;}
.nav-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:14px;
  color:var(--slate-700);
  padding:8px 4px;
}
.nav-phone svg{width:16px;height:16px;color:var(--cyan-500);flex:none;}

/* Mega menu panel */
.mega{
  position:absolute;
  top:calc(100% + 8px);
      left: 100%;
  transform:translateX(-50%) translateY(6px);
  min-width:640px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  box-shadow:0 24px 60px rgba(3,15,46,0.14);
  padding:28px;
  opacity:0;
  visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}
.mega-cols{display:grid;grid-template-columns:1fr 1fr;gap:6px 32px;}
.mega-col-title{
  font-family:var(--font-display);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--slate-500);
  margin-bottom:10px;
}
.mega-link{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:9px 10px;
  border-radius:8px;
  transition:background .15s ease;
}
.mega-link:hover{background:var(--ice-100);}
.mega-icon{
  width:34px;height:34px;flex:none;border-radius:8px;
  background:var(--ice-100);
  display:flex;align-items:center;justify-content:center;
  color:var(--navy-950);
}
.mega-link:hover .mega-icon{background:var(--cyan-100);color:var(--navy-950);}
.mega-icon svg{width:17px;height:17px;}
.mega-link-title{font-family:var(--font-display);font-weight:600;font-size:14.5px;color:var(--slate-900);  display: block;}
.mega-link-desc{font-size:12.5px;color:var(--slate-500);margin-top:2px;}

.mega-industries{width:820px;}
.mega-ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px 20px;}
.mega-ind-item{
  padding:8px 10px;
  border-radius:7px;
  font-size:14px;
  font-weight:500;
  color:var(--slate-700);
  transition:background .15s ease, color .15s ease;
}
.mega-ind-item:hover{background:var(--ice-100);color:var(--navy-950);}
.mega-foot{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.mega-foot-text{font-size:13px;color:var(--slate-500);}
.mega-foot-link{
  font-family:var(--font-display);
  font-weight:600;
  font-size:13.5px;
  color:var(--navy-950);
  display:inline-flex;align-items:center;gap:6px;
}
.mega-foot-link svg{width:13px;height:13px;}

/* Mobile nav toggle */
.nav-toggle{display:none;background:none;border:none;padding:8px;}
.nav-toggle svg{width:24px;height:24px;color:var(--navy-950);}

@media (max-width:980px){
  .nav-links{
    display:none;
    position:absolute;
    top:76px;left:0;right:0;
    background:var(--white);
    border-bottom:1px solid var(--line);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:8px 16px 18px;
    max-height:calc(100vh - 76px);
    overflow-y:auto;
    box-shadow:0 16px 30px rgba(3,15,46,0.08);
  }
  .nav-links.mobile-open{display:flex;}
  .nav-phone{display:none;}
  .nav-phone.mobile-open{
    display:flex;
            display: none;
    margin:6px 16px 0;
    padding:12px 4px;
    border-top:1px solid var(--line);
  }
  .nav-toggle{display:block;}
  .nav-right .btn-ghost-light{display:none;}

  /* Nav items become full-width stacked rows, mega turns into an
     inline accordion panel instead of a hover-triggered floating card */
  .nav-item{width:100%;border-bottom:1px solid var(--line);}
  .nav-item:last-child{border-bottom:none;}
  .nav-link{width:100%;justify-content:space-between;padding:16px 6px;}

  .mega,
  .nav-item:hover .mega,
  .nav-item:focus-within .mega{
    position:static;
    transform:none;
    min-width:0;
    width:100%;
    max-width:none;
    box-shadow:none;
    border:none;
    border-radius:0;
    padding:0 0 14px 4px;
    opacity:1;
    visibility:visible;
    display:none;
  }
  .nav-item.mega-open > .mega{display:block;}
  .nav-item.mega-open > .nav-link .chev{transform:rotate(180deg);}

  .mega-cols{grid-template-columns:1fr;gap:4px;}
  .mega-ind-grid{grid-template-columns:1fr 1fr;gap:2px 16px;}
  .mega-industries{width:100%;}
  .mega-foot{flex-direction:column;align-items:flex-start;gap:10px;}
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  background:radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  overflow:hidden;
  padding:96px 0 var(--pad-section);
}
.hero::before{
  /* signature diagonal slash beam, echoing the logo mark */
  content:"";
  position:absolute;
  top:-20%;
  left:-6%;
  width:38%;
  height:150%;
  background:linear-gradient(200deg, rgba(1,196,255,0.16), rgba(5,224,196,0.05) 55%, transparent 75%);
  transform:skewX(-14deg);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:48px;
  align-items:center;
}
.hero-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px;}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.05);
  font-size:13px;
  font-weight:500;
  color:#cbd9f0;
}
.badge .pulse{
  width:7px;height:7px;border-radius:50%;
  background:var(--teal-400);
  box-shadow:0 0 0 0 rgba(5,224,196,0.6);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(5,224,196,0.55);}
  70%{box-shadow:0 0 0 8px rgba(5,224,196,0);}
  100%{box-shadow:0 0 0 0 rgba(5,224,196,0);}
}
.hero h1{
  font-size:clamp(34px, 4.6vw, 58px);
  color:var(--white);
  max-width:640px;
}
.hero h1 .grad{
  background:linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lead{
  margin-top:22px;
  font-size:17px;
  color:#aebedd;
  max-width:520px;
}
.hero-ctas{display:flex;gap:14px;margin-top:34px;flex-wrap:wrap;}
.hero-stack{display:flex;flex-wrap:wrap;gap:10px;margin-top:36px;}
.stack-pill{
  font-family:var(--font-display);
  font-size:12.5px;
  font-weight:600;
  color:#dbe7fb;
  border:1px solid var(--line-dark);
  padding:7px 13px;
  border-radius:8px;
  background:rgba(255,255,255,0.03);
}

/* Hero visual: abstract "coverage map" of cities/dots, tying to the
   real local-SEO positioning rather than a generic blob graphic */
.hero-visual{position:relative;}
.map-card{
  position:relative;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-lg);
  padding:28px;
  backdrop-filter:blur(6px);
}
.map-card-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;}
.map-card-title{font-family:var(--font-display);font-weight:600;color:var(--white);font-size:14px;}
.map-card-sub{font-size:12px;color:#7f93bb;}
.map-svg{width:100%;height:auto;display:block;}
.map-city-label{font-family:var(--font-display);font-size:11px;fill:#c6d6f2;font-weight:600;}
.map-dot-outer{fill:rgba(1,196,255,0.14);}
.map-dot-inner{fill:#4ddcff;}
.map-line{stroke:rgba(77,220,255,0.35);stroke-width:1;stroke-dasharray:3 4;}
.map-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px;padding-top:20px;border-top:1px solid rgba(255,255,255,0.1);}
.map-stat b{display:block;font-family:var(--font-display);font-size:20px;color:var(--white);}
.map-stat span{font-size:11.5px;color:#8296bd;}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip{
  background:var(--ice-50);
  border-bottom:1px solid var(--line);
  padding:36px 0;
}
.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.stat b{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,32px);
  color:var(--navy-950);
}
.stat span{font-size:13px;color:var(--slate-600);}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.sec-head{max-width:640px;margin-bottom:56px;}
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.sec-head h2{font-size:clamp(28px,3.4vw,42px);margin-top:14px;}
.sec-head p{margin-top:16px;font-size:16px;color:var(--slate-600);}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.svc-card{
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:26px 22px;
  background:var(--white);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
  overflow:hidden;
}
.svc-card::after{
  content:"";
  position:absolute;
  right:-30px;top:-30px;
  width:90px;height:90px;
  background:linear-gradient(135deg, var(--cyan-100), transparent 70%);
  border-radius:50%;
  opacity:0;
  transition:opacity .2s ease;
}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
  border-color:transparent;
}
.svc-card:hover::after{opacity:1;}
.svc-icon{
  width:46px;height:46px;
  border-radius:11px;
  background:var(--navy-950);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  position:relative;
  z-index:1;
}
.svc-icon svg{width:22px;height:22px;color:var(--cyan-400);}
.svc-card h3{font-size:17px;position:relative;z-index:1;}
.svc-card p{font-size:14px;color:var(--slate-600);margin-top:9px;position:relative;z-index:1;}
.svc-card .svc-link{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:16px;font-family:var(--font-display);font-weight:600;font-size:13.5px;
  color:var(--navy-950);position:relative;z-index:1;
}
.svc-card .svc-link svg{width:13px;height:13px;transition:transform .18s ease;}
.svc-card:hover .svc-link svg{transform:translateX(3px);}

/* ============================================================
   WHAT WE DO (approach / split section)
   ============================================================ */
.approach{
  background:var(--ice-50);
}
.approach-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.approach-list{margin-top:28px;display:flex;flex-direction:column;gap:20px;}
.approach-item{display:flex;gap:16px;}
.approach-num{
  flex:none;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:700;
  color:var(--navy-950);
  width:34px;height:34px;
  border-radius:9px;
  background:var(--cyan-100);
  display:flex;align-items:center;justify-content:center;
}
.approach-item h4{font-size:16.5px;}
.approach-item p{font-size:14.5px;color:var(--slate-600);margin-top:5px;}
.approach-visual{
  border-radius:var(--radius-lg);
  background:linear-gradient(160deg, var(--navy-950), var(--navy-800));
  padding:32px;
  position:relative;
  overflow:hidden;
}
.approach-visual::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(200deg, rgba(1,196,255,0.14), transparent 60%);
}
.code-window{
  position:relative;
  background:rgba(0,0,0,0.28);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
}
.code-window-bar{
  display:flex;gap:6px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.code-window-bar span{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,0.18);}
.code-window pre{
  margin:0;
  padding:20px;
  font-family:'SFMono-Regular',Consolas,monospace;
  font-size:12.5px;
  line-height:1.8;
  color:#9fd9ff;
  overflow-x:auto;
}
.code-window pre .c1{color:#5f7aa6;}
.code-window pre .c2{color:#4ddcff;}
.code-window pre .c3{color:#05e0c4;}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries{background:var(--white);}
.ind-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.ind-card.ind-extra{display:none;}
.ind-grid.show-all .ind-card.ind-extra{display:flex;}
#ind-toggle svg{transition:transform .2s ease;}
#ind-toggle.is-expanded svg{transform:rotate(180deg);}
.ind-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 16px;
  border:1px solid var(--line);
  border-radius:12px;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.ind-card:hover{border-color:var(--cyan-500);background:var(--cyan-100);transform:translateY(-2px);}
.ind-card .glyph-dot{flex:none;}
.ind-card-text b{display:block;font-family:var(--font-display);font-size:14.5px;color:var(--slate-900);font-weight:600;}
.ind-card-text span{font-size:12px;color:var(--slate-500);}
.ind-more{
  margin-top:28px;
  text-align:center;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process{background:var(--navy-950);position:relative;overflow:hidden;}
.process::before{
  content:"";position:absolute;top:0;right:-10%;width:50%;height:100%;
  background:radial-gradient(circle at center, rgba(1,196,255,0.12), transparent 65%);
}
.process .sec-head h2, .process .sec-head p{color:var(--white);}
.process .sec-head p{color:#aebedd;}
.process-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.p-step{
  padding:0 22px 0 0;
  position:relative;
}
.p-step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:20px;right:0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(1,196,255,0.5), transparent);
}
.p-step-num{
  font-family:var(--font-display);
  font-size:13px;
  font-weight:700;
  color:var(--navy-950);
  background:linear-gradient(135deg, var(--cyan-500), var(--teal-400));
  width:40px;height:40px;
  border-radius:11px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  position:relative;
  z-index:1;
}
.p-step h4{color:var(--white);font-size:17px;}
.p-step p{color:#95a8cc;font-size:14px;margin-top:8px;}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about-flags{display:flex;gap:10px;margin-top:24px;}
.flag-chip{
  display:flex;align-items:center;gap:9px;
  padding:10px 15px;
  border:1px solid var(--line);
  border-radius:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:13.5px;
}
.about-points{margin-top:26px;display:flex;flex-direction:column;gap:14px;}
.about-point{display:flex;gap:12px;align-items:flex-start;}
.about-point svg{width:19px;height:19px;color:var(--cyan-500);flex:none;margin-top:2px;}
.about-point p{font-size:14.5px;color:var(--slate-700);}
.about-visual{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--ice-50);
  padding:36px;
}
.about-card-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.about-mini-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px;
}
.about-mini-card b{display:block;font-family:var(--font-display);font-size:22px;color:var(--navy-950);}
.about-mini-card span{font-size:12.5px;color:var(--slate-500);}
.about-quote{
  margin-top:16px;
  padding:20px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  font-size:14px;
  color:var(--slate-700);
  font-style:italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{background:var(--ice-50);}
.t-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.t-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:26px;
}
.t-stars{display:flex;gap:3px;margin-bottom:16px;}
.t-stars svg{width:15px;height:15px;color:var(--cyan-500);}
.t-quote{font-size:14.5px;color:var(--slate-700);line-height:1.7;}
.t-person{display:flex;align-items:center;gap:12px;margin-top:20px;}
.t-avatar{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg, var(--navy-950), var(--cyan-500));
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-family:var(--font-display);font-weight:700;font-size:13px;
}
.t-person b{display:block;font-size:13.5px;font-family:var(--font-display);}
.t-person span{font-size:12px;color:var(--slate-500);}
.t-note{
  margin-top:28px;
  text-align:center;
  font-size:12.5px;
  color:var(--slate-500);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{max-width:800px;margin:0 auto;}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 4px;
  background:none;border:none;
  text-align:left;
  font-family:var(--font-display);
  font-weight:600;
  font-size:16px;
  color:var(--slate-900);
}
.faq-q svg{width:18px;height:18px;flex:none;transition:transform .2s ease;color:var(--slate-500);}
.faq-item.is-open .faq-q svg{transform:rotate(45deg);color:var(--cyan-500);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-a p{padding:0 4px 22px;font-size:14.5px;color:var(--slate-600);max-width:680px;}
.faq-item.is-open .faq-a{max-height:220px;}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final{
  background:linear-gradient(120deg, var(--navy-950), var(--navy-700));
  border-radius:var(--radius-lg);
  padding:56px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:32px;
  align-items:center;
  position:relative;
  overflow:hidden;
  margin:0 24px;
}
.cta-final::before{
  content:"";
  position:absolute;
  right:-8%;top:-40%;
  width:50%;height:180%;
  background:linear-gradient(200deg, rgba(1,196,255,0.18), transparent 60%);
  transform:skewX(-14deg);
}
.cta-final h2{color:var(--white);font-size:clamp(24px,3vw,32px);position:relative;}
.cta-final p{color:#b7c6e6;margin-top:12px;font-size:15px;position:relative;}
.cta-final-form{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  padding:24px;
  position:relative;
}
.cta-final-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px;}

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
}
.contact-row{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line);}
.contact-row:last-child{border-bottom:none;}
.contact-row svg{width:19px;height:19px;color:var(--cyan-500);flex:none;margin-top:2px;}
.contact-row b{display:block;font-family:var(--font-display);font-size:14.5px;}
.contact-row span{font-size:13.5px;color:var(--slate-600);}
.map-embed{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  min-height:320px;
}
.map-embed iframe{width:100%;height:100%;min-height:320px;border:0;display:block;}
.form-field{margin-bottom:14px;}
.form-field label{display:block;font-size:12.5px;font-weight:600;  color: #f1f5fb;;margin-bottom:6px;font-family:var(--font-display);}
.form-field input, .form-field textarea, .form-field select{
  width:100%;
  padding:12px 14px;
  border-radius:9px;
  border:1px solid var(--line);
  font-family:var(--font-body);
  font-size:14px;
  background:var(--white);
  color:var(--slate-900);
}
.form-field input:focus, .form-field textarea:focus{border-color:var(--cyan-500);outline:none;}

/* ============================================================
   FOOTER
   ============================================================ */
footer{background:var(--navy-950);color:#93a6c8;padding:72px 0 28px;}
.foot-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.foot-brand p{font-size:13.5px;margin-top:16px;max-width:280px;color:#8296bd;}
.foot-col-title{font-family:var(--font-display);color:var(--white);font-size:13.5px;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:16px;}
.foot-col a, .foot-col span{display:block;font-size:13.5px;color:#93a6c8;padding:6px 0;}
.foot-col a:hover{color:var(--cyan-400);}
.foot-social{display:flex;gap:10px;margin-top:18px;}
.foot-social a{
  width:34px;height:34px;border-radius:9px;
  background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
}
.foot-social a:hover{background:var(--cyan-500);color:var(--navy-950);}
.foot-social svg{width:15px;height:15px;}
.foot-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  font-size:12.5px;
  flex-wrap:wrap;
  gap:12px;
}
.foot-bottom a{color:#93a6c8;}
.foot-bottom a:hover{color:var(--cyan-400);}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .ind-grid{grid-template-columns:repeat(2,1fr);}
  .process-steps{grid-template-columns:repeat(2,1fr);row-gap:36px;}
  .p-step:nth-child(2)::after{display:none;}
  .t-grid{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:repeat(2,1fr);row-gap:20px;}
}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{margin-top:20px;}
  .approach-grid, .about-grid{grid-template-columns:1fr;}
  .approach-visual{order:-1;}
  .cta-final{grid-template-columns:1fr;padding:36px;margin:0 16px;}
  .contact-grid{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr 1fr;row-gap:32px;}
}
@media (max-width:640px){
  .mega-ind-grid{grid-template-columns:1fr;}
  .services-grid, .ind-grid{grid-template-columns:1fr;}
  .process-steps{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr;}
  .hero-ctas{flex-direction:column;}
  .hero-ctas .btn{width:100%;justify-content:center;}
}




/* services */
/* ============================================================
   SERVICES PAGE – specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.services-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1,196,255,0.16), rgba(5,224,196,0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.services-hero .container {
  position: relative;
}
.services-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.services-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 540px;
}
.services-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---- Full service cards ---- */
.services-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.svc-card-large {
  display: flex;
  gap: 22px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.svc-card-large-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.svc-card-large-icon svg {
  width: 24px;
  height: 24px;
}
.svc-card-large h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.svc-card-large p {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 12px;
}
.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 14px;
  padding: 0;
  list-style: none;
}
.svc-features li {
  font-size: 12.5px;
  color: var(--slate-600);
  position: relative;
  padding-left: 14px;
}
.svc-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cyan-500);
}
.svc-card-large .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-950);
}
.svc-card-large .svc-link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.18s ease;
}
.svc-card-large:hover .svc-link svg {
  transform: translateX(3px);
}

/* ---- Responsive tweaks ---- */
@media (max-width: 900px) {
  .services-grid-full {
    grid-template-columns: 1fr;
  }
  .svc-card-large {
    flex-direction: column;
    align-items: flex-start;
  }
  .svc-card-large-icon {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .services-hero .hero-ctas {
    flex-direction: column;
  }
  .services-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .svc-card-large {
    padding: 20px;
  }
  .svc-features {
    flex-direction: column;
    gap: 4px;
  }
}

/* webapp services */
/* ============================================================
   WEB APP DEVELOPMENT – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid (features) ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Custom (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* shopify code */
/* ============================================================
   SHOPIFY DEVELOPMENT – Detail page styles
   ============================================================ */

/* ---- Hero (same as web-app, kept consistent) ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Shopify (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}


/* ============================================================
   WORDPRESS DEVELOPMENT – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why WordPress (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}

/* ============================================================
   SERVER ADMINISTRATION – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Server Admin (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* ============================================================
   AI AUTOMATION – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Automation (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* ============================================================
   SEO – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why SEO (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* ============================================================
   GRAPHIC DESIGN – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Graphic Design (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* ============================================================
   VIDEO EDITING – Detail page styles
   ============================================================ */

/* ---- Hero ---- */
.detail-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.detail-hero .container {
  position: relative;
}
.detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.detail-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.detail-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.detail-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.detail-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Build Grid ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.build-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan-400);
}
.build-icon svg {
  width: 24px;
  height: 24px;
}
.build-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.build-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Tech Stack ---- */
.tech-stack {
  background: var(--ice-50);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.tech-pill {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.tech-pill:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}

/* ---- Why Video (benefits) ---- */
.why-custom {
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 8px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-num {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
}
.benefit-item h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Process Simple ---- */
.process-simple {
  background: var(--ice-50);
}
.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.simple-steps > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--cyan-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
}
.simple-steps h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.simple-steps p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .detail-hero .hero-ctas {
    flex-direction: column;
  }
  .detail-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .simple-steps {
    grid-template-columns: 1fr;
  }
  .tech-pills {
    gap: 8px;
  }
  .tech-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
}
/* ============================================================
   INDUSTRIES PAGE – Specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.industries-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.industries-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industries-hero .container {
  position: relative;
}
.industries-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industries-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industries-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industries-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industries-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industries-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Industry Controls (search + filter) ---- */
.industry-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 28px;
  align-items: center;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--slate-500);
}
.search-wrap input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--slate-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(1, 196, 255, 0.15);
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-600);
  transition: all 0.15s ease;
  cursor: pointer;
}
.filter-tag:hover {
  border-color: var(--cyan-500);
  color: var(--navy-950);
}
.filter-tag.active {
  border-color: var(--cyan-500);
  background: var(--cyan-500);
  color: var(--navy-950);
}

/* ---- Industry Grid ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  cursor: default;
}
.ind-card:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
  transform: translateY(-2px);
}
.ind-card .glyph-dot {
  flex: none;
}
.ind-card-text b {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--slate-900);
  font-weight: 600;
}
.ind-card-text span {
  font-size: 12px;
  color: var(--slate-500);
}

/* ---- Industry Stats ---- */
.industry-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy-950);
}
.stat-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
}

/* ---- Approach Steps ---- */
.industry-approach {
  background: var(--ice-50);
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.approach-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.step-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.approach-step h4 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.approach-step p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Case Study ---- */
.case-study {
  background: var(--white);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--ice-50);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }
  .industry-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
  .industry-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-tags {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .industries-hero .hero-ctas {
    flex-direction: column;
  }
  .industries-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .industry-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 16px;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .filter-tags {
    gap: 6px;
  }
  .filter-tag {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* ============================================================
   CONSTRUCTION COMPANIES – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.construction-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Construction Services ---- */
.construction-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   CLEANING COMPANIES – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.cleaning-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   ACCOUNTING FIRMS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.accounting-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   PHYSIOTHERAPISTS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.physio-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   RESTAURANTS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.restaurant-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   BEAUTY SALONS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.beauty-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   TRAVEL AGENCIES – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.travel-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   DENTISTS & CLINICS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.dental-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   HAIR SALONS & BARBERS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hair-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   REAL ESTATE AGENCIES – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.realestate-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   ELECTRICIANS & LVI – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.electrician-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   LAW FIRMS – Industry detail page styles
   ============================================================ */

/* ---- Hero ---- */
.industry-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.law-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
}
.industry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.industry-hero .container {
  position: relative;
}
.industry-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.industry-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.industry-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.industry-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.industry-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Challenge Grid ---- */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.challenge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.challenge-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.challenge-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.challenge-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Industry Services ---- */
.industry-services {
  background: var(--ice-50);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.service-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.service-icon svg {
  width: 18px;
  height: 18px;
}
.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Keyword Section ---- */
.keyword-section {
  background: var(--white);
}
.keyword-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.keyword-tag {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.keyword-tag:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.keyword-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.keyword-stat {
  padding: 24px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}
.ks-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-950);
}
.ks-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Case Study ---- */
.case-study {
  background: var(--ice-50);
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: var(--white);
}
.case-card h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}
.case-card p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 500px;
  margin-bottom: 20px;
}
.case-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-left: 2px solid var(--line);
}
.case-meta span {
  font-size: 13px;
  color: var(--slate-600);
}
.case-meta b {
  display: block;
  font-family: var(--font-display);
  color: var(--slate-900);
  font-size: 14px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .keyword-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px;
  }
  .case-card p {
    max-width: 100%;
  }
  .case-meta {
    border-left: none;
    border-top: 2px solid var(--line);
    padding: 16px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (max-width: 640px) {
  .industry-hero .hero-ctas {
    flex-direction: column;
  }
  .industry-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 20px;
  }
  .case-card h3 {
    font-size: 20px;
  }
  .keyword-tags {
    gap: 8px;
  }
  .keyword-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   COMPANY PAGE – Specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.company-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.company-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.company-hero .container {
  position: relative;
}
.company-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.company-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.company-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.company-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.company-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.company-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Story ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.story-stat {
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}
.story-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-950);
}
.story-stat span {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 4px;
  display: block;
}

/* ---- Values ---- */
.values-section {
  background: var(--ice-50);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.value-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.value-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Team ---- */
.team-section {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.team-card h4 {
  font-size: 17px;
  margin-bottom: 2px;
}
.team-role {
  font-size: 12.5px;
  color: var(--cyan-500);
  font-weight: 600;
  font-family: var(--font-display);
  display: block;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-bottom: 12px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.team-social a:hover {
  border-color: var(--cyan-500);
  color: var(--navy-950);
  background: var(--cyan-100);
}
.team-social svg {
  width: 14px;
  height: 14px;
}

/* ---- Process (Company version) ---- */
.process-company {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}
.process-company::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(1, 196, 255, 0.12), transparent 65%);
  pointer-events: none;
}
.process-steps-company {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.p-step-company {
  padding: 0 22px 0 0;
  position: relative;
}
.p-step-company:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 196, 255, 0.5), transparent);
}
.p-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-400));
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.p-step-company h4 {
  color: var(--white);
  font-size: 17px;
}
.p-step-company p {
  color: #95a8cc;
  font-size: 14px;
  margin-top: 8px;
}

/* ---- Why Choose ---- */
.why-choose {
  background: var(--ice-50);
}
.benefits-grid-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 8px;
}
.benefit-item-company {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.benefit-item-company:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
  transform: translateY(-2px);
}
.benefit-icon {
  font-size: 28px;
  flex: none;
}
.benefit-item-company h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.benefit-item-company p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Testimonials (Company version) ---- */
.testimonials-company {
  background: var(--white);
}
.t-grid-company {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.t-card-company {
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.t-stars svg {
  width: 15px;
  height: 15px;
  color: var(--cyan-500);
}
.t-quote {
  font-size: 14.5px;
  color: var(--slate-700);
  line-height: 1.7;
  font-style: italic;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex: none;
}
.t-person b {
  display: block;
  font-size: 13.5px;
  font-family: var(--font-display);
}
.t-person span {
  font-size: 12px;
  color: var(--slate-500);
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-stats {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid-company {
    grid-template-columns: 1fr;
  }
  .t-grid-company {
    grid-template-columns: 1fr;
  }
  .process-steps-company {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .p-step-company:nth-child(2)::after {
    display: none;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .company-hero .hero-ctas {
    flex-direction: column;
  }
  .company-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .story-stats {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid-company {
    grid-template-columns: 1fr;
  }
  .process-steps-company {
    grid-template-columns: 1fr;
  }
  .p-step-company::after {
    display: none !important;
  }
  .t-grid-company {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   ABOUT US PAGE – Specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.about-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.about-hero .container {
  position: relative;
}
.about-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.about-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.about-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.about-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Stats Strip ---- */
.stats-strip-about {
  background: var(--ice-50);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.stats-row-about {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-about b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--navy-950);
}
.stat-about span {
  font-size: 12.5px;
  color: var(--slate-600);
}

/* ---- Story ---- */
.story-section {
  background: var(--white);
  padding: var(--pad-section) 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-text p {
  max-width: 560px;
}
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-item {
  padding: 18px 22px;
  border-left: 3px solid var(--cyan-500);
  background: var(--ice-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--cyan-500);
  background: var(--cyan-100);
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.timeline-item p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Mission ---- */
.mission-section {
  background: var(--ice-50);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.mission-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}
.mission-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.mission-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Values (About version) ---- */
.values-section-about {
  background: var(--white);
}
.values-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.value-card-about {
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.value-card-about h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.value-card-about p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Team (About version) ---- */
.team-section-about {
  background: var(--ice-50);
}
.team-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.team-card-about {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.team-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.team-avatar-about {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.team-card-about h4 {
  font-size: 17px;
  margin-bottom: 2px;
}
.team-role-about {
  font-size: 12.5px;
  color: var(--cyan-500);
  font-weight: 600;
  font-family: var(--font-display);
  display: block;
  margin-bottom: 10px;
}
.team-card-about p {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-bottom: 12px;
}
.team-social-about {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-social-about a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.team-social-about a:hover {
  border-color: var(--cyan-500);
  color: var(--navy-950);
  background: var(--cyan-100);
}
.team-social-about svg {
  width: 14px;
  height: 14px;
}

/* ---- Process (About version) ---- */
.process-about {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}
.process-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(1, 196, 255, 0.12), transparent 65%);
  pointer-events: none;
}
.process-steps-about {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.p-step-about {
  padding: 0 22px 0 0;
  position: relative;
}
.p-step-about:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 196, 255, 0.5), transparent);
}
.p-step-num-about {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-400));
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.p-step-about h4 {
  color: var(--white);
  font-size: 17px;
}
.p-step-about p {
  color: #95a8cc;
  font-size: 14px;
  margin-top: 8px;
}

/* ---- Why Choose (About version) ---- */
.why-choose-about {
  background: var(--white);
}
.benefits-grid-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 8px;
}
.benefit-item-about {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.benefit-item-about:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
  transform: translateY(-2px);
}
.benefit-icon-about {
  font-size: 28px;
  flex: none;
}
.benefit-item-about h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.benefit-item-about p {
  font-size: 13.5px;
  color: var(--slate-600);
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .team-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row-about {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-text p {
    max-width: 100%;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid-about {
    grid-template-columns: 1fr;
  }
  .process-steps-about {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .p-step-about:nth-child(2)::after {
    display: none;
  }
  .team-grid-about {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-hero .hero-ctas {
    flex-direction: column;
  }
  .about-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .values-grid-about {
    grid-template-columns: 1fr;
  }
  .team-grid-about {
    grid-template-columns: 1fr;
  }
  .benefits-grid-about {
    grid-template-columns: 1fr;
  }
  .process-steps-about {
    grid-template-columns: 1fr;
  }
  .p-step-about::after {
    display: none !important;
  }
  .stats-row-about {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-about b {
    font-size: 20px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   HOW WE WORK PAGE – Specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.process-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.process-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.process-hero .container {
  position: relative;
}
.process-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 720px;
  margin-top: 14px;
}
.process-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 600px;
}
.process-hero .hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.process-hero .hero-ctas .btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.process-hero .hero-ctas .btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ---- Process Overview ---- */
.process-overview {
  background: var(--white);
}
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}
.process-step-large {
  display: flex;
  gap: 32px;
  padding: 32px 36px;
  background: var(--ice-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.process-step-large:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.step-number {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-950);
}
.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.step-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.step-tag {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--cyan-500);
  background: var(--cyan-100);
  padding: 3px 12px;
  border-radius: 20px;
}
.step-content p {
  font-size: 15px;
  color: var(--slate-600);
  max-width: 560px;
  margin-bottom: 14px;
}
.step-deliverables {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.step-deliverables li {
  font-size: 13.5px;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.step-deliverables li span {
  color: var(--cyan-500);
  font-weight: 700;
}

/* ---- Timeline Visual ---- */
.timeline-section {
  background: var(--ice-50);
  padding: 48px 0 64px;
}
.timeline-visual {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.timeline-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 20px 0 0;
}
.timeline-bar::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--teal-400), var(--cyan-500));
  border-radius: 2px;
}
.timeline-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.phase-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.phase-duration {
  font-size: 12px;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.phase-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--cyan-500);
  z-index: 1;
}
.timeline-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--slate-500);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ---- Methodology ---- */
.methodology-section {
  background: var(--white);
}
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.methodology-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.methodology-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.method-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.methodology-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.methodology-card p {
  font-size: 14px;
  color: var(--slate-600);
}

/* ---- Communication ---- */
.communication-section {
  background: var(--ice-50);
}
.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.comm-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comm-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.comm-icon {
  font-size: 22px;
  flex: none;
}
.comm-list li b {
  display: block;
  font-size: 14.5px;
}
.comm-list li p {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-top: 1px;
}
.comm-visual {
  display: flex;
  justify-content: center;
}
.comm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-card);
}
.comm-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ice-50);
}
.comm-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.comm-project {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
}
.comm-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comm-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.comm-message.client {
  flex-direction: row-reverse;
}
.comm-message.client .comm-bubble {
  background: var(--navy-950);
  color: var(--white);
}
.comm-message.client .comm-bubble .comm-name {
  color: var(--cyan-400);
}
.comm-message.client .comm-bubble .comm-time {
  color: #95a8cc;
}
.comm-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--white);
  flex: none;
}
.comm-bubble {
  background: var(--ice-50);
  padding: 10px 14px;
  border-radius: 10px;
  border-top-left-radius: 0;
  max-width: 80%;
}
.comm-message.client .comm-bubble {
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
}
.comm-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-900);
  display: block;
  margin-bottom: 2px;
}
.comm-bubble p {
  font-size: 13.5px;
  color: inherit;
}
.comm-time {
  font-size: 10px;
  color: var(--slate-400);
  display: block;
  margin-top: 4px;
}
.comm-card-footer {
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  background: var(--ice-50);
}
.comm-label {
  font-size: 12px;
  color: var(--slate-500);
}

/* ---- Quality Assurance ---- */
.qa-section {
  background: var(--white);
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.qa-item {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ice-50);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.qa-item:hover {
  transform: translateY(-2px);
  border-color: var(--cyan-500);
}
.qa-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
.qa-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.qa-item p {
  font-size: 13px;
  color: var(--slate-600);
}

/* ---- Post-Launch Support ---- */
.support-section {
  background: var(--ice-50);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.support-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 16px;
}
.support-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.support-feature span {
  font-size: 22px;
  flex: none;
}
.support-feature b {
  display: block;
  font-size: 14px;
}
.support-feature p {
  font-size: 12.5px;
  color: var(--slate-600);
  margin-top: 1px;
}
.support-cta {
  display: flex;
  align-items: center;
  height: 100%;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  width: 100%;
}
.support-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.support-card p {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 20px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .process-step-large {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    flex: none;
  }
  .step-deliverables {
    grid-template-columns: 1fr;
  }
  .comm-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .qa-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .timeline-bar::before {
    display: none;
  }
  .timeline-phase {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
  .phase-dot {
    order: -1;
  }
}

@media (max-width: 640px) {
  .process-hero .hero-ctas {
    flex-direction: column;
  }
  .process-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .process-step-large {
    padding: 20px;
  }
  .qa-grid {
    grid-template-columns: 1fr;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .comm-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-features {
    grid-template-columns: 1fr;
  }
  .support-card {
    padding: 24px 20px;
  }
  .timeline-phase {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ============================================================
   CONTACT PAGE – Specific overrides & enhancements
   ============================================================ */

/* ---- Hero ---- */
.contact-hero {
  background: radial-gradient(1100px 620px at 18% 0%, #051e5c 0%, var(--navy-950) 46%, var(--navy-900) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -6%;
  width: 38%;
  height: 150%;
  background: linear-gradient(200deg, rgba(1, 196, 255, 0.16), rgba(5, 224, 196, 0.05) 55%, transparent 75%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
}
.contact-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  color: var(--white);
  max-width: 640px;
  margin-top: 14px;
}
.contact-hero h1 .grad {
  background: linear-gradient(96deg, var(--cyan-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-hero .lead {
  margin-top: 18px;
  font-size: 17px;
  color: #aebedd;
  max-width: 500px;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--white);
  padding: var(--pad-section) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--slate-600);
  margin-bottom: 28px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--ice-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-item:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
}
.contact-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-500);
  border: 1px solid var(--line);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-item label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 2px;
}
.contact-item a,
.contact-item span {
  display: block;
  font-size: 14.5px;
  color: var(--slate-900);
}
.contact-item a:hover {
  color: var(--cyan-500);
}
.contact-item span {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 2px;
}

/* Social Links */
.contact-social label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--slate-700);
  display: block;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.social-link:hover {
  border-color: var(--cyan-500);
  color: var(--navy-950);
  background: var(--cyan-100);
  transform: translateY(-2px);
}
.social-link svg {
  width: 18px;
  height: 18px;
}

/* ---- Contact Form ---- */
.contact-form-wrapper {
  position: relative;
}
.form-card {
  background: var(--ice-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  box-shadow: var(--shadow-card);
}
.form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.form-card > p {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 22px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--slate-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--slate-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(1, 196, 255, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-600);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--cyan-500);
  cursor: pointer;
}
.checkbox-label a {
  color: var(--cyan-500);
  text-decoration: underline;
}
.checkbox-label a:hover {
  color: var(--navy-950);
}
.form-status {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: #e6f7e6;
  color: #1a7a1a;
  border: 1px solid #b2e0b2;
}
.form-status.error {
  display: block;
  background: #fde8e8;
  color: #a11a1a;
  border: 1px solid #f5c2c2;
}

/* ---- Map ---- */
.map-section {
  background: var(--ice-50);
  padding: 0 0 var(--pad-section) 0;
}
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(3, 15, 46, 0.12);
  max-width: 260px;
}
.map-overlay .map-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-500);
  display: block;
  margin-bottom: 2px;
}
.map-overlay p {
  font-size: 14px;
  color: var(--slate-700);
  margin-bottom: 10px;
  line-height: 1.5;
}
.map-overlay .btn {
  font-size: 12px;
  padding: 8px 16px;
}
.map-overlay .btn svg {
  width: 12px;
  height: 12px;
}

/* ---- FAQ ---- */
#faq {
  background: var(--white);
  padding: var(--pad-section) 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-900);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
  color: var(--slate-500);
}
.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
  color: var(--cyan-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  max-width: 680px;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}
.faq-a a {
  color: var(--cyan-500);
  font-weight: 500;
}
.faq-a a:hover {
  color: var(--navy-950);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    order: 2;
  }
  .contact-form-wrapper {
    order: 1;
  }
  .form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .contact-hero .hero-ctas {
    flex-direction: column;
  }
  .contact-hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .contact-item {
    padding: 14px 16px;
  }
  .contact-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }
  .contact-icon svg {
    width: 17px;
    height: 17px;
  }
  .form-card {
    padding: 20px 16px;
  }
  .map-wrapper iframe {
    height: 280px;
  }
  .map-overlay {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 16px 18px;
  }
  .map-overlay p {
    font-size: 13px;
  }
  .form-group.checkbox {
    flex-direction: column;
  }
}


