/* ============================================================
   Shivonix Technologies — clean, content-first static site
   Plain HTML5 + CSS + jQuery. No frameworks.
   Design language: box-free surfaces, floating shadows,
   muted deep teal accent, editorial typography.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --ink: #101418;
  --ink-2: #46505C;
  --ink-3: #6E7885;
  --line-dark: rgba(245, 241, 232, .14);
  --acc: #0D7377;            /* Muted Deep Teal */
  --acc-dark: #095B5E;
  --acc-soft: rgba(13, 115, 119, .09);
  --navy: #101418;           /* Deep Obsidian */
  --navy-2: #1A2027;
  --on-dark: #F5F1E8;
  --on-dark-2: rgba(245, 241, 232, .66);
  --font-head: 'Clash Display', 'Satoshi', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(13, 21, 38, .06);
  --shadow: 0 4px 14px rgba(13, 21, 38, .06), 0 18px 44px rgba(13, 21, 38, .09);
  --shadow-lg: 0 8px 24px rgba(13, 21, 38, .09), 0 32px 72px rgba(13, 21, 38, .13);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--acc); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography (headings >= 3x body) ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }

.h-display { font-size: clamp(2.8rem, 6.4vw, 4.8rem); font-weight: 600; }
.h-1 { font-size: clamp(2.3rem, 4.8vw, 3.5rem); }
.h-2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.h-3 { font-size: 1.25rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); line-height: 1.7; }
.muted { color: var(--ink-2); }
.small { font-size: .92rem; color: var(--ink-3); }

.eyebrow {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--acc);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--acc); border-radius: 2px; }

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

/* ---------- Buttons (0.3s ease-out micro-interactions) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 15px 28px; border-radius: 999px; border: none;
  transition: transform .3s ease-out, background-color .3s ease-out, color .3s ease-out, box-shadow .3s ease-out;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform .3s ease-out; }
.btn:hover svg { transform: translateX(4px); }
.btn-acc { background: var(--acc); color: #fff; box-shadow: 0 10px 26px rgba(13, 115, 119, .32); }
.btn-acc:hover { background: var(--acc-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(13, 115, 119, .4); }
.btn-outline { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline:hover { background: var(--ink); color: var(--on-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: var(--on-dark); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost-light { background: rgba(245, 241, 232, .1); color: var(--on-dark); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(245, 241, 232, .2); }

@keyframes pulse-ring {
  0% { box-shadow: 0 10px 26px rgba(13, 115, 119, .32), 0 0 0 0 rgba(13, 115, 119, .45); }
  70% { box-shadow: 0 10px 26px rgba(13, 115, 119, .32), 0 0 0 16px rgba(13, 115, 119, 0); }
  100% { box-shadow: 0 10px 26px rgba(13, 115, 119, .32), 0 0 0 0 rgba(13, 115, 119, 0); }
}
.btn-pulse { animation: pulse-ring 2.4s ease-out infinite; }

/* centre-out underline animation for links */
.u-line { position: relative; }
.u-line::after {
  content: ""; position: absolute; left: 50%; bottom: -3px; height: 2px; width: 100%;
  background: var(--acc); border-radius: 2px;
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform .3s ease-out;
}
.u-line:hover::after, .u-line.active::after { transform: translateX(-50%) scaleX(1); }

.text-link {
  font-weight: 700; color: var(--acc); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s ease-out;
}
.text-link:hover { gap: 12px; }

