/* vertonaustralia.com — Strategic Operations & Organizational Alignment */
:root {
  --c-primary: #0D47A1;
  --c-primary-2: #1565C0;
  --c-blue: #42A5F5;
  --c-blue-soft: #90CAF9;
  --c-bg: #E3F2FD;
  --c-ink: #0D1B2A;
  --c-dark: #1F2937;
  --c-mid: #475569;
  --c-soft: #94A3B8;
  --c-white: #ffffff;
  --c-line: rgba(13, 71, 161, 0.14);
  --c-line-soft: rgba(13, 71, 161, 0.06);
  --grad-mesh: radial-gradient(at 20% 30%, rgba(66, 165, 245, 0.18) 0%, transparent 50%),
               radial-gradient(at 80% 10%, rgba(13, 71, 161, 0.10) 0%, transparent 50%),
               radial-gradient(at 60% 90%, rgba(144, 202, 249, 0.30) 0%, transparent 55%);
  --grad-primary: linear-gradient(135deg, #0D47A1 0%, #1565C0 60%, #42A5F5 100%);
  --grad-text: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #42A5F5 100%);
  --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 71, 161, 0.10);
  --shadow-lg: 0 20px 50px rgba(13, 71, 161, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.18rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--c-dark); }
.lead { font-size: 1.18rem; color: var(--c-mid); line-height: 1.7; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--c-bg); }
.section--dark { background: var(--c-primary); color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--soft { background: linear-gradient(180deg, var(--c-white) 0%, var(--c-bg) 100%); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--c-primary);
}
.section--dark .eyebrow { color: var(--c-blue-soft); }
.section--dark .eyebrow::before { background: var(--c-blue-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; position: relative; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: ''; width: 28px; height: 2px; background: var(--c-primary);
}
.section--dark .section-head.center .eyebrow::after { background: var(--c-blue-soft); }

/* Gradient text */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons — sharp rectangles with bold borders */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-primary);
  background: transparent;
  border: 2px solid var(--c-primary);
  border-radius: 4px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-1px); }
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-ink); border-color: var(--c-ink); }
.btn-light { color: var(--c-white); border-color: rgba(255,255,255,0.6); }
.btn-light:hover { background: var(--c-white); color: var(--c-primary); border-color: var(--c-white); }
.btn-arrow .arr { display: inline-block; transition: transform 0.3s var(--ease); }
.btn-arrow:hover .arr { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-line-soft);
}
.site-header.scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--grad-primary);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,0.25) 100%);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--c-dark);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--c-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--c-primary); color: var(--c-white) !important;
  border-radius: 4px;
  transition: background 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--c-ink); }

.burger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--c-primary); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--c-white);
    padding: 24px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 1rem; border-radius: 6px; }
  .nav a::after { display: none; }
  .nav a:hover { background: var(--c-bg); }
  .burger { display: flex; }
}

/* Hero — split (left text + right image with rounded corner) */
.hero-split {
  min-height: 100vh;
  padding: 130px 0 80px;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-bg) 100%);
  overflow: hidden;
}
.hero-split::before {
  content: ''; position: absolute; left: -10%; top: -10%;
  width: 400px; height: 400px;
  background: var(--grad-mesh);
  z-index: 0;
}
.hero-split > .container { position: relative; z-index: 1; }
.hero-split-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.hero-split h1 { margin-bottom: 24px; }
.hero-split p.lead { margin-bottom: 36px; }
.hero-split .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-split-img {
  position: relative; aspect-ratio: 4/5;
  border-radius: 0 80px 12px 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-split-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 71, 161, 0.25) 100%);
}
@media (max-width: 920px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-split-img { aspect-ratio: 4/3; border-radius: 0 60px 8px 8px; }
}

/* Hero — gradient mesh full-width */
.hero-mesh {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-mesh::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-mesh);
  z-index: 0;
}
.hero-mesh > .container { position: relative; z-index: 1; }
.hero-mesh h1 { max-width: 880px; margin: 0 auto 24px; text-align: center; }
.hero-mesh p.lead { max-width: 640px; margin: 0 auto 36px; text-align: center; font-size: 1.2rem; }
.hero-mesh .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* Floating preview cards (glassmorphism) */
.float-cards {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  height: 280px;
}
.float-card {
  position: absolute; width: 280px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(13, 71, 161, 0.15);
}
.float-card .fc-icon {
  width: 38px; height: 38px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.float-card .fc-label { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 1rem; color: var(--c-ink); }
.float-card .fc-meta { font-size: 0.82rem; color: var(--c-mid); margin-top: 6px; }
.float-card.fc1 { left: 0; top: 0; transform: rotate(-3deg); animation: float1 7s ease-in-out infinite; }
.float-card.fc2 { left: 50%; top: 40px; transform: translateX(-50%) rotate(2deg); z-index: 2; animation: float2 6s ease-in-out infinite; }
.float-card.fc3 { right: 0; top: 12px; transform: rotate(4deg); animation: float3 8s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateX(-50%) rotate(2deg) translateY(0); } 50% { transform: translateX(-50%) rotate(2deg) translateY(-16px); } }
@keyframes float3 { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-9px); } }
@media (max-width: 760px) {
  .float-cards { height: auto; display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 340px; }
  .float-card { position: static; transform: none !important; width: 100%; animation: none; }
}

