/* ============================================
   ProjectAd - Design Tokens & Component Styles
   Navy / White / Light Gray palette
   ============================================ */

/* --- Type Scale --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Switzer', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ---- ProjectAd Navy Palette - Light Mode ---- */
:root, [data-theme="light"] {
  --color-bg:             #f8f9fb;
  --color-surface:        #ffffff;
  --color-surface-2:      #f1f3f7;
  --color-surface-offset: #e8eaf0;
  --color-divider:        #d5d8e0;
  --color-border:         #c8cbd6;

  --color-text:           #101828;
  --color-text-muted:     #5a6478;
  --color-text-faint:     #98a2b3;
  --color-text-inverse:   #ffffff;

  /* Primary: Navy */
  --color-primary:        #0c1f3f;
  --color-primary-hover:  #162d55;
  --color-primary-active: #1e3a6b;
  --color-primary-light:  #e8edf5;

  /* Accent: Subtle steel blue */
  --color-accent:         #2563ab;
  --color-accent-hover:   #1d4f8a;
  --color-accent-light:   #dce8f5;

  /* Functional */
  --color-success:        #0f7b46;
  --color-error:          #c0392b;
  --color-warning:        #b87514;

  /* Banner */
  --color-banner-bg:      #eef1f6;
  --color-banner-text:    #344054;
  --color-banner-border:  #d5d8e0;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
}

/* ---- Dark Mode ---- */
[data-theme="dark"] {
  --color-bg:             #0a0e17;
  --color-surface:        #111827;
  --color-surface-2:      #1a2237;
  --color-surface-offset: #151d2e;
  --color-divider:        #1e2a42;
  --color-border:         #2a3654;

  --color-text:           #e0e4ea;
  --color-text-muted:     #8b95a8;
  --color-text-faint:     #4b5668;
  --color-text-inverse:   #0a0e17;

  --color-primary:        #4a7cc9;
  --color-primary-hover:  #5c8fd8;
  --color-primary-active: #6ea0e6;
  --color-primary-light:  #1a2237;

  --color-accent:         #5b9aef;
  --color-accent-hover:   #7db0f5;
  --color-accent-light:   #1a2237;

  --color-success:        #34d399;
  --color-error:          #f87171;
  --color-warning:        #fbbf24;

  --color-banner-bg:      #111827;
  --color-banner-text:    #c0c8d8;
  --color-banner-border:  #1e2a42;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0a0e17;
    --color-surface:        #111827;
    --color-surface-2:      #1a2237;
    --color-surface-offset: #151d2e;
    --color-divider:        #1e2a42;
    --color-border:         #2a3654;
    --color-text:           #e0e4ea;
    --color-text-muted:     #8b95a8;
    --color-text-faint:     #4b5668;
    --color-text-inverse:   #0a0e17;
    --color-primary:        #4a7cc9;
    --color-primary-hover:  #5c8fd8;
    --color-primary-active: #6ea0e6;
    --color-primary-light:  #1a2237;
    --color-accent:         #5b9aef;
    --color-accent-hover:   #7db0f5;
    --color-accent-light:   #1a2237;
    --color-success:        #34d399;
    --color-error:          #f87171;
    --color-warning:        #fbbf24;
    --color-banner-bg:      #111827;
    --color-banner-text:    #c0c8d8;
    --color-banner-border:  #1e2a42;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  }
}

/* ============================================
   COMPONENTS
   ============================================ */

/* --- Container --- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* --- Top Banner --- */
.top-banner {
  background: var(--color-banner-bg);
  border-bottom: 1px solid var(--color-banner-border);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-banner-text);
  position: relative;
  z-index: 100;
}
.top-banner .banner-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.top-banner .banner-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}
.top-banner .banner-text {
  text-align: center;
  line-height: 1.5;
}
.top-banner .banner-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.top-banner .banner-close:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}
.top-banner.hidden { display: none; }

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .header-inner { padding: var(--space-4) var(--space-8); }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.logo-link svg {
  height: 32px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}

/* Desktop Nav */
.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.main-nav a:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}
.main-nav a.active {
  color: var(--color-text);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}
.mobile-menu-btn:hover {
  background: var(--color-surface-offset);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-bg);
  padding: var(--space-4);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.mobile-nav a {
  display: block;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav a:hover {
  color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-text-muted);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* --- Section --- */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}
.section-alt {
  background: var(--color-surface);
}

.section-header {
  margin-bottom: var(--space-12);
}
.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* --- Cards --- */
.card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}
.card-hover:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Grid --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Metrics / Stats --- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}
.metric-item {
  text-align: center;
  padding: var(--space-6);
}
.metric-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}
.metric-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Hero --- */
.hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-primary) 0%, #162d55 50%, var(--color-accent) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .hero-content { padding-inline: var(--space-8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-6);
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero .btn-primary {
  background: #ffffff;
  color: var(--color-primary);
}
.hero .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}
.hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
}
.faq-question:hover {
  color: var(--color-accent);
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-6);
}
.faq-answer p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  max-width: 32ch;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: #ffffff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* --- Form Styles --- */
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-label .required {
  color: var(--color-error);
}
.form-input, .form-textarea {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}
.form-input.error, .form-textarea.error {
  border-color: var(--color-error);
}
.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  display: none;
}
.form-error.visible { display: block; }

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}
.checkbox-group label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.checkbox-group label a {
  color: var(--color-accent);
}

.form-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  color: #065f46;
  font-weight: 500;
  display: none;
}
[data-theme="dark"] .form-success {
  background: #052e16;
  border-color: #166534;
  color: #6ee7b7;
}
.form-success.visible { display: block; }

/* --- Page Hero (for inner pages) --- */
.page-hero {
  background: var(--color-primary);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(160deg, var(--color-primary) 0%, #162d55 60%, var(--color-accent) 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-4);
}
.cta-section p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.cta-section .btn-primary {
  background: #ffffff;
  color: var(--color-primary);
}
.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}
.cta-section .btn-secondary {
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}
.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* --- Scroll animations --- */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* --- Misc --- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Legal content */
.legal-content {
  max-width: 75ch;
  margin-inline: auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.legal-content h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}
.legal-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.legal-content ul, .legal-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}
.legal-content li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  line-height: 1.7;
}
.legal-content a {
  color: var(--color-accent);
}

/* Process steps */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6) 0;
}
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Icon card with top icon */
.icon-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.icon-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.icon-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Feature row (asymmetric) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-visual { order: -1; }
}
.feature-visual {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-visual svg {
  width: 80%;
  height: auto;
  color: var(--color-accent);
  opacity: 0.15;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Honeypot */
.ohnohoney { position: absolute; left: -9999px; opacity: 0; }
