:root{
  --ink:#10151D;
  --ink-soft:#171F2B;
  --ink-deep:#0B0F15;
  --paper:#FBFAF7;
  --paper-dim:#F1EDE3;
  --brass:#C88A34;
  --brass-bright:#F0A93C;
  --gold:#FFC65C;
  --rust:#D2652E;
  --steel:#5B6B79;
  --steel-light:#94A0AC;
  --line: rgba(21,27,36,0.10);
  --line-strong: rgba(21,27,36,0.16);
  --line-dark: rgba(251,250,247,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px -2px rgba(10,13,18,0.10);
  --shadow-md: 0 16px 40px -10px rgba(10,13,18,0.22);
  --shadow-lg: 0 30px 80px -20px rgba(10,13,18,0.38);
  --shadow-glow: 0 0 0 1px rgba(240,169,60,0.2), 0 24px 60px -12px rgba(240,169,60,0.35);
  --ease: cubic-bezier(.16,1,.3,1);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'IBM Plex Sans','Segoe UI',Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3{
  font-family:'Space Grotesk','Arial Black',sans-serif;
  letter-spacing:-0.02em;
  line-height:1.02;
  font-weight:700;
}
.mono{ font-family:'IBM Plex Mono','Courier New',monospace; letter-spacing:0.03em; }
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1260px; margin:0 auto; padding:0 28px;}
section{padding:120px 0;}
@media(max-width:768px){ section{padding:72px 0;} .wrap{padding:0 20px;} }
::selection{ background:var(--brass-bright); color:var(--ink); }

/* ============ SCROLL REVEAL ============ */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-left{ opacity:0; transform:translateX(-40px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in{ opacity:1; transform:translateX(0); }
.reveal-right{ opacity:0; transform:translateX(40px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.in{ opacity:1; transform:translateX(0); }
.reveal-scale{ opacity:0; transform:scale(.92); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.stagger > *{ transition-delay:calc(var(--i, 0) * 100ms); }
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; } *{ animation:none !important; transition-duration:.01ms !important; }
}

/* ============ NAV ============ */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,247,0.7);
  backdrop-filter:blur(18px) saturate(180%);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
header.scrolled{ box-shadow:0 8px 30px -10px rgba(10,13,18,0.15); border-color:var(--line); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:18px 28px; }
.logo{ font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:20px; display:flex; align-items:center; gap:11px; min-width:0; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; flex-shrink:1; }
.header-inner > .header-cta, .header-inner > .hamburger{ flex-shrink:0; }
.logo img{ width:34px; height:34px; border-radius:50%; flex-shrink:0; transition:transform .4s var(--ease); }
.logo:hover img{ transform:rotate(-12deg) scale(1.08); }
nav{ display:flex; align-items:center; gap:32px; }
nav a{ font-size:14.5px; font-weight:600; color:var(--steel); position:relative; padding:4px 2px; }
nav a::after{ content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:linear-gradient(90deg,var(--brass),var(--gold)); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
nav a:hover, nav a.active{ color:var(--ink); }
nav a:hover::after, nav a.active::after{ transform:scaleX(1); }
.header-cta{ display:flex; align-items:center; gap:14px; }
@media(max-width:900px){ nav{ display:none; } }
@media(max-width:560px){ .header-cta .btn-primary{ display:none; } }

/* ============ HAMBURGER + MOBILE NAV DRAWER ============ */
.hamburger{
  display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--line-strong);
  background:#fff; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
  -webkit-tap-highlight-color:transparent; margin-left:6px;
}
@media(max-width:900px){ .hamburger{ display:flex; } }
.hamburger .bars{ width:20px; height:14px; position:relative; }
.hamburger .bars span{
  position:absolute; left:0; width:100%; height:2px; border-radius:2px;
  background:linear-gradient(90deg,var(--brass),var(--brass-bright));
  transition:transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.hamburger .bars span:nth-child(1){ top:0; }
.hamburger .bars span:nth-child(2){ top:6px; }
.hamburger .bars span:nth-child(3){ top:12px; }
.hamburger.open .bars span:nth-child(1){ top:6px; transform:rotate(45deg); }
.hamburger.open .bars span:nth-child(2){ opacity:0; }
.hamburger.open .bars span:nth-child(3){ top:6px; transform:rotate(-45deg); }

.mobile-nav{
  display:none; position:fixed; inset:0; z-index:80; background:rgba(11,15,21,0.55);
  opacity:0; transition:opacity .35s var(--ease); backdrop-filter:blur(3px);
}
.mobile-nav.open{ display:block; opacity:1; }
.mobile-nav-panel{
  position:absolute; top:0; right:0; bottom:0; width:min(86vw,360px);
  background:var(--paper); box-shadow:-20px 0 50px -10px rgba(10,13,18,0.4);
  padding:24px 26px 32px; display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .4s var(--ease);
  overflow-y:auto;
}
.mobile-nav.open .mobile-nav-panel{ transform:translateX(0); }
.mobile-nav-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
.mobile-nav-head .logo img{ width:30px; height:30px; }
.mobile-nav-close{
  width:40px; height:40px; border-radius:12px; border:1px solid var(--line-strong); background:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; -webkit-tap-highlight-color:transparent;
}
.mobile-nav-close svg{ width:18px; height:18px; }
.mobile-nav-links{ display:flex; flex-direction:column; }
.mobile-nav-links a{
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:20px; color:var(--ink);
  padding:16px 4px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between;
}
.mobile-nav-links a.active{ color:var(--brass); }
.mobile-nav-links a svg{ width:18px; height:18px; opacity:.4; }
.mobile-nav .header-cta{ flex-direction:column; align-items:stretch; margin-top:26px; gap:12px; }
.mobile-nav .header-cta .btn{ width:100%; display:flex; }
body.nav-open{ overflow:hidden; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:16px 30px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15px;
  border-radius:999px; border:2px solid var(--ink); cursor:pointer; position:relative; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--ink); color:var(--paper); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-gradient{
  background:linear-gradient(120deg, var(--brass) 0%, var(--brass-bright) 55%, var(--gold) 100%);
  border-color:transparent; color:var(--ink-deep); box-shadow:var(--shadow-glow); font-weight:700;
}
.btn-gradient:hover{ transform:translateY(-3px) scale(1.02); box-shadow:0 32px 70px -14px rgba(240,169,60,0.5); }
.btn-ghost{ background:transparent; color:var(--ink); }
.btn-ghost:hover{ background:var(--ink); color:var(--paper); transform:translateY(-3px); }
.btn-ghost-light{ background:transparent; color:var(--paper); border-color:rgba(251,250,247,.35); }
.btn-ghost-light:hover{ background:rgba(251,250,247,.12); transform:translateY(-3px); }
.btn-wa{ background:#25D366; border-color:#25D366; color:#fff; }
.btn-wa:hover{ background:#1EBE57; border-color:#1EBE57; transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-lg{ padding:19px 38px; font-size:16.5px; }
.btn-sm{ padding:11px 20px; font-size:13.5px; }
.btn svg{ width:18px; height:18px; }

/* ============ FLOATING WHATSAPP ============ */
.float-wa{
  position:fixed; bottom:28px; right:28px; z-index:70; width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#1EBE57); display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 34px -8px rgba(37,211,102,0.55); transition:transform .3s var(--ease);
}
.float-wa:hover{ transform:scale(1.08); }
.float-wa svg{ width:28px; height:28px; color:#fff; }
.float-wa::before{
  content:''; position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(37,211,102,0.4);
  animation:ring 2.2s infinite;
}
@keyframes ring{ 0%{transform:scale(.9); opacity:1;} 100%{transform:scale(1.5); opacity:0;} }
@media(max-width:760px){ .float-wa{ bottom:88px; right:18px; width:52px; height:52px; } .float-wa svg{ width:24px; height:24px; } }

/* ============ DARK HERO ============ */
.hero-dark{
  background:radial-gradient(ellipse 120% 80% at 50% -10%, #1A2333 0%, var(--ink) 45%, var(--ink-deep) 100%);
  color:var(--paper); position:relative; overflow:hidden; padding:80px 0 0;
}
.orb{ position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; opacity:.55; }
.orb-1{ width:520px; height:520px; background:radial-gradient(circle, rgba(240,169,60,0.45), transparent 70%); top:-180px; right:-120px; }
.orb-2{ width:420px; height:420px; background:radial-gradient(circle, rgba(210,101,46,0.32), transparent 70%); bottom:-160px; left:-100px; }
.hero-dark .badge{ background:rgba(251,250,247,0.06); border-color:rgba(251,250,247,.16); color:var(--steel-light); }
.hero-dark .badge .dot{ background:#3EE08A; box-shadow:0 0 0 3px rgba(62,224,138,0.22); }
.hero-inner{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center; position:relative; z-index:2; }
@media(max-width:960px){ .hero-inner{ grid-template-columns:1fr; } }
.badge{
  display:inline-flex; align-items:center; gap:9px; padding:9px 18px; border-radius:999px;
  background:var(--paper-dim); border:1px solid var(--line-strong);
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--steel);
  margin-bottom:26px;
}
.badge .dot{ width:7px; height:7px; border-radius:50%; background:#2FBF71; box-shadow:0 0 0 3px rgba(47,191,113,0.18); animation:pulse 2s infinite; }
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero-dark h1{ font-size:clamp(46px,7.4vw,92px); margin-bottom:26px; letter-spacing:-0.03em; }
.hero-dark h1 .grad{
  background:linear-gradient(115deg, var(--brass-bright) 0%, var(--gold) 45%, var(--rust) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-dark p.lede{ font-size:20px; color:rgba(251,250,247,.68); max-width:46ch; margin-bottom:38px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:42px; }
.trust-row{ display:flex; gap:26px; flex-wrap:wrap; font-family:'IBM Plex Mono',monospace; font-size:13px; color:rgba(251,250,247,.55); }
.trust-row span{ display:flex; align-items:center; gap:8px; }
.trust-row svg{ width:16px; height:16px; color:var(--brass-bright); flex-shrink:0; }

/* ============ BROWSER MOCKUP ============ */
.browser-mockup{
  border-radius:16px; overflow:hidden; background:#fff; box-shadow:var(--shadow-lg);
  border:1px solid rgba(251,250,247,.12);
  transform:perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition:transform .6s var(--ease);
}
.browser-mockup:hover{ transform:perspective(1400px) rotateY(0deg) rotateX(0deg) scale(1.015); }
.browser-chrome{ background:#E7E4DC; padding:12px 16px; display:flex; align-items:center; gap:8px; }
.browser-chrome .dot{ width:11px; height:11px; border-radius:50%; }
.browser-chrome .dot:nth-child(1){ background:#EF6A5F; }
.browser-chrome .dot:nth-child(2){ background:#F5BD4F; }
.browser-chrome .dot:nth-child(3){ background:#61C554; }
.browser-chrome .url{
  margin-left:12px; flex:1; background:#fff; border-radius:6px; padding:6px 14px; font-family:'IBM Plex Mono',monospace;
  font-size:11.5px; color:var(--steel); overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
}
.browser-mockup img{ width:100%; display:block; }
.mockup-float{ position:relative; }
.mockup-badge{
  position:absolute; bottom:-18px; left:-18px; background:var(--paper); border-radius:14px; padding:16px 20px;
  box-shadow:var(--shadow-md); display:flex; align-items:center; gap:12px; z-index:3;
}
@media(max-width:600px){ .mockup-badge{ display:none; } }
.mockup-badge .icon{ width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,var(--brass),var(--gold)); display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.mockup-badge .icon svg{ width:20px; height:20px; }
.mockup-badge b{ display:block; font-family:'Space Grotesk',sans-serif; font-size:15px; color:var(--ink); }
.mockup-badge span{ font-size:11.5px; color:var(--steel); font-family:'IBM Plex Mono',monospace; }

/* ============ STAT COUNTERS (dark hero strip) ============ */
.stat-strip-dark{ border-top:1px solid var(--line-dark); margin-top:64px; position:relative; z-index:2; }
.stat-row{ display:flex; flex-wrap:wrap; }
.stat-box{ flex:1; min-width:150px; padding:34px 22px; text-align:left; border-right:1px solid var(--line-dark); }
.stat-box:last-child{ border-right:none; }
.stat-box b{ display:block; font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,3.6vw,40px); background:linear-gradient(120deg,var(--brass-bright),var(--gold)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-box span{ font-size:12.5px; color:rgba(251,250,247,.5); font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:.04em; }
@media(max-width:700px){ .stat-box{ flex:1 1 50%; border-right:none; border-bottom:1px solid var(--line-dark); } }

/* ============ EYEBROW / SECTION HEAD ============ */
.eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--brass); display:flex; align-items:center; gap:10px; font-weight:700;
}
.eyebrow::before{ content:''; width:28px; height:2px; background:linear-gradient(90deg,var(--brass),var(--gold)); border-radius:2px; }
.section-head{ max-width:66ch; margin-bottom:56px; }
.section-head .eyebrow{ margin-bottom:16px; }
.section-head h2{ font-size:clamp(34px,4.4vw,54px); letter-spacing:-0.02em; }
.section-head p{ color:var(--steel); font-size:17px; margin-top:16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

/* ============ BENTO GRID ============ */
.bento{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; }
.bento .b-lg{ grid-column:span 4; }
.bento .b-sm{ grid-column:span 2; }
.bento .b-half{ grid-column:span 3; }
@media(max-width:900px){ .bento{ grid-template-columns:1fr; } .bento .b-lg,.bento .b-sm,.bento .b-half{ grid-column:span 1; } }

.card-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.card-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:900px){ .card-grid,.card-grid.cols-3{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .card-grid,.card-grid.cols-3{ grid-template-columns:1fr; } }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px 28px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position:relative;
}
.card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent; }
.card-dark{
  background:linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%); color:var(--paper);
  border:1px solid var(--line-dark);
}
.card-dark h3, .card-dark b{ color:var(--paper); }
.card-dark p{ color:rgba(251,250,247,.6); }
.card-icon{
  width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--paper-dim), #fff); margin-bottom:20px; color:var(--brass);
  transition:transform .4s var(--ease), background .4s var(--ease);
}
.card:hover .card-icon{ transform:scale(1.1) rotate(-5deg); background:linear-gradient(135deg, var(--brass), var(--gold)); color:#fff; }
.card-icon svg{ width:24px; height:24px; }
.card h3{ font-size:20px; margin-bottom:12px; letter-spacing:-0.01em; }
.card p{ font-size:15px; color:var(--steel); }
.card-num{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--brass); margin-bottom:18px; font-weight:700; }

/* ============ PROCESS — ghost numbers ============ */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
@media(max-width:860px){ .process-grid{ grid-template-columns:1fr; } }
.process-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px 26px 30px;
  position:relative; overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.process-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.process-ghost{
  position:absolute; top:-18px; right:6px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:96px;
  color:var(--paper-dim); z-index:0; line-height:1; user-select:none;
}
.process-card > *:not(.process-ghost){ position:relative; z-index:1; }
.process-card h3{ font-size:19px; margin:8px 0 10px; }
.process-card p{ font-size:14.5px; color:var(--steel); }

/* ============ WORK / PORTFOLIO ============ */
.work-card{ border-radius:var(--radius); overflow:hidden; background:#fff; border:1px solid var(--line); transition:transform .5s var(--ease), box-shadow .5s var(--ease); }
.work-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.work-media{ aspect-ratio:16/10; overflow:hidden; position:relative; background:#111; }
.work-media img{ width:100%; height:100%; object-fit:cover; object-position:top; transition:transform .7s var(--ease); }
.work-card:hover .work-media img{ transform:scale(1.07); }
.work-tag{
  position:absolute; top:16px; left:16px; background:rgba(16,21,29,0.85); backdrop-filter:blur(8px);
  color:var(--paper); font-family:'IBM Plex Mono',monospace; font-size:11.5px; padding:7px 14px; border-radius:999px; letter-spacing:.04em;
}
.work-body{ padding:26px 28px; }
.work-body h3{ font-size:19px; margin-bottom:10px; }
.work-body p{ font-size:14.5px; color:var(--steel); }

/* ============ PRICING ============ */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:900px){ .pricing-grid{ grid-template-columns:1fr; } }
.price-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:40px 32px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease); position:relative;
}
.price-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.price-card.featured{
  border:2px solid var(--brass-bright); background:linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 120%); color:var(--paper);
  box-shadow:var(--shadow-glow); transform:scale(1.04);
}
.price-card.featured .eyebrow{ color:var(--gold); }
.price-card.featured .eyebrow::before{ background:linear-gradient(90deg,var(--gold),var(--brass-bright)); }
.price-card.featured p{ color:rgba(251,250,247,.6); }
.price-card.featured .price-list{ color:rgba(251,250,247,.75); }
@media(max-width:900px){ .price-card.featured{ transform:none; } }
.price-badge{
  position:absolute; top:-15px; left:50%; transform:translateX(-50%);
  background:linear-gradient(120deg, var(--brass-bright), var(--gold)); color:var(--ink-deep);
  font-family:'IBM Plex Mono',monospace; font-weight:700; font-size:11.5px; padding:7px 18px; border-radius:999px; letter-spacing:.04em;
  box-shadow:var(--shadow-sm); white-space:nowrap;
}
.price-amount{ font-family:'Space Grotesk',sans-serif; font-size:44px; font-weight:700; margin:12px 0 4px; letter-spacing:-0.02em; }
.price-list{ list-style:none; display:flex; flex-direction:column; gap:13px; font-size:14.5px; color:var(--steel); margin:24px 0 28px; }
.price-list li{ display:flex; align-items:flex-start; gap:10px; }
.price-list svg{ width:17px; height:17px; color:var(--brass); flex-shrink:0; margin-top:2px; }
.price-card.featured .price-list svg{ color:var(--gold); }

/* ============ FAQ ============ */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:26px 4px; background:none; border:none; text-align:left; cursor:pointer;
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:17.5px; color:var(--ink);
}
.faq-q .plus{ width:24px; height:24px; flex-shrink:0; position:relative; transition:transform .4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--brass); border-radius:2px; }
.faq-q .plus::before{ width:17px; height:2.5px; top:11px; left:3.5px; }
.faq-q .plus::after{ width:2.5px; height:17px; left:11px; top:3.5px; transition:opacity .3s var(--ease); }
.faq-item.open .plus{ transform:rotate(180deg); }
.faq-item.open .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a p{ padding:0 4px 26px; color:var(--steel); font-size:15.5px; max-width:70ch; }

/* ============ CTA BANNER ============ */
.cta-banner{
  background:radial-gradient(ellipse 100% 100% at 30% 0%, #1A2333 0%, var(--ink) 55%, var(--ink-deep) 100%);
  color:var(--paper); text-align:center; position:relative; overflow:hidden; border-radius:32px; margin:0 24px;
}
.cta-banner .orb-1{ top:-30%; right:-10%; }
.cta-banner .orb-2{ bottom:-30%; left:-10%; }
.cta-banner .wrap{ position:relative; z-index:2; }
.cta-banner h2{ color:var(--paper); font-size:clamp(30px,4.2vw,46px); margin-bottom:18px; letter-spacing:-0.02em; }
.cta-banner p{ color:rgba(251,250,247,.65); margin-bottom:34px; max-width:52ch; margin-left:auto; margin-right:auto; font-size:17px; }

footer{ background:var(--ink-deep); color:rgba(251,250,247,.6); padding:64px 0 34px; font-size:13.5px; margin-top:0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:44px; margin-bottom:40px; }
@media(max-width:760px){ .footer-grid{ grid-template-columns:1fr; gap:28px; } }
footer h4{ color:var(--paper); font-family:'IBM Plex Mono',monospace; font-size:12px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
footer ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
footer a{ transition:color .25s ease; }
footer a:hover{ color:var(--brass-bright); }
footer strong{ color:var(--paper); }
.footer-disclaimer{ max-width:1260px; margin:26px auto 0; padding:22px 28px 0; font-size:12.5px; color:rgba(251,250,247,.35); border-top:1px solid var(--line-dark); }

/* ============ STICKY MOBILE CTA ============ */
.mobile-sticky-cta{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:60;
  background:rgba(251,250,247,0.95); backdrop-filter:blur(18px); border-top:1px solid var(--line-strong);
  padding:14px 16px; gap:10px; box-shadow:0 -10px 30px -10px rgba(10,13,18,0.18);
}
@media(max-width:760px){ .mobile-sticky-cta{ display:flex; } body{ padding-bottom:78px; } }
.mobile-sticky-cta .btn{ flex:1; padding:14px 16px; font-size:14px; }

/* page header for inner pages */
.page-header{
  padding:76px 0 56px; position:relative; overflow:hidden;
  background:radial-gradient(ellipse 100% 100% at 50% -20%, #1A2333 0%, var(--ink) 55%, var(--ink-deep) 100%);
  color:var(--paper);
}
.page-header h1{ font-size:clamp(38px,5.6vw,60px); position:relative; z-index:2; }
.page-header .eyebrow{ position:relative; z-index:2; color:var(--gold); }
.page-header .eyebrow::before{ background:linear-gradient(90deg,var(--gold),var(--brass-bright)); }
.page-header p{ position:relative; z-index:2; color:rgba(251,250,247,.65) !important; }
.breadcrumb{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:rgba(251,250,247,.5); margin-bottom:20px; position:relative; z-index:2; }
.breadcrumb a{ color:var(--gold); }

/* split */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
@media(max-width:860px){ .split{ grid-template-columns:1fr; } }
.photo-block{
  aspect-ratio:4/3; background:linear-gradient(135deg, var(--ink), var(--steel)); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; color:rgba(251,250,247,.5);
  font-family:'IBM Plex Mono',monospace; font-size:13px; text-align:center; padding:20px; overflow:hidden;
  box-shadow:var(--shadow-md);
}
.photo-block img{ width:100%; height:100%; object-fit:cover; }

/* contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
@media(max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info .row{ display:flex; gap:14px; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-info .row .k{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; color:var(--steel); width:110px; flex-shrink:0; padding-top:2px; }
.contact-info .row .v{ font-size:15.5px; }
.map-block{ aspect-ratio:16/10; background:var(--paper-dim); border:1px solid var(--line); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; color:var(--steel); font-family:'IBM Plex Mono',monospace; font-size:13px; margin-top:26px; }

form{ display:flex; flex-direction:column; gap:17px; }
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:36px; box-shadow:var(--shadow-md); }
form label{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--steel); margin-bottom:-10px; }
form input, form textarea, form select{
  border:1px solid var(--line-strong); background:var(--paper); padding:14px 16px; border-radius:var(--radius-sm);
  font-family:inherit; font-size:15px; color:var(--ink); transition:border-color .25s ease, box-shadow .25s ease;
}
form input:focus, form textarea:focus, form select:focus{ outline:none; border-color:var(--brass); box-shadow:0 0 0 4px rgba(192,138,62,0.14); }
form button{ margin-top:8px; }

/* fallback for the rare browser without aspect-ratio support (all real target browsers support it) */
@supports not (aspect-ratio: 1/1){
  .work-media{ height:260px; }
  .photo-block{ height:340px; }
  .map-block{ height:260px; }
}
@media(max-width:600px){
  .hero-dark h1{ font-size:clamp(36px,10vw,52px); }
  .hero-dark p.lede{ font-size:17px; }
  .btn-lg{ padding:16px 26px; font-size:15px; }
  .browser-mockup{ transform:none; }
  .mockup-badge{ display:none; }
  .price-card.featured{ transform:none; }
  .cta-banner{ margin:0 12px; border-radius:22px; }
  .cta-banner .wrap{ padding:56px 20px !important; }
  /* prevent iOS Safari auto-zoom on focus (needs >=16px font-size) */
  form input, form textarea, form select{ font-size:16px; }
  .header-inner{ padding:14px 18px; }
  .logo{ font-size:17px; }
  .logo img{ width:28px; height:28px; }
  .btn{ padding:14px 22px; font-size:14px; }
  h1{ word-break:break-word; }
}
@media(max-width:400px){
  .wrap{ padding:0 16px; }
  .badge{ font-size:11px; padding:7px 14px; }
  .stat-box{ padding:24px 14px; }
  .price-amount{ font-size:36px; }
}
/* touch target safety: every link/button styled as a control gets a real tap target */
nav a, .mobile-nav-links a, footer a{ min-height:24px; }
@media(hover:none){
  .card:hover, .work-card:hover, .price-card:hover{ transform:none; }
}
