
:root {
  --accent: #f7a31a;
  --accent-2: #ffb73d;
  --accent-ink: #1a1407;
  --ink: #14171d;
  --ink-2: #2a2f39;
  --navy: #14171d;
  --navy-2: #1b1f27;
  --bg: #ffffff;
  --bg-2: #f5f4f1;
  --bg-3: #ececea;
  --txt: #1d212a;
  --txt-2: #5a6270;
  --txt-3: #8a909c;
  --line: #e6e5e1;
  --line-dark: #2c313b;
  --disp: "Archivo", system-ui, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
[data-accent="blue"] { --accent: #2f6fed; --accent-2: #4f88ff; --accent-ink: #fff; }
[data-accent="green"] { --accent: #1f9d57; --accent-2: #2fbd6e; --accent-ink: #fff; }
[data-accent="red"] { --accent: #e0492f; --accent-2: #ff6347; --accent-ink: #fff; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--txt); background: var(--bg);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--disp); margin: 0; letter-spacing: -0.02em; line-height: 1.05; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 32px); }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent);
}
.eyebrow svg { width: 16px; height: 16px; }
.eyebrow.light { color: var(--accent); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 15px 26px; border-radius: 6px; cursor: pointer; border: none;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: var(--accent-2); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ NAV ============ */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand-logo { display: flex; align-items: center; gap: 11px; }
.brand-mark { height: 40px; width: auto; display: block; }
.brand-word { font-family: var(--disp); font-weight: 800; font-size: 21px; letter-spacing: -0.005em; color: var(--ink); line-height: 1; white-space: nowrap; }
.brand-word span { font-weight: 500; color: var(--txt-2); }
.brand-logo .bm { width: 34px; height: 34px; position: relative; flex-shrink: 0; }
.brand-logo .bm span { position: absolute; }
.brand-logo .bm .s1 { inset: 0 0 50% 0; background: #fff; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.brand-logo .bm .s2 { inset: 50% 0 0 0; background: var(--accent); }
.nav-links { display: flex; gap: 30px; font-size: 15px; font-weight: 600; color: rgba(20,23,29,.78); }
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-mobile-prod { display: none; }

/* dark-hero nav treatment (inner pages over dark pagehero) */
.dark-nav .nav-links { color: rgba(255,255,255,.86); }
.dark-nav .brand-word { color: #fff; }
.dark-nav .brand-word span { color: rgba(255,255,255,.62); }
.dark-nav .nav-mobile-prod a { color: rgba(255,255,255,.86); }

/* ============ HERO ============ */
.hero { position: relative; min-height: min(760px, 100svh); display: flex; align-items: center; color: var(--txt); overflow: hidden; background: #f1f1f0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(243,243,242,.96) 0%, rgba(243,243,242,.88) 34%, rgba(243,243,242,.45) 60%, rgba(243,243,242,0) 78%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-top: clamp(120px, 18vw, 150px); padding-bottom: clamp(48px, 8vw, 64px); }
.hero-tagline { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: clamp(11px, 2.6vw, 13px); letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: clamp(14px, 3vw, 22px); }
.hero-tagline::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.hero h1 { font-size: clamp(34px, 7.5vw, 78px); font-weight: 800; max-width: 16ch; margin-bottom: clamp(16px, 3vw, 22px); color: var(--ink); }
.hero h1 .hl { color: var(--accent); }
.hero-lede { font-size: clamp(15.5px, 2.4vw, 18px); color: var(--txt-2); max-width: 520px; margin-bottom: clamp(24px, 4vw, 34px); text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(36px, 6vw, 56px); }
.hero-stats { display: flex; gap: clamp(20px, 5vw, 48px); flex-wrap: wrap; }
.hero-stat .n { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 6vw, 42px); color: var(--ink); line-height: 1; }
.hero-stat .n em { color: var(--accent); font-style: normal; }
.hero-stat .l { font-size: 13px; color: var(--txt-3); margin-top: 7px; font-weight: 600; }
.hero-stat { position: relative; padding-left: 0; }
.hero-stats .hero-stat + .hero-stat { padding-left: clamp(20px, 5vw, 48px); border-left: 1px solid var(--line); }

/* floating tag bottom-right */
.hero-badges { position: absolute; bottom: 0; right: 0; z-index: 2; display: flex; }
.hero-badge { background: var(--navy-2); padding: 16px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; }
.hero-badge.amber { background: var(--accent); color: var(--accent-ink); }
.hero-badge .sm { display: block; font-weight: 600; font-size: 11px; opacity: .6; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

/* ============ STICKY CALL BAR ============ */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--navy); border-top: 2px solid var(--accent);
  box-shadow: 0 -8px 30px rgba(0,0,0,.22);
}
.callbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.callbar-msg { display: flex; align-items: center; gap: 14px; color: #fff; min-width: 0; }
.callbar-ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(247,163,26,.16); display: grid; place-items: center; color: var(--accent); flex-shrink: 0; }
.callbar-ic svg { width: 20px; height: 20px; }
.callbar-txt { min-width: 0; }
.callbar-txt .t1 { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; }
.callbar-txt .t2 { font-family: var(--disp); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.01em; }
.callbar .btn { white-space: nowrap; flex-shrink: 0; }
.callbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #20bd5a; }
.btn-wa svg { flex-shrink: 0; }
.btn-call { background: #f7a31a; color: #1a1407; }
.btn-call:hover { background: #ffb73d; }
.btn-call svg { flex-shrink: 0; }
body { padding-bottom: 68px; }
.tweaks { bottom: 84px; }

/* ============ ABOUT ============ */
.about { padding: clamp(56px, 9vw, 104px) 0; border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.about h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 800; margin: 18px 0 22px; }
.about p { color: var(--txt-2); font-size: 16.5px; margin: 0 0 18px; }
.about-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--txt); }
.about-list .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.about-list .ck svg { width: 13px; height: 13px; }
.about-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 16px; }
.about-collage .ph { border-radius: 8px; overflow: hidden; background: var(--bg-2); }
.about-collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-collage .tall { grid-row: 1 / 3; }
.about-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--accent); color: var(--accent-ink); width: 132px; height: 132px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.about-badge .bn { font-family: var(--disp); font-weight: 800; font-size: 34px; line-height: 1; }
.about-badge .bl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ============ LOGOS ============ */
.logos { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.logos-head { text-align: center; font-weight: 600; color: var(--txt-3); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.logos-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 28px 18px; align-items: center; }
.logos-row.center { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 44px; }
.logos-row.center .cell { width: 118px; }
.logos-row .cell { display: flex; align-items: center; justify-content: center; height: 48px; }
.logos-row img { max-height: 42px; max-width: 100%; width: auto; opacity: .9; transition: opacity .2s, transform .2s; }
.logos-row .cell:hover img { opacity: 1; transform: translateY(-2px); }

/* ============ SERVICES ============ */
.services { padding: clamp(56px, 9vw, 104px) 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 60px); }
.sec-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 800; }
.sec-head p { color: var(--txt-2); font-size: 16.5px; margin-top: 16px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.svc {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s;
}
.svc:hover { box-shadow: 0 24px 50px -24px rgba(20,23,29,.28); transform: translateY(-4px); border-color: transparent; }
.svc-img { position: relative; height: 200px; overflow: hidden; background: var(--bg-2); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-num { position: absolute; top: 16px; left: 16px; width: 40px; height: 40px; border-radius: 8px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: 16px; }
.svc-body { padding: 26px 26px 28px; }
.svc-body h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.svc-body p { color: var(--txt-2); font-size: 14.5px; margin: 0 0 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--navy); }
.svc-link .arr { color: var(--accent); transition: transform .15s; }
.svc:hover .svc-link .arr { transform: translateX(4px); }

/* ============ PROJECTS ============ */
.projects { padding: clamp(56px, 9vw, 104px) 0; background: var(--bg-2); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 24px); }
.proj { position: relative; height: 440px; border-radius: 12px; overflow: hidden; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proj:hover img { transform: scale(1.06); }
.proj::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,18,23,.92) 0%, rgba(16,18,23,.1) 55%, transparent 100%); }
.proj-info { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: #fff; }
.proj-tag { display: inline-block; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; margin-bottom: 12px; }
.proj-info h3 { font-size: 23px; font-weight: 700; margin-bottom: 6px; }
.proj-info p { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; }
.proj-arrow { position: absolute; top: 20px; right: 20px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .2s, transform .2s; transform: translateY(-6px); }
.proj:hover .proj-arrow { opacity: 1; transform: translateY(0); }

/* ============ PROCESS (dark) ============ */
.process { padding: clamp(56px, 9vw, 104px) 0; background: var(--navy); color: #fff; }
.process-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 64px; }
.process h2 { font-size: clamp(32px, 3.8vw, 52px); font-weight: 800; }
.process-top p { color: rgba(255,255,255,.62); font-size: 16px; margin: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--line-dark); }
.step { padding: 32px 28px 8px; border-right: 1px solid var(--line-dark); position: relative; }
.step:last-child { border-right: none; }
.step::before { content: ""; position: absolute; top: -2px; left: 0; width: 64px; height: 2px; background: var(--accent); }
.step-n { font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 18px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { color: rgba(255,255,255,.58); font-size: 14.5px; margin: 0; }

/* ============ TESTIMONIALS ============ */
.testi { padding: clamp(56px, 9vw, 104px) 0; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 26px); max-width: 1000px; margin: 0 auto; }
.tcard { border: 1px solid var(--line); border-radius: 12px; padding: 36px; background: #fff; }
.tcard .qm { font-family: var(--disp); font-size: 60px; line-height: .6; color: var(--accent); height: 30px; }
.tcard blockquote { margin: 0 0 26px; font-size: 18px; line-height: 1.55; color: var(--txt); font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: 14px; }
.tcard .av { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--disp); font-size: 16px; }
.av.a1 { background: #ffe3c2; color: #8a4b13; } .av.a2 { background: #cfe9d8; color: #1c6b3f; }
.av.a3 { background: #d3e0ff; color: #28488f; } .av.a4 { background: #ffe0b8; color: #8a5a13; }
.tcard .nm { font-weight: 700; font-size: 15px; }
.tcard .rl { font-size: 13px; color: var(--txt-3); }
.tcard .stars { color: var(--accent); margin-left: auto; font-size: 14px; letter-spacing: 2px; }

/* ============ CTA banner ============ */
.cta { position: relative; padding: clamp(56px, 8vw, 96px) 0; color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,163,26,.96) 0%, rgba(247,163,26,.78) 50%, rgba(247,163,26,.55) 100%); }
[data-accent="blue"] .cta-bg::after { background: linear-gradient(90deg, rgba(47,111,237,.96), rgba(47,111,237,.6)); }
[data-accent="green"] .cta-bg::after { background: linear-gradient(90deg, rgba(31,157,87,.96), rgba(31,157,87,.6)); }
[data-accent="red"] .cta-bg::after { background: linear-gradient(90deg, rgba(224,73,47,.96), rgba(224,73,47,.6)); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr auto; gap: 48px; align-items: center; }
.cta h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 800; color: var(--accent-ink); }
.cta p { color: rgba(26,20,7,.78); font-size: 17px; margin: 14px 0 0; max-width: 560px; font-weight: 500; }
.cta-call { text-align: right; }
.cta-call .lbl { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(26,20,7,.6); margin-bottom: 8px; }
.cta-call a { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 3vw, 40px); color: var(--accent-ink); display: inline-flex; align-items: center; gap: 12px; }
.cta-call a svg { width: 30px; height: 30px; }
.cta-call .hrs { font-size: 13px; font-weight: 600; color: rgba(26,20,7,.62); margin-top: 8px; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,.62); padding: clamp(52px, 7vw, 76px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer .brand-logo { margin-bottom: 18px; }
.footer .brand-word { color: #fff; }
.footer .brand-word span { color: rgba(255,255,255,.6); }
.footer-about { font-size: 14.5px; line-height: 1.7; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14.5px; }
.footer ul a:hover { color: var(--accent); }
.footer .contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer .contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer .contact-item b { color: #fff; font-weight: 600; display: block; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; }
.footer-bot .soc { display: flex; gap: 10px; }
.footer-bot .soc a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .15s; }
.footer-bot .soc a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.footer-bot .soc svg { width: 15px; height: 15px; }

/* ============ TWEAKS ============ */
.tweaks { position: fixed; bottom: 22px; right: 22px; z-index: 300; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; width: 250px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.3); display: none; }
.tweaks.on { display: block; }
.tweaks-t { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 14px; }
.tw-row { margin-bottom: 14px; }
.tw-row > span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 7px; }
.tw-seg { display: flex; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.tw-seg button { flex: 1; border: none; background: #fff; padding: 8px 4px; font-size: 12px; font-weight: 600; font-family: var(--sans); cursor: pointer; color: var(--txt-2); border-right: 1px solid var(--line); }
.tw-seg button:last-child { border-right: none; }
.tw-seg button.on { background: var(--navy); color: #fff; }
.tw-sw { display: flex; gap: 8px; }
.tw-sw button { width: 32px; height: 32px; border-radius: 6px; border: 2px solid var(--line); cursor: pointer; padding: 0; }
.tw-sw button.on { border-color: var(--navy); transform: scale(1.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .svc-grid, .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); padding-bottom: 28px; }
  .logos-row { grid-template-columns: repeat(4, 1fr); gap: 26px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { height: 66px; justify-content: center; }
  .nav-right { display: none; }
  .nav-mobile-prod {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 9px 0 11px; border-bottom: 1px solid var(--line);
  }
  .nav-mobile-prod a {
    flex: 1; text-align: center; font-size: 13px; font-weight: 700;
    color: var(--ink); letter-spacing: -0.005em; white-space: nowrap;
  }
  .nav-mobile-prod a + a { border-left: 1px solid var(--line); }
  .nav-mobile-prod a:active { color: var(--accent); }
  .hero { min-height: 0; display: flex; align-items: center; background: #f3f3f2; }
  .hero-inner { padding-top: 124px; padding-bottom: clamp(40px, 9vw, 60px); }
  .hero-bg img { object-position: center 80%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(244,244,243,.95) 0%, rgba(244,244,243,.9) 40%, rgba(244,244,243,.74) 63%, rgba(244,244,243,.34) 84%, rgba(244,244,243,.06) 100%); }
  .hero h1 { font-size: clamp(38px, 11vw, 54px); max-width: 14ch; }
  .hero-lede { max-width: none; margin-bottom: 26px; }
  .hero-actions { width: 100%; flex-direction: column; margin-bottom: 34px; }
  .hero-actions .btn-dark { order: -1; }
  .hero-actions .btn { width: 100%; justify-content: center; min-height: 52px; white-space: nowrap; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-stat .n { font-size: clamp(23px, 7vw, 30px); }
  .hero-stat .l { font-size: 12px; margin-top: 5px; }
  .hero-stats .hero-stat + .hero-stat { padding-left: clamp(12px, 3.5vw, 18px); }
  .hero-badges { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: clamp(36px, 8vw, 48px); }
  .about-collage { grid-template-rows: clamp(150px, 40vw, 200px) clamp(150px, 40vw, 200px); }
  .about .btn { width: 100%; justify-content: center; min-height: 52px; }
  .svc-grid, .proj-grid, .steps, .testi-grid, .process-top { grid-template-columns: 1fr; }
  .process-top { gap: 16px; margin-bottom: clamp(32px, 7vw, 40px); }
  .step { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 26px 0 22px; }
  .step:last-child { border-bottom: none; }
  .proj { height: clamp(300px, 70vw, 360px); }
  .logos-row { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-call { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bot { flex-direction: column; gap: 16px; text-align: center; }
  .tweaks { left: 12px; right: 12px; width: auto; bottom: 76px; }
  /* sticky call bar — mobile only */
  .callbar { display: block; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* phones */
@media (max-width: 600px) {
  .nav-call-num { display: none; }
  .nav-call { padding: 12px; }
  .nav-call .arr { width: 19px; height: 19px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  /* sticky call bar */
  .callbar-inner { height: 64px; gap: 10px; }
  .callbar-msg { display: none; }
  .callbar-actions { flex: 1; gap: 8px; }
  .callbar-actions .btn { flex: 1; justify-content: center; padding: 13px 12px; font-size: 14px; min-height: 48px; }
  .callbar .arr { display: none; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

/* small phones */
@media (max-width: 380px) {
  .logos-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .hero-stat + .hero-stat { padding-left: 16px; }
  .callbar-txt .t2 { font-size: 16px; }
}


/* ============ INSIDE-PAGE HERO ============ */
.pagehero { position: relative; background: var(--navy); color: #fff; padding: clamp(118px,16vw,176px) 0 clamp(52px,7vw,78px); overflow: hidden; }
.pagehero .pagehero-bg { position:absolute; inset:0; z-index:0; }
.pagehero .pagehero-bg img { width:100%; height:100%; object-fit:cover; opacity:.14; }
.pagehero .pagehero-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,23,29,.72), rgba(20,23,29,.94)); }
.pagehero .wrap { position: relative; z-index: 2; }
.breadcrumb { display:flex; flex-wrap:wrap; gap:7px; align-items:center; font-family:var(--sans); font-size:13px; font-weight:600; color:rgba(255,255,255,.55); margin-bottom:22px; }
.breadcrumb a { color:rgba(255,255,255,.55); }
.breadcrumb a:hover { color:#fff; }
.breadcrumb .sep { opacity:.4; }
.breadcrumb .cur { color:var(--accent); }
.pagehero h1 { font-size: clamp(36px,6vw,60px); max-width: 16ch; margin-bottom: 20px; }
.pagehero h1 .hl { color: var(--accent); }
.pagehero .ph-lede { font-family:var(--sans); font-size: clamp(16px,2vw,20px); max-width: 62ch; color: rgba(255,255,255,.8); line-height:1.65; margin-bottom: 30px; }
.pagehero .hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.pagehero .ph-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.pagehero .ph-chips span { font-family:var(--sans); font-size:13px; font-weight:600; color:rgba(255,255,255,.85); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); padding:8px 14px; border-radius:100px; }

/* ============ FAQ ============ */
.faq { padding: clamp(56px,8vw,92px) 0; background: var(--bg-2); }
.faq .wrap { max-width: 900px; }
.faqlist { display:flex; flex-direction:column; gap:14px; margin-top:36px; }
.faqitem { background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px 28px; }
.faqitem h3 { font-size:20px; margin-bottom:10px; letter-spacing:-0.01em; }
.faqitem p { font-family:var(--sans); color:var(--txt-2); margin:0; line-height:1.66; }

/* ============ RELATED PRODUCTS ============ */
.related { padding: clamp(56px,8vw,92px) 0; }
.related .rel-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:36px; }
.related .relcard { display:flex; gap:18px; align-items:center; background:var(--bg-2); border:1px solid var(--line); border-radius:14px; padding:20px 22px; transition:border-color .15s, transform .15s; }
.related .relcard:hover { border-color:var(--accent); transform:translateY(-2px); }
.related .relcard img { width:92px; height:92px; object-fit:cover; border-radius:10px; flex:none; }
.related .relcard h3 { font-size:20px; margin-bottom:6px; }
.related .relcard p { font-family:var(--sans); font-size:14px; color:var(--txt-2); margin:0 0 8px; line-height:1.5; }
@media (max-width: 720px){ .related .rel-grid { grid-template-columns:1fr; } }



/* ===== PRODUCT SECTIONS (moved from inline) ===== */

/* on-brand photo placeholder the client fills with real product shots */
.ph-slot {
  position: relative; overflow: hidden; border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, #f1f0ec 0 16px, #ebe9e4 16px 32px);
  border: 1px dashed var(--line); display: grid; place-items: center; min-height: 200px;
}
.ph-slot .ph-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--txt-2);
  background: rgba(255,255,255,.9); padding: 9px 15px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 18px -10px rgba(0,0,0,.3);
}
.ph-slot .ph-tag svg { width: 15px; height: 15px; color: var(--accent); }

/* ===== PRODUCTS OVERVIEW ===== */
.prodover { padding: clamp(56px, 9vw, 104px) 0; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.prodcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow .2s ease, transform .2s ease, border-color .2s; }
.prodcard:hover { box-shadow: 0 26px 54px -26px rgba(20,23,29,.3); transform: translateY(-4px); border-color: transparent; }
.prodcard .pc-img { height: 210px; min-height: 0; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.prodcard .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.pc-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.pc-kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; margin-bottom: 11px; }
.prodcard h3 { font-size: 23px; font-weight: 700; margin-bottom: 10px; }
.prodcard > .pc-body > p { color: var(--txt-2); font-size: 14.5px; margin: 0 0 18px; }
.pc-points { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.pc-points li { font-size: 13.5px; font-weight: 600; color: var(--txt); display: flex; gap: 10px; align-items: center; }
.pc-points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.prodcard .svc-link { margin-top: auto; }

/* ===== RAPID WALL (light) ===== */
.rapidwall { padding: clamp(56px, 9vw, 104px) 0; background: var(--bg-2); }
.rw-intro { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: center; margin-bottom: clamp(48px, 7vw, 76px); }
.rw-intro h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 800; margin: 16px 0 20px; }
.rw-intro > div > p { color: var(--txt-2); font-size: 16.5px; margin: 0 0 24px; max-width: 540px; text-wrap: pretty; }
.rw-photo { position: relative; }
.rw-photo .ph-slot { min-height: 420px; height: 100%; }
.rw-photo .rw-float { position: absolute; left: -18px; bottom: 24px; background: var(--navy); color: #fff; border-radius: 12px; padding: 18px 22px; box-shadow: 0 22px 50px -20px rgba(0,0,0,.45); }
.rw-photo .rw-float .n { font-family: var(--disp); font-weight: 800; font-size: 30px; line-height: 1; }
.rw-photo .rw-float .n em { color: var(--accent); font-style: normal; }
.rw-photo .rw-float .l { font-size: 12px; color: rgba(255,255,255,.62); font-weight: 600; margin-top: 6px; }
.rw-feat { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.rw-feat li { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 14.5px; color: var(--txt); }
.rw-feat .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.rw-feat .ck svg { width: 12px; height: 12px; }

/* the 6 S's */
.sixs-head { margin-bottom: clamp(28px, 4vw, 40px); }
.sixs-head h3 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; }
.sixs-head p { color: var(--txt-2); font-size: 15.5px; margin: 10px 0 0; max-width: 620px; }
.sixs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 20px); margin-bottom: clamp(48px, 7vw, 76px); }
.scard { border: 1px solid var(--line); border-radius: 12px; padding: 28px 26px; background: #fff; }
.scard .sicon { width: 46px; height: 46px; border-radius: 10px; background: color-mix(in oklab, var(--accent) 15%, #fff); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.scard .sicon svg { width: 22px; height: 22px; }
.scard h4 { display: flex; align-items: baseline; gap: 10px; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.scard h4 .sx { font-family: var(--disp); font-weight: 800; font-size: 24px; color: var(--accent); line-height: 1; }
.scard ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.scard li { font-size: 13.5px; color: var(--txt-2); display: flex; gap: 9px; line-height: 1.4; }
.scard li::before { content: "→"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* applications */
.rw-apps { margin-bottom: clamp(40px, 6vw, 64px); }
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 20px); }
.appcol { border-top: 2px solid var(--accent); padding-top: 18px; }
.appcol h4 { font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.appcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.appcol li { font-size: 14px; color: var(--txt-2); }

/* spec strip */
.specstrip { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.specstrip .sp { padding: 26px 24px; border-right: 1px solid var(--line); }
.specstrip .sp:last-child { border-right: none; }
.sp .spk { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 10px; }
.sp .spv { font-family: var(--disp); font-weight: 800; font-size: 22px; color: var(--ink); line-height: 1.1; }
.sp .spv small { font-size: 13px; color: var(--txt-2); font-weight: 600; }

/* ===== FIBRE BOARD ===== */
.fibreboard { padding: clamp(56px, 9vw, 104px) 0; }
.fb-intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; margin-bottom: clamp(44px, 6vw, 64px); }
.fb-intro h2 { font-size: clamp(32px, 3.6vw, 50px); font-weight: 800; margin: 16px 0 20px; }
.fb-intro > div > p { color: var(--txt-2); font-size: 16.5px; margin: 0 0 18px; max-width: 540px; text-wrap: pretty; }
.fb-photo .ph-slot { min-height: 400px; height: 100%; }
.fb-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.fb-tags span { font-size: 12.5px; font-weight: 700; color: var(--txt); background: var(--bg-2); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
.fb-uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.usecard { border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px; background: #fff; transition: border-color .2s, box-shadow .2s, transform .2s; }
.usecard:hover { box-shadow: 0 20px 44px -24px rgba(20,23,29,.26); transform: translateY(-3px); border-color: transparent; }
.usecard .uic { width: 44px; height: 44px; border-radius: 10px; background: color-mix(in oklab, var(--accent) 15%, #fff); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.usecard .uic svg { width: 22px; height: 22px; }
.usecard h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.usecard p { font-size: 13.5px; color: var(--txt-2); margin: 0; line-height: 1.5; }

@media (max-width: 1040px) {
  .prod-grid { grid-template-columns: 1fr; }
  .sixs-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .specstrip { grid-template-columns: repeat(3, 1fr); }
  .specstrip .sp:nth-child(3) { border-right: none; }
  .specstrip .sp:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .fb-uses { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .rw-intro, .fb-intro { grid-template-columns: 1fr; gap: clamp(28px, 7vw, 40px); }
  .rw-intro { display: flex; flex-direction: column; }
  .rw-intro .rw-copy { order: 1; } .rw-intro .rw-photo { order: 2; }
  .rw-photo .ph-slot, .fb-photo .ph-slot { min-height: clamp(260px, 60vw, 360px); }
  .rw-photo .rw-float { left: auto; right: 16px; }
  .sixs-grid, .fb-uses { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .specstrip { grid-template-columns: 1fr 1fr; }
  .specstrip .sp { border-right: 1px solid var(--line); }
  .specstrip .sp:nth-child(2n) { border-right: none; }
  .specstrip .sp:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
  .rw-feat { grid-template-columns: 1fr; }
  .rapidwall .btn, .fibreboard .btn { width: 100%; justify-content: center; min-height: 52px; }
}