/* ---------- Header (floating, no lines) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s ease-out;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(13, 21, 38, .1); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: flex; align-items: center; margin-right: auto; }
.brand-name {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: 1.6rem; letter-spacing: 0; line-height: 1; color: var(--ink);
}
.brand-name em {
  display: block; font-style: normal; font-family: var(--font-mono); font-weight: 500;
  font-size: .55rem; letter-spacing: .34em; color: var(--acc); margin-top: 4px;
}
.site-footer .brand-name { color: var(--on-dark); }
.site-footer .brand-name em { color: #7FC9C0; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .nav-item > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: .94rem; color: var(--ink-2);
  padding: 9px 10px; transition: color .3s ease-out;
}
.main-nav > a:hover, .nav-item > a:hover { color: var(--ink); }
.main-nav a.active { color: var(--acc); }
.nav-item > a .caret { width: 10px; height: 10px; transition: transform .3s ease-out; }
.nav-item:hover > a .caret { transform: rotate(180deg); }

.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 10px);
  min-width: 280px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease-out, transform .25s ease-out, visibility .25s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: block; padding: 11px 15px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: background-color .25s ease-out, color .25s ease-out; }
.dropdown a:hover { background: var(--acc-soft); color: var(--ink); }
.dropdown a span { display: block; font-size: .78rem; color: var(--ink-3); font-weight: 400; }

.menu-toggle {
  display: none; background: var(--surface); border: none; border-radius: 12px; box-shadow: var(--shadow-sm);
  width: 46px; height: 46px; position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
  transition: transform .3s ease-out, opacity .2s ease-out;
}
.menu-toggle span { top: 50%; margin-top: -1px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--bg); padding: 24px 28px 40px; overflow-y: auto;
}
body.menu-open .mobile-menu { display: block; }
body.menu-open { overflow: hidden; }
.mobile-menu a.mnav {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.35rem;
  padding: 18px 2px;
}
.mobile-menu a.mnav span { color: var(--acc); }
.mobile-menu .msub { padding: 4px 0 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-menu .msub a { font-size: .88rem; color: var(--ink-2); background: var(--surface); box-shadow: var(--shadow-sm); padding: 8px 14px; border-radius: 999px; }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Sections (generous negative space) ---------- */
.section { padding: 116px 0; }
.section-tight { padding: 84px 0; }
.section-dark { background: var(--navy); color: var(--on-dark); }
.section-dark .lead, .section-dark .muted { color: var(--on-dark-2); }
.section-dark .h-2, .section-dark .h-3 { color: var(--on-dark); }
.section-white { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .h-2 { margin-bottom: 16px; }
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: .88rem; color: var(--ink-3); display: flex; align-items: center; gap: 9px; }
.hero-note svg { width: 15px; height: 15px; color: var(--acc); flex: none; }

.hero-media { position: relative; }
.hero-media .frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.hero-badge {
  position: absolute; background: rgba(255, 255, 255, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; box-shadow: var(--shadow); padding: 13px 19px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; color: var(--ink-2);
  display: flex; align-items: center; gap: 9px;
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); flex: none; }
.hero-badge.b1 { bottom: 26px; left: -22px; }
.hero-badge.b2 { top: 26px; right: -16px; }

/* trust strip — light floating highlight tiles */
.trust-strip { margin-top: 88px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-bottom: 88px; }
.trust-item {
  background: var(--surface); border-radius: 18px; padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-item .t-ico { width: 44px; height: 44px; border-radius: 13px; background: var(--acc-soft); color: var(--acc); display: grid; place-items: center; margin-bottom: 18px; }
.trust-item .t-ico svg { width: 20px; height: 20px; }
.trust-item .t-txt { font-weight: 700; font-size: 1.02rem; line-height: 1.45; color: var(--ink); }
.trust-item .t-num { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--acc); margin-bottom: 10px; }

