/* ===================================
   INFLUENCELINKED — styles.css
   Palette: deep dark background, off-white, emerald accent, gold secondary
   - #080810  near-black background
   - #0E0E1A  card / section background
   - #16162A  elevated surface
   - #F0EEE8  warm off-white text
   - #9896A0  muted text
   - #504E5C  faint text / labels
   - #10B981  emerald green accent
   - #F59E0B  gold secondary accent
   Typefaces: DM Serif Display (headings) + DM Sans (body)
   Design language: dark, architectural, sharp corners, diagonal dividers,
   oversized stat callouts, marquee ticker, floating side labels.
   Completely different from Zenith: dark vs parchment, serif display vs
   Playfair editorial, sharp vs hairline, emerald+gold vs monochrome.
=================================== */

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

:root {
  --bg:       #080810;
  --bg2:      #0E0E1A;
  --bg3:      #16162A;
  --text:     #F0EEE8;
  --text2:    #9896A0;
  --text3:    #504E5C;
  --green:    #10B981;
  --green-dk: #059669;
  --gold:     #F59E0B;
  --rule:     rgba(240,238,232,0.07);
  --rule2:    rgba(240,238,232,0.12);
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --t:        0.28s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a            { color: inherit; text-decoration: none; }
button       { font-family: inherit; cursor: pointer; border: none; background: none; }
ul           { list-style: none; }
img,svg      { display: block; }
::selection  { background: rgba(16,185,129,0.25); color: var(--text); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--green); border-radius: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section   { padding: 100px 0; position: relative; }

/* ===================================
   TYPOGRAPHY
=================================== */
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--green);
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title strong { font-weight: 400; color: var(--gold); }
.section-sub  { font-size: 1rem; color: var(--text2); max-width: 420px; line-height: 1.75; }
.body-text    { font-size: 0.97rem; color: var(--text2); line-height: 1.85; margin-bottom: 16px; }

/* Floating side label */
.side-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text3);
  writing-mode: vertical-rl; transform: rotate(180deg);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(180deg);
  user-select: none;
}

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--green); color: var(--bg);
  border: 1px solid var(--green);
}
.btn-primary:hover {
  background: transparent; color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.25);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--rule2);
}
.btn-ghost:hover {
  border-color: var(--green); color: var(--green); transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-arrow::after { content: '→'; }

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 24px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom-color: var(--rule);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--text); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  transition: color var(--t);
}
.nav-logo:hover { color: var(--green); }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 6px var(--green); opacity: 1; }
  50%     { box-shadow: 0 0 18px var(--green); opacity: 0.7; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text2);
  padding: 8px 16px;
  transition: color var(--t);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  color: var(--bg); background: var(--green);
  margin-left: 14px; padding: 9px 20px;
  font-size: 0.78rem;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--green-dk); color: var(--bg); }

.hamburger {
  display: none; flex-direction: column; gap: 6px; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); border-radius: 0;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh; padding: 0;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-glow-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  bottom: 100px; left: 5%;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,238,232,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,238,232,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; min-height: 100vh;
  padding-top: 120px;
}
.hero-content { max-width: 820px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 32px;
}
.hero-tag-line { width: 32px; height: 1px; background: var(--green); }

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 30px;
}
.hero-headline em { font-style: italic; color: var(--green); }
.hero-headline .typed-wrapper {
  display: block; font-style: italic; color: var(--green);
}
.cursor { color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
  font-size: 1.1rem; color: var(--text2); line-height: 1.8;
  max-width: 560px; margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 1;
  border-top: 1px solid var(--rule);
  background: rgba(14,14,26,0.6);
  backdrop-filter: blur(12px);
}
.hero-stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: var(--rule);
}
.hero-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--text);
  letter-spacing: -0.02em; display: block; line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text3);
}

/* ===================================
   MARQUEE TICKER
=================================== */
.marquee-section {
  background: var(--green);
  padding: 14px 0; overflow: hidden;
  border-top: none; border-bottom: none;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 32px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--bg);
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(8,8,16,0.4); flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================
   ABOUT (homepage strip)
=================================== */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.about-left { position: sticky; top: 120px; }
.about-pillars { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  transition: var(--t);
}
.pillar:first-child { border-top: 1px solid var(--rule); }
.pillar:hover .pillar-label { color: var(--green); }
.pillar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.78rem; font-style: italic; color: var(--text3); min-width: 24px;
}
.pillar-label { font-size: 0.88rem; font-weight: 500; color: var(--text2); transition: color var(--t); }

