/* =========================================================
   Streamlined Concepts — Redesign Prototype
   Modern fintech, bold & confident
   ========================================================= */

:root {
  --bg: #F6F4EE;
  --bg-card: #FFFFFF;
  --bg-dark: #0B1220;
  --bg-dark-2: #121A2E;
  --ink: #0B1220;
  --ink-2: #1E2A44;
  --muted: #6B7280;
  --muted-2: #9AA3B2;
  --line: #E6E3DA;
  --line-dark: #1E2A44;
  --accent: #008080;
  --accent-light: #00A5A5;
  --accent-deep: #005757;
  --accent-2: #4a4a4a;
  --accent-3: #FF6B3D;
  --gold: #E0B94A;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04), 0 2px 6px rgba(11, 18, 32, 0.04);
  --shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.16);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 128, 128, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
}
.eyebrow.light {
  color: #C8D2FF;
  background: rgba(255, 255, 255, 0.08);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 16px; color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); }

.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p, .dark .lead { color: #C8D2E0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; box-shadow: var(--shadow); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: #103ec0; box-shadow: 0 8px 24px rgba(0, 128, 128, 0.28); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11, 18, 32, 0.15);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-light-ghost:hover { border-color: #fff; }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.logo img, .logo svg {
  height: 48px;
  width: auto;
  display: block;
}
.site-footer .logo img, .site-footer .logo svg {
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .highlight {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-light) 60%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 20px; max-width: 520px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}
.avatars { display: flex; }
.avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: linear-gradient(135deg, #dcd6c4, #a9b5c9);
}
.avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #008080, #4a4a4a); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #FF6B3D, #E0B94A); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #0B1220, #1E2A44); }

/* Hero visual — stacked product mock */
.hero-visual {
  position: relative;
  height: 540px;
}
.mock {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 18, 32, 0.06);
  overflow: hidden;
}
.mock-dashboard {
  top: 0; right: 0;
  width: 92%;
  padding: 24px;
}
.mock-card {
  left: -10px;
  bottom: 20px;
  width: 320px;
  max-width: 320px;
  transform: rotate(-4deg);
  margin: 0;
}
.mock-metric {
  right: -18px;
  bottom: 130px;
  width: 220px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
}

.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); display: inline-block; margin-right: 6px; }
.mock-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.mock-big { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 2px; }
.mock-sub { font-size: 13px; color: var(--muted); }