/* ---------- Cards / grids (floating, borderless) ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: transparent; border-radius: var(--radius);
  padding: 36px 10px; display: flex; flex-direction: column;
  transition: background-color .3s ease-out, transform .3s ease-out;
}
a.card:hover, .card.hoverable:hover { background: var(--acc-soft); transform: translateY(-4px); }
.card .c-num { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; color: var(--acc); margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: .96rem; }
.card .c-link { margin-top: auto; padding-top: 20px; font-weight: 700; font-size: .92rem; color: var(--acc); display: inline-flex; align-items: center; gap: 8px; }
.card .c-link svg { width: 14px; height: 14px; transition: transform .3s ease-out; }
a.card:hover .c-link svg { transform: translateX(4px); }

.card-img { overflow: hidden; border-radius: var(--radius-sm); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.card-img img { width: 100%; aspect-ratio: 16/9.5; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
a.card:hover .card-img img { transform: scale(1.045); }

.intent-card .c-tag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}

/* feature cells — no gridlines, floating type */
.feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 56px; }
.feature-cell { padding: 30px 6px; border-radius: var(--radius); transition: background-color .3s ease-out; }
.feature-cell:hover { background: rgba(255, 255, 255, .6); }
.feature-cell .f-num { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; color: var(--acc); margin-bottom: 12px; }
.feature-cell h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-cell p { color: var(--ink-2); font-size: .95rem; }
.section-dark .feature-cell:hover { background: rgba(245, 241, 232, .05); }
.section-dark .feature-cell p { color: var(--on-dark-2); }

/* ---------- Split (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split .media-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split .media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split .eyebrow { margin-bottom: 18px; }
.split h2 { margin-bottom: 18px; }
.split p + p { margin-top: 14px; }

.check-list { margin-top: 24px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; font-size: .97rem; }
.check-list svg { width: 19px; height: 19px; color: var(--acc); flex: none; margin-top: 2px; }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { padding-top: 20px; position: relative; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; border-radius: 3px; background: var(--acc); }
.step .s-num { font-family: var(--font-mono); font-size: .8rem; color: var(--acc); letter-spacing: .1em; margin-bottom: 12px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-2); }
.section-dark .step p { color: var(--on-dark-2); }

/* ---------- Industry link rows (floating) ---------- */
.link-rows { display: grid; gap: 6px; }
.link-row {
  display: grid; grid-template-columns: minmax(220px, .9fr) 2fr 44px; align-items: center; gap: 24px;
  padding: 24px 18px; border-radius: var(--radius);
  transition: background-color .3s ease-out, box-shadow .3s ease-out, transform .3s ease-out;
}
.link-row:hover { background: var(--surface); box-shadow: var(--shadow); transform: translateX(6px); }
.link-row .r-num { font-family: var(--font-mono); font-size: .8rem; color: var(--acc); }
.link-row .r-title { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; }
.link-row .r-desc { color: var(--ink-2); font-size: .95rem; }
.link-row .r-arrow { width: 38px; height: 38px; background: var(--surface); box-shadow: var(--shadow-sm); border-radius: 50%; display: grid; place-items: center; transition: background-color .3s ease-out, transform .3s ease-out; }
.link-row .r-arrow svg { width: 14px; height: 14px; }
.link-row:hover .r-arrow { background: var(--acc); color: #fff; transform: rotate(-45deg); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 72px; }
.breadcrumbs { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--acc); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 840px; margin-bottom: 22px; }
.page-hero .lead { max-width: 690px; margin-bottom: 34px; }
.page-hero .hero-ctas { margin-bottom: 0; }