/* ===================================
   SERVICES
=================================== */
.services { background: var(--bg2); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 64px;
  padding-bottom: 40px; border-bottom: 1px solid var(--rule);
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--rule);
}
.service-card {
  background: var(--bg2); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width 0.5s var(--ease);
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; font-weight: 400; color: var(--rule2);
  line-height: 1; letter-spacing: -0.02em;
  transition: color var(--t);
}
.service-card:hover .service-num { color: var(--green); opacity: 0.3; }
.service-icon { color: var(--green); }
.service-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--text); }
.service-desc  { font-size: 0.9rem; color: var(--text2); line-height: 1.72; }
.service-list  { display: flex; flex-direction: column; gap: 9px; }
.service-list li {
  font-size: 0.8rem; color: var(--text3);
  padding-left: 20px; position: relative; line-height: 1.5;
  transition: color var(--t);
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px; background: var(--green);
}
.service-card:hover .service-list li { color: var(--text2); }

/* ===================================
   HOW IT WORKS, numbered large steps
=================================== */
.how-it-works { background: var(--bg); }
.steps-table { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 40px; align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--t);
}
.step:first-child { border-top: 1px solid var(--rule); }
.step:hover { padding-left: 16px; padding-right: 16px; margin: 0 -16px; background: var(--bg2); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; font-weight: 400; line-height: 1;
  color: var(--rule2); letter-spacing: -0.04em;
  transition: color var(--t);
}
.step:hover .step-num { color: var(--green); }
.step-divider { display: none; }
.step-body { padding-top: 8px; }
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--text);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.75; max-width: 560px; }
.step-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text3);
  padding: 6px 14px; border: 1px solid var(--rule2);
  white-space: nowrap; align-self: flex-start; margin-top: 8px;
  transition: color var(--t), border-color var(--t);
}
.step:hover .step-tag { color: var(--green); border-color: var(--green); }

/* ===================================
   FOR CLIENTS (brands preview section)
=================================== */
.clients-section { background: var(--bg2); }
.clients-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.clients-perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); margin-top: 0;
}
.perk {
  background: var(--bg2); padding: 28px 24px;
  transition: background var(--t);
}
.perk:hover { background: var(--bg3); }
.perk-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.perk-icon { color: var(--green); }
.perk-title { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.perk-desc  { font-size: 0.8rem; color: var(--text2); line-height: 1.65; }

/* ===================================
   BIG STAT CALLOUT (full-width strip)
=================================== */
.stat-callout {
  background: var(--bg3); padding: 80px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.stat-callout-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-callout-item {
  padding: 0 48px; border-right: 1px solid var(--rule);
  text-align: center;
}
.stat-callout-item:first-child { padding-left: 0; text-align: left; }
.stat-callout-item:last-child { border-right: none; padding-right: 0; text-align: right; }
.stat-big {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400; color: var(--text); line-height: 1;
  letter-spacing: -0.03em; display: block;
}
.stat-big em { font-style: italic; color: var(--green); }
.stat-label-big {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text3); margin-top: 12px; display: block;
}

/* ===================================
   FAQ
=================================== */
.faq { background: var(--bg); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 0.95rem; font-weight: 500;
  color: var(--text2); text-align: left;
  transition: color var(--t);
}
.faq-question:hover { color: var(--text); }
.faq-question[aria-expanded="true"] { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule2); color: var(--text3);
  transition: transform var(--t) var(--ease), color var(--t), border-color var(--t), background var(--t);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg); color: var(--bg);
  background: var(--green); border-color: var(--green);
}
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.42s var(--ease), padding 0.32s ease;
}
.faq-answer.open { max-height: 320px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--text2); line-height: 1.8; }

/* ===================================
   CONTACT
=================================== */
.contact { background: var(--bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-email {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--green); font-weight: 500;
  margin-top: 24px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.contact-email:hover { border-bottom-color: var(--green); }

.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text3);
  transition: color var(--t);
}
input, select, textarea {
  background: var(--bg3); border: 1px solid var(--rule2);
  border-radius: 0; padding: 13px 16px;
  font-size: 0.9rem; color: var(--text); font-family: inherit;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text3); }
select option { background: var(--bg3); color: var(--text); }
input:focus, select:focus, textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.10);
}
input:hover:not(:focus), select:hover:not(:focus), textarea:hover:not(:focus) {
  border-color: rgba(240,238,232,0.2);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.74rem; color: var(--text3); margin-top: 10px; }