.bars { display: flex; gap: 8px; align-items: flex-end; height: 80px; margin-top: 16px; }
.bar { flex: 1; background: linear-gradient(180deg, #008080 0%, #4a4a4a 100%); border-radius: 4px 4px 0 0; opacity: .25; }
.bar.hot { opacity: 1; }

.mock-rows { margin-top: 18px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.pill { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 100px; background: rgba(0, 128, 128, .12); color: #005757; }
.pill.blue { background: rgba(0, 128, 128, .1); color: #008080; }
.pill.amber { background: rgba(224, 185, 74, .18); color: #8C6E16; }

.card-chip { width: 36px; height: 26px; border-radius: 5px; background: linear-gradient(135deg, #E0B94A, #C39628); margin-bottom: 22px; }
.card-num { font-family: 'Inter', monospace; letter-spacing: 0.08em; font-size: 15px; opacity: .9; }
.card-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 16px; }
.card-foot .n { font-size: 14px; font-weight: 500; }
.card-brand { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Logos strip ---------- */
.logo-strip {
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
}
.logo-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.logo-strip-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.logos { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; opacity: 0.75; }
.logos span {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--ink-2);
}

/* ---------- Section basics ---------- */
section { padding: 100px 0; }
section.tight { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }

/* ---------- Pillar cards ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(11, 18, 32, 0.12); }
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 128, 128, .12), rgba(74, 74, 74, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 16px; color: var(--muted); }
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  margin-top: 18px;
}
.pillar-link::after { content: '→'; transition: transform .2s ease; }
.pillar:hover .pillar-link::after { transform: translateX(3px); }

/* ---------- Audiences ---------- */
.audience-wrap {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.audience-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 100% 0%, rgba(0, 128, 128, .35), transparent 60%),
              radial-gradient(500px 400px at 0% 100%, rgba(74, 74, 74, .22), transparent 60%);
  pointer-events: none;
}
.audience-wrap > * { position: relative; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .2s ease, border-color .2s ease;
}
.audience-card:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.22); }
.audience-card h4 { color: #fff; margin-bottom: 10px; font-size: 17px; }
.audience-card p { color: #B8C1D1; font-size: 14px; margin: 0; }
.audience-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .n { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.stat .l { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row h2 { font-size: clamp(30px, 3.4vw, 44px); }
.feature-row ul { list-style: none; padding: 0; margin: 20px 0 0; }
.feature-row li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--ink-2);
  font-size: 16px;
  border-top: 1px solid var(--line);
}
.feature-row li:first-child { border-top: none; }
.feature-row li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.feature-visual {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  min-height: 380px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.quote { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; letter-spacing: -0.02em; font-weight: 500; color: var(--ink); }
.quote-meta { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #008080, #4a4a4a); }
.quote-name { font-weight: 600; }
.quote-title { font-size: 14px; color: var(--muted); }

.scorebox {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.scorebox h4 { color: var(--gold); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.score-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 14px; color: #C8D2E0; }
.score-row:first-of-type { border-top: none; }
.score-row strong { color: #fff; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 100% 0%, rgba(0, 128, 128, 0.4), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 12px; }
.cta-band p { color: #C8D2E0; font-size: 17px; margin-bottom: 0; }
.cta-band .btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h5 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-2); font-size: 15px; }
.footer-col a:hover { color: var(--ink); }
.footer-blurb { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(40px, 5vw, 68px); }
.page-hero .lead { max-width: 680px; margin-top: 12px; }
.page-hero .hero-ctas { margin-top: 32px; }

/* ---------- Card showcase (cards page) ---------- */
.card-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cardcase {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cardcase:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cardcase h3 { margin-bottom: 10px; }
.cardcase p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
/* ---------- Realistic card faces (Streampay design) ---------- */
.cardface {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  max-width: 340px;
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.22), 0 2px 4px rgba(11,18,32,0.08);
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}
/* Subtle swoosh overlay on Stream cards */
.cardface.stream::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 110% 20%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(140% 100% at -10% 110%, rgba(0,0,0,0.25), transparent 55%);
  pointer-events: none;
}
.cardface.stream::after {
  content: '';
  position: absolute;
  left: 40%;
  top: -10%;
  width: 80%;
  height: 140%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.04) 45%, rgba(0,0,0,0.18) 55%, transparent 80%);
  transform: rotate(8deg);
  pointer-events: none;
}
.cardface.stream       { background: linear-gradient(135deg, #1B6E56 0%, #0E4A38 55%, #072F24 100%); }
.cardface.stream-alt   { background: linear-gradient(135deg, #20826A 0%, #0F5641 55%, #07382A 100%); }

/* NIL / TBN card — custom tiger-inspired design */
.cardface.tbn {
  background: #0A0A0A;
  color: #fff;
}
.cardface.tbn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tiger-stripes.svg') center/cover no-repeat;
  pointer-events: none;
}
.cardface.tbn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,5,2,0.12) 70%, rgba(10,5,2,0.35) 100%);
  pointer-events: none;
}
.cardface > * { position: relative; z-index: 2; }

/* Card header row */
.cf-head { display: flex; justify-content: space-between; align-items: flex-start; }
.cf-chip {
  width: 38px; height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #D9B970, #8B6F28 60%, #A8883C);
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.3);
}
.cf-chip::before, .cf-chip::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px;
  border-top: 1px solid rgba(0,0,0,0.35);
}
.cf-chip::before { top: 8px; }
.cf-chip::after  { top: 16px; }

/* Stream logo — stylized wordmark */
.stream-wordmark {
  text-align: right;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  font-style: italic;
}
.stream-wordmark .dot { color: #8FD3BD; }
.cf-program {
  text-align: right;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  text-transform: uppercase;
}

/* TBN wordmark */
.tbn-wordmark {
  text-align: right;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.tbn-sub {
  text-align: right;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.9);
  margin-top: 5px;
  text-transform: uppercase;
}

/* Card middle — number */
.cf-mid {
  margin-top: auto;
  padding-top: 12px;
}
.cf-number {
  font-family: 'Inter', system-ui, monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.cf-thru {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 8px;
  margin-top: 6px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cf-thru .date { font-size: 11px; letter-spacing: 0.12em; }

/* Card bottom */
.cf-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}
.cf-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
}
.cf-network { text-align: right; line-height: 1; }
.cf-network .debit {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
}
.cf-network .visa {
  font-family: 'Inter', system-ui, sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Card anchor (clickable) */
a.cardface-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
a.cardface-link:hover { transform: translateY(-3px); }
a.cardface-link:hover .cardface { box-shadow: 0 22px 50px rgba(11, 18, 32, 0.32); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { margin: 0 0 10px; font-size: 18px; }
.faq-item p { margin: 0; color: var(--muted); }

/* ---------- Contact form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em; }
.form-row input, .form-row select, .form-row textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}
.form-row textarea { resize: vertical; min-height: 140px; }

.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info { padding: 8px 0; }
.contact-info h4 { margin-bottom: 6px; }
.contact-info .info-row { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-info .info-row:first-of-type { border-top: none; }
.contact-info .info-row .k { font-size: 13px; color: var(--muted); }
.contact-info .info-row .v { font-size: 17px; font-weight: 500; margin-top: 4px; }

/* ---------- About ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.value .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.value h4 { margin: 10px 0 8px; }
.value p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .feature-row, .testimonial, .cta-band, .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars, .card-types, .values { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { height: 480px; }
  .cta-band .btns { justify-content: flex-start; }
  .audience-wrap, .cta-band { padding: 48px 28px; }
  .testimonial { padding: 36px; }
  .feature-row.reverse { direction: ltr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .pillars, .card-types, .values, .footer-grid, .audience-grid, .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 40px; }
  section { padding: 64px 0; }
  .hero-visual { height: 420px; }
  .mock-dashboard { width: 100%; }
  .mock-card { width: 260px; left: 0; }
  .mock-metric { right: 0; width: 180px; }
  .testimonial, .audience-wrap, .cta-band { padding: 36px 24px; }
}