/* ---------- Stats ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { padding-left: 24px; position: relative; }
.stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--acc); }
.stat .st-num { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; }
.stat .st-label { font-size: .9rem; color: var(--ink-2); margin-top: 8px; }
.section-dark .stat .st-label { color: var(--on-dark-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { border-radius: var(--radius); transition: background-color .3s ease-out, box-shadow .3s ease-out; margin-bottom: 8px; }
.faq details[open] { background: var(--surface); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.14rem; padding: 26px 22px;
  transition: color .3s ease-out;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--acc); }
.faq summary .plus { width: 32px; height: 32px; flex: none; background: var(--surface); box-shadow: var(--shadow-sm); border-radius: 50%; display: grid; place-items: center; transition: transform .3s ease-out, background-color .3s ease-out; }
.faq summary .plus svg { width: 12px; height: 12px; }
.faq details[open] .plus { transform: rotate(45deg); background: var(--acc); color: #fff; }
.faq .faq-a { padding: 0 22px 28px; color: var(--ink-2); max-width: 700px; }

/* ---------- Forms ---------- */
.form-panel { background: rgba(255, 255, 255, .86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 22px; padding: 44px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .97rem; color: var(--ink);
  background: #F1EEE5; border: none; border-radius: var(--radius-sm);
  padding: 14px 16px; outline: none; transition: box-shadow .3s ease-out, background-color .3s ease-out;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; box-shadow: 0 0 0 3px var(--acc-soft), var(--shadow-sm); }

.captcha-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-q {
  font-family: var(--font-mono); font-size: .95rem; background: var(--navy); color: var(--on-dark);
  padding: 12px 18px; border-radius: var(--radius-sm); letter-spacing: .06em; white-space: nowrap;
}
.captcha-row input { max-width: 110px; }
.form-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.form-status { font-size: .92rem; font-weight: 500; display: none; }
.form-status.err { color: #B3261E; display: block; }
.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success .ok-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--acc-soft); color: var(--acc); display: grid; place-items: center;
}
.form-success .ok-icon svg { width: 28px; height: 28px; }
.form-note { font-size: .82rem; color: var(--ink-3); margin-top: 18px; }

/* checkbox pills */
.pill-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-checks label { position: relative; }
.pill-checks input { position: absolute; opacity: 0; pointer-events: none; }
.pill-checks .pill {
  display: inline-block; padding: 10px 17px; border-radius: 999px;
  font-size: .88rem; font-weight: 500; color: var(--ink-2); cursor: pointer; background: var(--surface);
  box-shadow: var(--shadow-sm); transition: all .3s ease-out; text-transform: none; letter-spacing: 0; font-family: var(--font-body);
}
.pill-checks input:checked + .pill { background: var(--acc); color: #fff; box-shadow: 0 8px 20px rgba(13, 115, 119, .35); }

/* ---------- CTA band / footer ---------- */
.cta-band { background: var(--navy); color: var(--on-dark); padding: 110px 0; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; left: 50%; top: -160px; width: 520px; height: 520px;
  transform: translateX(-50%);
  border-radius: 50%; background: radial-gradient(circle, rgba(13, 115, 119, .35), transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.cta-inner .eyebrow { margin-bottom: 20px; justify-content: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.cta-inner p { color: var(--on-dark-2); margin: 0 auto 36px; max-width: 560px; }
.cta-inner .hero-ctas { justify-content: center; margin-bottom: 0; }

.site-footer { background: var(--navy); color: var(--on-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.1fr .8fr; gap: 48px; padding: 80px 0 60px; }
.footer-brand p { color: var(--on-dark-2); font-size: .94rem; margin: 18px 0 22px; max-width: 300px; }
.footer-col h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 22px; font-weight: 500; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .94rem; color: var(--on-dark-2); transition: color .3s ease-out; display: inline-block; }
.footer-col a:hover { color: var(--acc); }
.footer-col a.u-line::after { background: var(--acc); }
.footer-contact li { display: flex; gap: 11px; font-size: .94rem; color: var(--on-dark-2); align-items: flex-start; margin-bottom: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--acc); flex: none; margin-top: 3px; }
.footer-contact a { color: var(--on-dark); font-weight: 500; }
.footer-contact a:hover { color: var(--acc); }
.footer-bottom { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .84rem; color: var(--on-dark-2); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; background: rgba(245, 241, 232, .08); border-radius: 50%; display: grid; place-items: center; transition: all .3s ease-out; }
.social-links a:hover { background: var(--acc); transform: translateY(-3px); }
.social-links svg { width: 15px; height: 15px; }

/* ---------- Tags / chips (floating) ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: .85rem; font-weight: 500; color: var(--ink-2);
  background: var(--surface); box-shadow: var(--shadow-sm); padding: 9px 16px; border-radius: 999px;
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
a.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--acc); }
.section-dark .chip { background: rgba(245, 241, 232, .08); color: var(--on-dark-2); box-shadow: none; }

/* ---------- Article ---------- */
.article-body { max-width: 760px; }
.article-body h2 { margin: 48px 0 18px; }
.article-body h3 { margin: 34px 0 12px; }
.article-body p { margin-bottom: 16px; color: var(--ink-2); }
.article-body ul { margin: 0 0 18px; display: grid; gap: 10px; }
.article-body ul li { padding-left: 26px; position: relative; color: var(--ink-2); }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--acc); }
.article-meta { display: flex; gap: 16px; align-items: center; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); letter-spacing: .06em; margin-bottom: 26px; }
.article-meta .cat { color: var(--acc); }