/* Compact hero */
.hero-compact {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-white) 100%);
  position: relative; overflow: hidden;
}
.hero-compact::after {
  content: ''; position: absolute; right: -120px; top: 30%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-compact .container { position: relative; z-index: 1; }
.hero-compact h1 { max-width: 800px; }
.hero-compact p { color: var(--c-mid); max-width: 640px; font-size: 1.15rem; margin-top: 16px; }

/* Hero banner with breadcrumb */
.hero-banner {
  padding: 150px 0 80px;
  background: var(--grad-primary);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 50%);
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-banner h1 { color: var(--c-white); max-width: 800px; }
.hero-banner p { color: rgba(255,255,255,0.86); max-width: 640px; font-size: 1.1rem; }

/* Minimal animated header */
.hero-minimal {
  padding: 180px 0 100px;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.hero-minimal::after {
  content: ''; position: absolute; right: -100px; top: 50%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-minimal h1 .word { display: inline-block; opacity: 1; transform: translateY(0); }
.hero-minimal h1 .word.in { animation: word-in 0.7s var(--ease) both; }
@keyframes word-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-minimal p { font-size: 1.2rem; max-width: 700px; color: var(--c-mid); }

/* Hero with contact heading */
.hero-contact {
  min-height: 70vh;
  padding: 150px 0 80px;
  display: flex; align-items: center;
  background: var(--grad-primary);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.hero-contact::after {
  content: ''; position: absolute; right: -10%; top: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.hero-contact .container { position: relative; z-index: 1; }
.hero-contact h1 { color: var(--c-white); max-width: 800px; }
.hero-contact p { color: rgba(255,255,255,0.85); max-width: 600px; font-size: 1.1rem; }

/* Article hero */
.article-hero {
  padding: 150px 0 60px;
  background: var(--c-bg);
  position: relative;
}
.article-hero h1 { max-width: 900px; }
.article-meta {
  display: flex; gap: 16px; align-items: center;
  color: var(--c-mid);
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  margin: 18px 0 32px;
}
.article-meta .dot { opacity: 0.4; }
.featured-img {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow-lg);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Breadcrumbs */
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-family: 'Geist', sans-serif;
  font-size: 0.88rem;
  color: var(--c-mid);
  margin-bottom: 20px;
}
.crumbs.light { color: rgba(255,255,255,0.78); }
.crumbs a:hover { color: var(--c-primary); }
.crumbs.light a:hover { color: var(--c-white); }
.crumbs .sep { opacity: 0.4; }

/* Reveal */
.reveal { opacity: 1; transform: translateY(20px); transition: transform 0.7s var(--ease); }
.reveal.in { transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* Cards — flat with left accent border, 8px radius, subtle bg tint */
.card {
  background: rgba(227, 242, 253, 0.4);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  padding: 28px 32px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { background: rgba(227, 242, 253, 0.7); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; color: var(--c-ink); }
.card p { color: var(--c-mid); margin: 0; }
.card.card-feature .card-icon {
  width: 48px; height: 48px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* Glass cards */
.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.glass:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(13, 71, 161, 0.14); }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter {
  background: var(--c-primary); color: var(--c-white);
  border-radius: 12px; padding: 56px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(66,165,245,0.3), transparent 50%);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { color: var(--c-white); margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,0.85); margin: 0; }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-form input[type=email] {
  flex: 1; min-width: 200px;
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  font-family: inherit; font-size: 0.95rem;
}
.nl-form input[type=email]::placeholder { color: rgba(255,255,255,0.55); }
.nl-form input[type=email]:focus { outline: none; border-color: var(--c-white); background: rgba(255,255,255,0.16); }
.nl-form button {
  padding: 14px 26px; border-radius: 4px;
  background: var(--c-white); color: var(--c-primary);
  font-family: 'Geist', sans-serif; font-weight: 600;
  transition: background 0.25s var(--ease);
}
.nl-form button:hover { background: var(--c-bg); }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; padding: 40px 28px; } }

/* Pricing plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan {
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured { background: var(--c-primary); color: var(--c-white); border-left-color: var(--c-blue); }
.plan.featured h3, .plan.featured .plan-tag { color: var(--c-white); }
.plan.featured p { color: rgba(255,255,255,0.82); }
.plan.featured ul li { color: rgba(255,255,255,0.88); }
.plan.featured ul li::before { color: var(--c-blue-soft); }
.plan-tag {
  display: inline-block; font-family: 'Geist', sans-serif;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 12px;
}
.plan h3 { margin-bottom: 10px; }
.plan p { color: var(--c-mid); font-size: 0.95rem; margin-bottom: 24px; }
.plan ul { list-style: none; margin-bottom: 28px; }
.plan ul li { padding: 9px 0 9px 26px; position: relative; font-size: 0.95rem; color: var(--c-dark); }
.plan ul li::before { content: '✓'; position: absolute; left: 0; top: 9px; color: var(--c-primary); font-weight: 700; }
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }

/* Form */
.form {
  background: var(--c-white); border-radius: 12px;
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'Geist', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--c-dark); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 0.95rem; color: var(--c-ink);
  padding: 13px 16px; background: var(--c-bg);
  border: 1.5px solid transparent; border-radius: 6px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-primary); background: var(--c-white);
}
.field .err { color: #C62828; font-size: 0.82rem; min-height: 16px; }
.form-success { display: none; padding: 18px 20px; border-radius: 6px; background: #E8F5E9; color: #2E7D32; margin-bottom: 20px; }
.form-success.show { display: block; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } .form { padding: 28px 24px; } }

/* Map */
.map-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 16/8; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Masonry */
.masonry { columns: 3; column-gap: 20px; }
.masonry-item {
  margin-bottom: 20px; break-inside: avoid;
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.5s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item .mt-cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  color: var(--c-white);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
@media (max-width: 980px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* Social proof badges */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-item {
  text-align: center; padding: 28px 20px;
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.proof-item:hover { transform: translateY(-3px); }
.proof-item .seal {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--c-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
}
.proof-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.proof-item p { font-size: 0.82rem; color: var(--c-mid); margin: 0; }
@media (max-width: 720px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }

/* Achievement badges */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge-card {
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.badge-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.badge-card .seal {
  width: 56px; height: 56px;
  background: var(--c-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.badge-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.badge-card p { color: var(--c-mid); margin: 0; font-size: 0.9rem; }
@media (max-width: 760px) { .badges { grid-template-columns: repeat(2, 1fr); } }

/* Live chat */
.chat-mockup {
  border-radius: 12px;
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 460px;
}
.chat-head {
  background: var(--c-primary); color: var(--c-white);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.chat-head .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-blue-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  color: var(--c-primary); font-size: 0.85rem;
}
.chat-head .ch-meta .nm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.95rem; }
.chat-head .ch-meta .st { font-size: 0.78rem; color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 6px; }
.chat-head .ch-meta .st::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #81C784; }
.chat-body { padding: 24px 22px; min-height: 160px; background: var(--c-bg); }
.chat-msg { display: flex; gap: 10px; margin-bottom: 14px; }
.chat-msg .av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--c-primary);
}
.chat-msg .bub {
  background: var(--c-white); padding: 10px 14px; border-radius: 10px;
  font-size: 0.92rem; max-width: 80%;
  box-shadow: var(--shadow-sm);
}
.chat-msg.you { flex-direction: row-reverse; }
.chat-msg.you .bub { background: var(--c-primary); color: var(--c-white); }
.chat-input {
  border-top: 1px solid var(--c-line);
  padding: 16px 22px;
  display: flex; gap: 12px;
}
.chat-input input {
  flex: 1; padding: 10px 14px; border-radius: 4px;
  border: 1px solid var(--c-line); font-family: inherit;
  font-size: 0.92rem; background: var(--c-white);
}
.chat-input button {
  width: 38px; height: 38px; border-radius: 4px;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
}

/* FAQ accordion */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--c-ink);
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: none;
}
.faq-q .ic {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 2px solid var(--c-primary);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
  position: relative;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ''; position: absolute; background: var(--c-primary); transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-q .ic::before { width: 12px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .ic { background: var(--c-primary); }
.faq-item.open .faq-q .ic::before { background: var(--c-white); }
.faq-item.open .faq-q .ic::after { opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a > div { padding: 0 0 24px; max-width: 720px; color: var(--c-dark); }

/* Stats counter */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 40px 0;
}
.stat .num {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.stat .lbl { font-family: 'Geist', sans-serif; color: var(--c-mid); font-size: 0.95rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Comparison table */
.cmp-wrap { overflow-x: auto; border-radius: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line-soft); }
.cmp { width: 100%; border-collapse: collapse; background: var(--c-white); }
.cmp th, .cmp td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
}
.cmp th {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; background: var(--c-bg); color: var(--c-ink);
}
.cmp tr:hover td { background: rgba(227, 242, 253, 0.3); }
.cmp .ok { color: #2E7D32; font-weight: 700; }
.cmp .no { color: #C62828; font-weight: 700; }
@media (max-width: 760px) { .cmp { min-width: 560px; } }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; border-bottom: 1px solid var(--c-line); }
.tab-btn {
  padding: 14px 24px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  font-size: 0.95rem; color: var(--c-mid);
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--c-primary); }
.tab-btn.active { color: var(--c-primary); border-bottom-color: var(--c-primary); }
.tab-panel { display: none; animation: tab-fade 0.4s var(--ease); }
.tab-panel.active { display: block; }
@keyframes tab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Testimonials grid */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test {
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.test:hover { transform: translateY(-3px); }
.test-quote { font-size: 1rem; color: var(--c-dark); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.test-author .name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; }
.test-author .role { font-size: 0.85rem; color: var(--c-mid); }
@media (max-width: 920px) { .test-grid { grid-template-columns: 1fr; } }

/* Timeline (process steps) */
.timeline { position: relative; padding-left: 36px; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 12px; bottom: 12px;
  width: 2px; background: var(--c-line);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -36px; top: 4px;
  width: 30px; height: 30px;
  background: var(--c-primary);
  border-radius: 6px;
}
.tl-item .tl-num {
  position: absolute; left: -36px; top: 4px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  color: var(--c-white);
  z-index: 1;
}
.tl-item h4 { margin-bottom: 6px; }
.tl-item p { color: var(--c-mid); margin: 0; }

/* Customer journey map */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.journey::before {
  content: ''; position: absolute; top: 32px; left: 8%; right: 8%;
  height: 2px; background: var(--c-blue-soft);
  z-index: 0;
}
.journey-step {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px 16px;
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.journey-step .num {
  width: 36px; height: 36px; margin: 0 auto 14px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.9rem;
}
.journey-step h4 { margin-bottom: 6px; font-size: 1rem; }
.journey-step p { font-size: 0.85rem; color: var(--c-mid); margin: 0; }
@media (max-width: 980px) {
  .journey { grid-template-columns: 1fr 1fr; }
  .journey::before { display: none; }
}
@media (max-width: 560px) { .journey { grid-template-columns: 1fr; } }

/* Icon feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px;
  background: var(--c-white);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 52px; height: 52px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 { margin-bottom: 8px; font-size: 1.18rem; }
.feature p { color: var(--c-mid); margin: 0; font-size: 0.95rem; }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Team grid */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 20px 24px 24px; }
.team-info .name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 1.05rem; }
.team-info .role { font-size: 0.88rem; color: var(--c-mid); margin-top: 4px; }
@media (max-width: 980px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

/* Blog preview cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px 24px 24px; }
.blog-body .cat {
  font-family: 'Geist', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 10px;
}
.blog-body h4 { margin-bottom: 8px; font-size: 1.05rem; }
.blog-body p { color: var(--c-mid); margin: 0; font-size: 0.9rem; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; } }

/* Floating action buttons */
.fab-stack {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 52px; height: 52px; border-radius: 6px;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  opacity: 0; transform: translateY(20px);
}
.fab.in { opacity: 1; transform: translateY(0); }
.fab:hover { background: var(--c-ink); transform: translateY(-3px); }

/* Article body */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.08rem; line-height: 1.8; color: var(--c-dark); margin-bottom: 1.4em; }
.article-body h2 { margin-top: 2.2em; margin-bottom: 0.6em; font-size: 1.9rem; }
.article-body h3 { margin-top: 1.8em; margin-bottom: 0.5em; font-size: 1.35rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.4em; }
.article-body ul li, .article-body ol li { margin-bottom: 0.5em; color: var(--c-dark); line-height: 1.75; }
.article-body blockquote {
  border-left: 4px solid var(--c-primary);
  background: var(--c-bg);
  padding: 16px 24px;
  margin: 2em 0;
  font-size: 1.15rem; font-style: italic;
  color: var(--c-ink);
  border-radius: 0 6px 6px 0;
}
.article-body img { border-radius: 10px; margin: 1.5em 0; box-shadow: var(--shadow-sm); }
.article-body figcaption { font-size: 0.88rem; color: var(--c-mid); text-align: center; margin-top: 8px; }

/* Tags / share */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 4px;
  background: var(--c-bg); color: var(--c-primary);
  font-family: 'Geist', sans-serif; font-size: 0.82rem; font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.tag:hover { background: var(--c-primary); color: var(--c-white); }
.share { display: flex; gap: 10px; }
.share a {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--c-bg); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.share a:hover { background: var(--c-primary); color: var(--c-white); }

/* Comments */
.comments { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.comment { display: flex; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--c-line); }
.comment:last-child { border-bottom: none; }
.comment .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; color: var(--c-primary);
}
.comment .body p { margin: 6px 0 0; font-size: 0.95rem; }
.comment .name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; }
.comment .when { font-size: 0.82rem; color: var(--c-mid); margin-left: 8px; }

/* Related cards */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card {
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  border-left: 4px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rel-img { aspect-ratio: 16/10; overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-body { padding: 20px 22px 22px; }
.rel-body h4 { margin-bottom: 8px; font-size: 1.02rem; }
.rel-body p { font-size: 0.88rem; color: var(--c-mid); margin: 0; }
@media (max-width: 980px) { .related { grid-template-columns: 1fr; } }

/* Mega footer (extra block) */
.mega-footer {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-white) 100%);
  padding: 80px 0;
}
.mega-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  margin-bottom: 48px;
}
.mega-grid h4 {
  font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink); margin-bottom: 16px;
}
.mega-grid ul { list-style: none; }
.mega-grid li { margin-bottom: 10px; }
.mega-grid a { font-family: 'Geist', sans-serif; font-size: 0.92rem; color: var(--c-mid); }
.mega-grid a:hover { color: var(--c-primary); }
.mega-grid p { color: var(--c-mid); font-size: 0.95rem; }
.mega-newsletter { display: flex; gap: 10px; margin-top: 20px; }
.mega-newsletter input {
  flex: 1; padding: 12px 16px;
  border-radius: 4px; border: 1px solid var(--c-line);
  font-family: inherit; font-size: 0.92rem; background: var(--c-white);
}
.mega-newsletter input:focus { outline: none; border-color: var(--c-primary); }
.mega-newsletter button {
  padding: 12px 20px; border-radius: 4px;
  background: var(--c-primary); color: var(--c-white);
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 0.88rem;
}
@media (max-width: 980px) { .mega-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mega-grid { grid-template-columns: 1fr; } }

/* Sidebar split */
.sidebar-split { display: grid; grid-template-columns: 1fr 280px; gap: 56px; }
.sidebar {
  background: var(--c-bg);
  border-radius: 8px; padding: 28px;
}
.sidebar h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar ul { list-style: none; }
.sidebar li { padding: 10px 0; border-bottom: 1px solid var(--c-line); }
.sidebar li:last-child { border-bottom: none; }
.sidebar a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; font-size: 0.92rem;
  color: var(--c-dark);
}
.sidebar a:hover { color: var(--c-primary); }
@media (max-width: 980px) { .sidebar-split { grid-template-columns: 1fr; gap: 32px; } }

