/* ============================================================
   Merchdex - Global Stylesheet
   Clean, light, professional SaaS (Stripe / Notion direction)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0A0F1E;
  --blue:      #2563EB;
  --blue-dark: #1D4ED8;
  --blue-soft: #EFF4FF;
  --blue-mid:  #DBEAFE;
  --grey-6:    #6B7280;
  --grey-4:    #9CA3AF;
  --grey-2:    #E5E7EB;
  --grey-1:    #F3F4F6;
  --page:      #F8F9FC;
  --white:     #FFFFFF;
  --green:     #059669;
  --amber:     #D97706;
  --red:       #DC2626;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

  --max:       1200px;
  --font:      'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────────────── */
.display { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); }
.headline { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); }
.subhead  { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; color: var(--grey-6); line-height: 1.55; }
.label    { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.body-lg  { font-size: 1.0625rem; line-height: 1.7; color: var(--grey-6); }
.body-sm  { font-size: .875rem; line-height: 1.6; color: var(--grey-6); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .15s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1.5px solid var(--grey-2); }
.btn-secondary:hover { border-color: var(--grey-4); text-decoration: none; color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--blue); padding: 11px 18px; }
.btn-ghost:hover { background: var(--blue-soft); text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .8125rem; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,249,252,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-2);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.nav-logo-text { font-size: 1.0625rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a { padding: 6px 12px; border-radius: 6px; font-size: .9rem; font-weight: 500; color: var(--grey-6); transition: all .12s; text-decoration: none; }
.nav-links a:hover { color: var(--ink); background: var(--grey-1); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 88px 0 80px; background: var(--white); border-bottom: 1px solid var(--grey-2); }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-soft); border: 1px solid var(--blue-mid); border-radius: 100px; padding: 5px 14px; margin-bottom: 28px; }
.hero-eyebrow span { font-size: .78rem; font-weight: 600; color: var(--blue); letter-spacing: .04em; text-transform: uppercase; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: .8125rem; color: var(--grey-4); margin-top: 16px; }
.hero-proof { display: flex; align-items: center; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--grey-2); flex-wrap: wrap; }
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-item strong { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.hero-proof-item span { font-size: .8rem; color: var(--grey-6); }
.hero-proof-divider { width: 1px; height: 36px; background: var(--grey-2); }

/* ── Score Widget (signature element) ───────────────────── */
.score-widget {
  background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg); position: relative;
}
.score-widget-label { font-size: .78rem; font-weight: 700; color: var(--grey-4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.score-ring-wrap { display: flex; justify-content: center; margin-bottom: 24px; position: relative; }
.score-ring-svg { width: 160px; height: 160px; transform: rotate(-90deg); }
.score-ring-bg  { fill: none; stroke: var(--grey-2); stroke-width: 10; }
.score-ring-fg  { fill: none; stroke: var(--blue); stroke-width: 10; stroke-linecap: round;
                  stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.score-ring-fg.is-red    { stroke: var(--red); }
.score-ring-fg.is-amber  { stroke: var(--amber); }
.score-ring-fg.is-green  { stroke: var(--green); }
.score-number { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-number span { font-size: 2.5rem; font-weight: 900; color: var(--ink); line-height: 1; }
.score-number small { font-size: .75rem; color: var(--grey-4); font-weight: 500; }
.score-issues { display: flex; flex-direction: column; gap: 10px; }
.score-issue { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 8px; }
.score-issue.crit { background: #FEF2F2; }
.score-issue.warn { background: #FFFBEB; }
.score-issue.pass { background: #F0FDF4; }
.score-issue-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.score-issue.crit .score-issue-dot { background: var(--red); }
.score-issue.warn .score-issue-dot { background: var(--amber); }
.score-issue.pass .score-issue-dot { background: var(--green); }
.score-issue p { font-size: .8rem; color: var(--ink); font-weight: 500; margin-bottom: 2px; }
.score-issue span { font-size: .75rem; color: var(--grey-6); }
.widget-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white); font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap; letter-spacing: .04em;
}

/* ── Logo Bar ────────────────────────────────────────────── */
.logo-bar { background: var(--grey-1); border-bottom: 1px solid var(--grey-2); padding: 28px 0; }
.logo-bar-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.logo-bar-label { font-size: .75rem; font-weight: 600; color: var(--grey-4); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; }
.logo-placeholder { display: flex; align-items: center; gap: 8px; opacity: .5; }
.logo-placeholder .lp-icon { width: 24px; height: 24px; background: var(--grey-4); border-radius: 5px; }
.logo-placeholder span { font-size: .9375rem; font-weight: 700; color: var(--ink); }

/* ── Feature Grid ────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow .2s; }
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon { width: 44px; height: 44px; background: var(--blue-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feature-card p { font-size: .9rem; color: var(--grey-6); line-height: 1.65; }

/* ── How It Works ────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.how-grid::before { content:''; position:absolute; top:32px; left:calc(12.5% + 20px); right:calc(12.5% + 20px); height:1px; background: var(--grey-2); z-index:0; }
.how-step { text-align: center; padding: 0 16px; position: relative; z-index:1; }
.how-step-num { width: 64px; height: 64px; background: var(--white); border: 2px solid var(--grey-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.25rem; font-weight: 800; color: var(--blue); }
.how-step h3 { font-size: .9375rem; font-weight: 700; margin-bottom: 8px; }
.how-step p  { font-size: .85rem; color: var(--grey-6); }

/* ── Metrics Bar ─────────────────────────────────────────── */
.metrics-bar { background: var(--ink); padding: 64px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.metric-cell { background: var(--ink); padding: 36px 32px; text-align: center; }
.metric-cell strong { display: block; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.metric-cell span { font-size: .875rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ── Channels Section ────────────────────────────────────── */
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.channel-card { background: var(--white); border: 1.5px solid var(--grey-2); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 14px; }
.channel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.channel-dot.coming { background: var(--amber); }
.channel-card p { font-size: .9rem; font-weight: 600; color: var(--ink); }
.channel-card span { font-size: .78rem; color: var(--grey-4); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--white); border: 1.5px solid var(--grey-2); border-radius: var(--radius-lg); padding: 32px 28px; }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-mid); }
.pricing-badge { display: inline-block; background: var(--blue); color: var(--white); font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.pricing-name { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-6); margin-bottom: 6px; }
.pricing-price { font-size: 2.25rem; font-weight: 900; color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; }
.pricing-price sub { font-size: .875rem; font-weight: 500; color: var(--grey-6); vertical-align: baseline; }
.pricing-desc { font-size: .85rem; color: var(--grey-6); margin: 12px 0 24px; line-height: 1.55; }
.pricing-divider { height: 1px; background: var(--grey-2); margin: 24px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--grey-6); }
.pricing-features li::before { content: ''; width: 16px; height: 16px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.2 4.8L6.5 10.5 3.8 7.8l-.8.8 3.5 3.5 6.5-6.5-.8-.8z'/%3E%3C/svg%3E");
  background-size: cover; }
.pricing-features li.dim { opacity: .4; }
.pricing-features li.dim::before { background-color: var(--grey-4); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars span { color: #FBBF24; font-size: 1rem; }
.testimonial-quote { font-size: .9375rem; color: var(--ink); line-height: 1.65; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-mid); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .875rem; color: var(--blue); flex-shrink: 0; }
.testimonial-name { font-size: .875rem; font-weight: 700; color: var(--ink); }
.testimonial-role { font-size: .78rem; color: var(--grey-4); }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band { background: var(--blue); padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-band p  { font-size: 1.0625rem; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-band .btn-primary { background: var(--white); color: var(--blue); }
.cta-band .btn-primary:hover { background: var(--blue-soft); color: var(--blue-dark); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.1); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,.2); color: var(--white); }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-2); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--ink); gap: 16px; }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--grey-4); transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer { font-size: .9375rem; color: var(--grey-6); line-height: 1.7; padding-bottom: 22px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-top: 14px; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 10px; text-decoration: none; transition: color .12s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ── Blog ────────────────────────────────────────────────── */
.blog-hero { padding: 72px 0 56px; background: var(--white); border-bottom: 1px solid var(--grey-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s; text-decoration: none; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow); text-decoration: none; }
.blog-card-img { height: 200px; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-img-inner { font-size: 3rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--blue-soft); color: var(--blue); font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.blog-card p  { font-size: .875rem; color: var(--grey-6); line-height: 1.6; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .78rem; color: var(--grey-4); }
.blog-card-meta span { color: var(--grey-2); }
.blog-featured { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-featured .blog-card-img { height: 100%; min-height: 280px; }
.blog-featured .blog-card h3 { font-size: 1.35rem; }
.blog-featured .blog-card p  { font-size: .9375rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--grey-2); border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; color: var(--ink); background: var(--white);
  transition: border-color .15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8125rem; color: var(--grey-4); margin-bottom: 16px; }
.breadcrumb a { color: var(--grey-4); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--grey-2); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero { padding: 72px 0 64px; background: var(--white); border-bottom: 1px solid var(--grey-2); }
.page-hero .headline { margin-bottom: 16px; }
.page-hero .subhead  { max-width: 560px; }

/* ── Comparison Table ────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); overflow: hidden; }
.compare-table th { background: var(--grey-1); padding: 14px 20px; text-align: left; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--grey-6); border-bottom: 1px solid var(--grey-2); }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 14px 20px; font-size: .9rem; border-bottom: 1px solid var(--grey-2); color: var(--ink); vertical-align: middle; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--blue-soft); }
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: var(--grey-4); font-size: 1.1rem; }
.compare-table .hl { font-weight: 700; color: var(--blue); }

/* ── About ───────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--blue-soft); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 900; color: var(--blue); }
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: .825rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: .85rem; color: var(--grey-6); line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.value-item { padding: 28px; background: var(--white); border: 1px solid var(--grey-2); border-radius: var(--radius-lg); }
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-item p  { font-size: .875rem; color: var(--grey-6); line-height: 1.6; }

/* ── Section utilities ───────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-grey    { background: var(--grey-1); }
.bg-blue    { background: var(--blue-soft); }
.text-center { text-align: center; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .score-widget      { max-width: 420px; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: repeat(2, 1fr); }
  .how-grid          { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-grid::before  { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .blog-featured     { grid-template-columns: 1fr; }
  .blog-featured .blog-card-img { min-height: 200px; }
}
@media (max-width: 768px) {
  .section   { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .metrics-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .how-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .metrics-grid  { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