/* ============================================================
   SERVICE PAGES — sticky narrative + scroll-synced capabilities
   ============================================================ */
.sync-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.sync-sticky { position: sticky; top: 110px; }
.sync-sticky .eyebrow { margin-bottom: 18px; }
.sync-sticky h2 { margin-bottom: 16px; }
.sync-visual { margin-top: 36px; position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.sync-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.sync-overlay {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; padding: 14px 20px; display: flex; gap: 16px; align-items: baseline;
  box-shadow: var(--shadow);
}
.sync-overlay .sync-count { font-family: var(--font-mono); font-size: .85rem; color: var(--acc); letter-spacing: .1em; flex: none; }
.sync-overlay .sync-label { font-weight: 700; font-size: .98rem; transition: opacity .3s ease-out; }

.sync-right { display: grid; gap: 16px; }
.sync-item {
  padding: 38px 36px; border-radius: var(--radius);
  transition: background-color .4s ease-out, box-shadow .4s ease-out, transform .4s ease-out, opacity .4s ease-out;
  opacity: .55;
}
.sync-item .s-num { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; color: var(--acc); margin-bottom: 14px; }
.sync-item h3 { font-size: 1.35rem; margin-bottom: 10px; }
.sync-item p { color: var(--ink-2); font-size: .97rem; }
.sync-item.active { background: var(--surface); box-shadow: var(--shadow-lg); transform: translateX(-10px); opacity: 1; }
.section-dark .sync-item.active { background: var(--navy-2); }
.section-dark .sync-item p { color: var(--on-dark-2); }

/* ============================================================
   INDUSTRIES — interactive horizon
   ============================================================ */
.horizon { display: grid; gap: 26px; }
.horizon-item {
  position: relative; display: block; overflow: hidden; border-radius: 26px;
  background: var(--navy); color: var(--on-dark); min-height: 300px;
  box-shadow: var(--shadow); transition: box-shadow .4s ease-out, transform .4s ease-out;
}
.horizon-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.horizon-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; transition: opacity .6s ease-out, transform .8s cubic-bezier(.2,.6,.2,1); }
.horizon-item:hover .horizon-bg { opacity: .52; transform: scale(1.04); }
.horizon-tint { position: absolute; inset: 0; background: var(--tint, var(--acc)); opacity: 0; transition: opacity .6s ease-out; mix-blend-mode: multiply; }
.horizon-item:hover .horizon-tint { opacity: .38; }
.horizon-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 44px; padding: 62px 58px; }
.horizon-content .h-num { font-family: var(--font-mono); font-size: .85rem; letter-spacing: .14em; color: rgba(245, 241, 232, .75); flex: none; }
.horizon-content h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); flex: none; max-width: 46%; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.horizon-item:hover h2 { transform: translateX(8px); }
.horizon-snippet {
  margin-left: auto; max-width: 380px; color: var(--on-dark-2); font-size: .97rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .6s cubic-bezier(.2,.6,.2,1), opacity .5s ease-out;
}
.horizon-item:hover .horizon-snippet { max-height: 220px; opacity: 1; }
.horizon-arrow { position: absolute; right: 34px; bottom: 30px; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: rgba(245, 241, 232, .14); backdrop-filter: blur(8px); display: grid; place-items: center; transition: background-color .3s ease-out, transform .3s ease-out; }
.horizon-arrow svg { width: 16px; height: 16px; }
.horizon-item:hover .horizon-arrow { background: var(--acc); transform: rotate(-45deg); }