/* Policy */
.policy { max-width: 820px; margin: 0 auto; }
.policy h2 {
  font-size: 1.6rem;
  margin-top: 2.5em; margin-bottom: 0.6em;
  padding-top: 1.6em;
  border-top: 1px solid var(--c-line);
}
.policy h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

/* Site footer */
.site-footer {
  background: var(--c-ink); color: var(--c-bg);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: var(--c-white); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.65); font-family: 'Geist', sans-serif; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--c-white); }
.footer-grid .brand { color: var(--c-white); margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 380px; }
.footer-meta { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 16px; line-height: 1.7; }
.footer-meta div { margin-bottom: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 24px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--c-white); }
.footer-policy-links { display: flex; gap: 22px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Cookie banner */
.cookie-bar {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  background: var(--c-ink); color: var(--c-white);
  padding: 20px 24px; border-radius: 8px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  z-index: 110; max-width: 720px; margin: 0 auto;
  transform: translateY(120%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-bar.show { transform: translateY(0); opacity: 1; }
.cookie-bar p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; flex: 1; min-width: 240px; }
.cookie-bar a { color: var(--c-blue-soft); text-decoration: underline; }
.cookie-bar button {
  padding: 10px 22px; border-radius: 4px;
  background: var(--c-primary); color: var(--c-white);
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 0.88rem;
}

/* Utility */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