.form-success {
  display: none; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
  font-size: 0.88rem; color: var(--green); margin-top: 14px; font-weight: 600;
}
.form-success.visible { display: flex; }

/* ===================================
   FOOTER
=================================== */
.footer { background: var(--bg); border-top: 1px solid var(--rule); padding: 64px 0 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 48px; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo-wrap { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.footer-tagline { font-size: 0.85rem; color: var(--text3); line-height: 1.6; max-width: 220px; }
.footer-col-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.85rem; color: var(--text2);
  transition: color var(--t);
}
.footer-link:hover { color: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.footer-copy { font-size: 0.76rem; color: var(--text3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.76rem; color: var(--text3); transition: color var(--t); }
.footer-legal a:hover { color: var(--green); }

/* ===================================
   SUB-PAGE HERO
=================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 24px; max-width: 800px;
}
.page-title em { font-style: italic; color: var(--green); }
.page-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.page-label::before { content: ''; width: 28px; height: 1px; background: var(--green); }
.page-sub {
  font-size: 1.02rem; color: var(--text2); line-height: 1.8; max-width: 580px;
}

/* ===================================
   FEATURE ROWS (Brands / Creators pages)
=================================== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--rule);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { grid-template-columns: 1.3fr 1fr; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.78rem; font-style: italic; color: var(--text3); margin-bottom: 16px; display: block;
}
.feature-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400; color: var(--text); margin-bottom: 16px; line-height: 1.25;
}
.feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  font-size: 0.88rem; color: var(--text2);
  padding-left: 20px; position: relative; line-height: 1.6;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--green);
}
.feature-visual {
  background: var(--bg2); border: 1px solid var(--rule);
  padding: 12px;
}
.feature-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule);
}
.feature-visual-cell {
  background: var(--bg2); padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--t);
}
.feature-visual-cell:hover { background: var(--bg3); }
.feature-visual-cell svg { color: var(--green); }
.feature-visual-label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.feature-visual-sub   { font-size: 0.74rem; color: var(--text3); line-height: 1.5; }

/* ===================================
   VALUES GRID (About)
=================================== */
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule);
}
.value-card {
  background: var(--bg); padding: 40px;
  transition: background var(--t);
}
.value-card:hover { background: var(--bg2); }
.value-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; color: var(--rule2);
  margin-bottom: 16px; display: block; letter-spacing: -0.02em;
  transition: color var(--t);
}
.value-card:hover .value-num { color: var(--green); opacity: 0.6; }
.value-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.value-desc  { font-size: 0.88rem; color: var(--text2); line-height: 1.75; }

/* ===================================
   TIMELINE (About)
=================================== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 100px 1px 1fr;
  gap: 0; align-items: stretch;
  padding: 36px 0; border-bottom: 1px solid var(--rule);
  transition: padding var(--t);
}
.timeline-item:first-child { border-top: 1px solid var(--rule); }
.timeline-item:hover { padding-left: 12px; }
.timeline-year {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem; font-weight: 400; color: var(--green);
  padding-right: 24px; align-self: flex-start; padding-top: 3px;
}
.timeline-divider { background: var(--rule); width: 1px; margin-right: 32px; }
.timeline-title { font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.timeline-desc  { font-size: 0.88rem; color: var(--text2); line-height: 1.75; }

/* CTA strip */
.cta-strip { background: var(--bg2); }

/* ===================================
   SCROLL REVEAL
=================================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1000px) {
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-callout-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-callout-item { padding: 0; text-align: left; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 32px; }
  .stat-callout-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    flex-direction: column; align-items: flex-start;
    background: rgba(8,8,16,0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--rule);
    padding: 88px 28px 32px; gap: 4px;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    z-index: 800;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 0.95rem; padding: 12px 0; width: 100%; }
  .nav-link::after { left: 0; right: 0; }
  .nav-link.nav-cta { margin-left: 0; margin-top: 16px; }
  .hamburger { display: flex; z-index: 901; }

  .about-grid, .clients-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .step { grid-template-columns: 72px 1fr; gap: 24px; }
  .step-tag { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 130px 0 56px; }
  .hero-inner { padding: 0 24px; padding-top: 100px; }
  .hero-headline { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 20px 16px; }
  .hero-stat-num { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .clients-perks { grid-template-columns: 1fr; }
  .step-num { font-size: 2.8rem; }
  .timeline-item { grid-template-columns: 70px 1px 1fr; }
  .feature-visual-grid { grid-template-columns: 1fr; }
}