/* ============================================================
   ABOUT — winding organic timeline
   ============================================================ */
.timeline { position: relative; max-width: 980px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; margin-left: -1.5px;
  background: linear-gradient(to bottom, transparent, var(--acc) 8%, var(--acc) 92%, transparent);
  border-radius: 3px; opacity: .35;
}
.tl-item { position: relative; width: calc(50% - 46px); padding: 34px 36px; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 54px; transition: box-shadow .3s ease-out, transform .3s ease-out; }
.tl-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tl-item:nth-child(odd) { margin-left: 0; transform-origin: right; }
.tl-item:nth-child(even) { margin-left: calc(50% + 46px); }
.tl-item:nth-child(odd) { border-radius: 22px 22px 4px 22px; }
.tl-item:nth-child(even) { border-radius: 22px 22px 22px 4px; }
.tl-item .tl-dot {
  position: absolute; top: 40px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--acc); box-shadow: 0 0 0 6px var(--acc-soft);
}
.tl-item:nth-child(odd) .tl-dot { right: -54px; }
.tl-item:nth-child(even) .tl-dot { left: -54px; }
.tl-item .tl-num { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; color: var(--acc); margin-bottom: 14px; }
.tl-item h3 { font-size: 1.45rem; margin-bottom: 10px; }
.tl-item p { color: var(--ink-2); font-size: .97rem; }

/* slow editorial reveal for timeline */
html.js .tl-reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.6,.2,1); }
html.js .tl-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   INSIGHTS — magazine masonry
   ============================================================ */
.masonry { column-count: 3; column-gap: 36px; }
.mas-card { break-inside: avoid; margin-bottom: 52px; display: block; }
.mas-card .mas-img { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.mas-card .mas-img img { width: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.mas-card:hover .mas-img img { transform: scale(1.05); }
.mas-card .mas-img.ar-wide img { aspect-ratio: 16/9; }
.mas-card .mas-img.ar-tall img { aspect-ratio: 4/4.6; }
.mas-card .mas-img.ar-square img { aspect-ratio: 1/1; }
.mas-card .c-num { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; color: var(--acc); margin-bottom: 12px; }
.mas-card h3 { font-size: 1.45rem; transform-origin: left center; transition: transform .35s ease-out, color .35s ease-out; margin-bottom: 10px; }
.mas-card:hover h3 { transform: scale(1.045); color: var(--acc); }
.mas-ex { color: var(--ink-2); font-size: .95rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.6,.2,1), opacity .45s ease-out; }
.mas-card:hover .mas-ex, .mas-card.static .mas-ex { max-height: 160px; opacity: 1; }
.mas-card.static { cursor: default; }
.mas-soon { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; }

/* ============================================================
   CONTACT — conversational step form
   ============================================================ */
.contact-stage { position: relative; }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.contact-orb.o1 { width: 340px; height: 340px; background: rgba(13, 115, 119, .16); top: -60px; right: -80px; }
.contact-orb.o2 { width: 260px; height: 260px; background: rgba(13, 115, 119, .1); bottom: 0; left: -100px; }

.step-form { position: relative; z-index: 1; }
.sf-progress { display: flex; gap: 10px; margin-bottom: 44px; }
.sf-dot { height: 5px; flex: 1; border-radius: 5px; background: #E4DFD1; transition: background-color .4s ease-out; }
.sf-dot.done { background: var(--acc); }
.sf-step { display: none; }
.sf-step.current { display: block; animation: sfIn .55s cubic-bezier(.2,.6,.2,1); }
@keyframes sfIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.sf-step-label { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--acc); margin-bottom: 16px; }
.sf-q { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.2; margin-bottom: 26px; }
.sf-input, .sf-textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.2rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 2px solid #DAD4C4; padding: 12px 2px;
  outline: none; transition: border-color .3s ease-out;
  border-radius: 0;
}
.sf-input:focus, .sf-textarea:focus { border-color: var(--acc); }
.sf-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.sf-note { min-height: 24px; margin-top: 14px; font-size: .92rem; color: var(--acc); font-weight: 500; }
.sf-nav { display: flex; gap: 14px; margin-top: 40px; align-items: center; }
.sf-back { visibility: hidden; }
.sf-hint { font-size: .82rem; color: var(--ink-3); margin-left: auto; font-family: var(--font-mono); letter-spacing: .04em; }
.sf-err { color: #B3261E; font-size: .92rem; margin-top: 12px; display: none; font-weight: 500; }

/* ---------- Reveal on scroll ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: .1s; }
html.js .reveal-d2 { transition-delay: .2s; }
html.js .reveal-d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .tl-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-pulse { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media img { aspect-ratio: 16/9; }
  .hero-badge.b1 { left: 12px; }
  .hero-badge.b2 { right: 12px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sync-wrap { grid-template-columns: 1fr; gap: 44px; }
  .sync-sticky { position: static; }
  .sync-item { opacity: 1; transform: none; background: var(--surface); box-shadow: var(--shadow-sm); }
  .horizon-content { flex-direction: column; align-items: flex-start; gap: 18px; padding: 48px 34px; }
  .horizon-content h2 { max-width: none; }
  .horizon-snippet { margin-left: 0; max-height: 220px; opacity: 1; }
  .masonry { column-count: 2; }
  .timeline::before { left: 10px; }
  .tl-item, .tl-item:nth-child(even), .tl-item:nth-child(odd) { width: auto; margin-left: 44px; border-radius: 22px; }
  .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot { left: -41px; right: auto; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .section { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split .split-media { order: -1; }
  .feature-row { grid-template-columns: 1fr; }
  .link-row { grid-template-columns: 1fr 44px; }
  .link-row .r-desc { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .masonry { column-count: 1; }
  .horizon-item { min-height: 240px; }
  .sf-hint { display: none; }
}

/* ============================================================
   SERVICE PAGES — scroll-driven benefit showcase (scrolly)
   Left: sticky text panel. Right: sticky visual stage that
   cycles core benefits as the page scrolls.
   ============================================================ */
.scrolly { height: calc(var(--slides, 8) * 72vh + 46vh); }
.scrolly-track { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; height: 100%; }
.scrolly-panel { position: sticky; top: 110px; }
.scrolly-panel .eyebrow { margin-bottom: 18px; }
.scrolly-panel h2 { margin-bottom: 16px; }
.scrolly-stage { position: sticky; top: 104px; }
.stage-frame {
  position: relative; height: calc(100vh - 220px); min-height: 420px;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy);
}
.stage-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.07);
  transition: opacity .7s ease, transform 1s cubic-bezier(.2, .6, .2, 1);
}
.stage-frame img.on { opacity: 1; transform: none; }
.stage-info {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  background: rgba(13, 21, 38, .58); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; padding: 22px 26px; color: var(--on-dark);
  transition: opacity .25s ease;
}
.stage-info .st-count { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; color: #8AD6CB; display: block; margin-bottom: 10px; }
.stage-info h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--on-dark); }
.stage-info p { font-size: .94rem; color: var(--on-dark-2); }
.stage-progress { display: flex; gap: 8px; margin-top: 18px; }
.stage-progress span { height: 4px; flex: 1; border-radius: 4px; background: #E4DFD1; transition: background-color .35s ease; }
.stage-progress span.on { background: var(--acc); }
.scrolly-list { display: none; }

@media (max-width: 1024px) {
  .scrolly { height: auto; }
  .scrolly-track { grid-template-columns: 1fr; height: auto; gap: 40px; }
  .scrolly-panel { position: static; }
  .scrolly-stage { display: none; }
  .scrolly-list { display: grid; gap: 16px; margin-top: 8px; }
  .scrolly-list .sync-item { opacity: 1; background: var(--surface); box-shadow: var(--shadow-sm); transform: none; padding: 30px 28px; }
}

/* floating WhatsApp bubble */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .42);
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 38px rgba(37, 211, 102, .5); }
.wa-float svg { width: 28px; height: 28px; }

/* compact related-tags strip — no giant empty section */
section:has(> .container > .chip-row:only-child) { padding: 30px 0 44px; }
.chip { font-size: .82rem; padding: 8px 14px; }
.chip-row { align-items: center; }
.chip-row > span.chip {
  background: transparent; box-shadow: none; padding: 8px 4px 8px 0;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ============================================================
   OVERHAUL — numbering removed, boxes dissolved, editorial rows
   ============================================================ */
.c-num, .f-num, .t-num, .r-num, .h-num, .s-num, .tl-num, .st-count { display: none; }
.c-label {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--acc); margin-bottom: 16px;
}

/* interactive open rows — highlight only on interaction */
.intent-list { display: grid; }
.intent-row {
  display: grid; grid-template-columns: minmax(240px, .9fr) 1.4fr auto;
  gap: 36px; align-items: center; padding: 32px 14px; border-radius: var(--radius);
  transition: background-color .3s ease-out, padding-left .3s ease-out;
}
.intent-row:hover { background: var(--acc-soft); padding-left: 32px; }
.intent-row .i-tag {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acc); display: block; margin-bottom: 10px;
}
.intent-row h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.intent-row p { color: var(--ink-2); font-size: 1rem; }
.intent-row .i-arrow {
  width: 46px; height: 46px; border-radius: 50%; background: var(--surface);
  box-shadow: var(--shadow-sm); display: grid; place-items: center;
  transition: background-color .3s ease-out, transform .3s ease-out;
}
.intent-row .i-arrow svg { width: 15px; height: 15px; }
.intent-row:hover .i-arrow { background: var(--acc); color: #fff; transform: rotate(-45deg); }

/* asymmetric editorial service rows */
.svc-editorial { display: grid; gap: 28px; }
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center;
  padding: 48px 0; position: relative;
}
.svc-row::before {
  content: ""; position: absolute; width: 230px; height: 230px; border-radius: 40px;
  background: var(--acc-soft); z-index: 0; top: 6px; right: -48px;
  transform: rotate(12deg); transition: transform .6s cubic-bezier(.2,.6,.2,1), background-color .6s ease;
}
.svc-row.flip::before { right: auto; left: -48px; transform: rotate(-12deg); }
.svc-row:hover::before { transform: rotate(22deg) scale(1.08); background: rgba(13, 115, 119, .14); }
.svc-row.flip:hover::before { transform: rotate(-22deg) scale(1.08); }
.svc-row-media { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.svc-row-media img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.svc-row:hover .svc-row-media img { transform: scale(1.05); }
.svc-row.flip .svc-row-media { order: 2; }
.svc-row-body { position: relative; z-index: 1; }
.svc-row-body h3 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); margin-bottom: 16px; }
.svc-row-body p { color: var(--ink-2); font-size: 1.04rem; margin-bottom: 22px; max-width: 480px; }

@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 1fr; gap: 30px; padding: 36px 0; }
  .svc-row.flip .svc-row-media { order: 0; }
  .svc-row::before { width: 160px; height: 160px; right: -20px; }
  .svc-row.flip::before { left: -20px; }
  .intent-row { grid-template-columns: 1fr auto; gap: 14px; }
  .intent-row p { grid-column: 1 / -1; order: 3; }
}
