/* ==========================================================================
   Work Refreshed — Marketing Website
   Single CSS file for simplicity. In production, consider splitting into
   variables.css / typography.css / components.css / layout.css if the
   file exceeds ~1500 lines. Currently well within performance budget.
   ========================================================================== */

/* --- Tokens --- */
:root {
  --teal-700: #0f766e; --teal-600: #0d9488; --teal-500: #14b8a6;
  --teal-100: #ccfbf1; --teal-50: #f0fdfa;
  --coral: #f97352; --coral-hover: #e8603f; --coral-glow: rgba(249,115,82,.25);
  --navy: #0f172a; --slate: #334155;
  --gray-600: #475569; --gray-500: #64748b; --gray-400: #94a3b8;
  --gray-300: #cbd5e1; --gray-200: #e2e8f0; --gray-100: #f1f5f9;
  --warm: #fafaf9; --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,.08), 0 4px 8px rgba(15,23,42,.04);
  --shadow-xl: 0 24px 48px rgba(15,23,42,.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.7; color: var(--slate); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal-700); }
::selection { background: var(--teal-100); color: var(--navy); }

/* Skip link */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--navy); color: var(--white); padding: .5rem 1rem; border-radius: var(--radius); z-index: 1000; font-size: .875rem; }
.skip-link:focus { top: 1rem; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }
p { max-width: 65ch; }
.section-label { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 1rem; display: block; }
.section-sub { font-size: 1.125rem; color: var(--gray-600); max-width: 540px; line-height: 1.75; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: .75rem; }
.prose p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; }
.prose a { text-decoration: underline; }

/* --- Layout --- */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.container-narrow { max-width: 720px; margin-inline: auto; padding-inline: 1.5rem; }
section { padding: 6rem 0; }
.section-alt { background: var(--warm); }
.page-header { padding: 4rem 0 3rem; text-align: center; }
.page-header h1 { margin-bottom: 1rem; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8125rem 1.75rem; font-family: var(--font-body); font-size: .9375rem; font-weight: 600; border-radius: var(--radius-full); border: none; cursor: pointer; transition: all .25s ease; text-decoration: none; line-height: 1; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 2px 8px var(--coral-glow); }
.btn-primary:hover { background: var(--coral-hover); color: var(--white); box-shadow: 0 4px 16px var(--coral-glow); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--gray-300); background: var(--gray-100); color: var(--navy); }
.btn-outline { background: transparent; color: var(--teal-600); border: 1.5px solid var(--teal-600); }
.btn-outline:hover { background: var(--teal-600); color: var(--white); }
.btn-sm { padding: .5rem 1.125rem; font-size: .8125rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Cards --- */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; transition: all .25s ease; border: 1px solid var(--gray-200); }
.card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }

/* --- Badges --- */
.badge { display: inline-block; padding: .125rem .75rem; font-size: .6875rem; font-weight: 700; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }
.badge-primary { background: var(--teal-50); color: var(--teal-700); }
.badge-accent { background: #fff1ee; color: var(--coral); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(226,232,240,.6); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1400px; margin-inline: auto; padding-inline: 1.5rem; }
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--navy); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; letter-spacing: -.01em; }
.logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--teal-600), var(--teal-500)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.125rem; line-height: 1; }
.nav-desktop { display: none; align-items: center; gap: .25rem; }
.nav-desktop a { padding: .5rem 1rem; font-size: .9375rem; font-weight: 500; color: var(--gray-600); border-radius: var(--radius); transition: all .15s ease; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--navy); background: var(--gray-100); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-cta-desktop, .header-cta-secondary { display: none; }
@media (min-width: 768px) { .nav-desktop { display: flex; } .header-cta-desktop { display: inline-flex; } }
@media (min-width: 900px) { .header-cta-secondary { display: inline-flex; } }

/* Mobile toggle */
.mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--navy); border-radius: var(--radius); }
.mobile-toggle:hover { background: var(--gray-100); }
.mobile-toggle svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(15,23,42,.4); }
.mobile-nav.open { display: block; }
.mobile-nav-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(320px, 85vw); background: var(--white); padding: 1.5rem; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); overflow-y: auto; }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--navy); margin-left: auto; margin-bottom: 1.5rem; border-radius: var(--radius); }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-links a { display: block; padding: .75rem 1rem; font-size: 1.0625rem; font-weight: 500; color: var(--slate); border-radius: var(--radius); }
.mobile-nav-links a:hover { background: var(--gray-100); color: var(--navy); }
.mobile-nav-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 4rem 0 6rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(13,148,136,.06) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,82,.04) 0%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } .hero { padding: 5rem 0 8rem; } }
.hero-content { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; background: var(--teal-50); color: var(--teal-700); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid var(--teal-100); }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--teal-600); }
.hero-description { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.75; max-width: 480px; }
.hero-note { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--gray-500); margin-top: 1.25rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--teal-500); flex-shrink: 0; }
.hero-visual { display: flex; justify-content: center; }

/* Phone mockup */
.phone-mockup { width: 280px; height: 560px; background: var(--navy); border-radius: 40px; padding: 12px; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.08) inset; position: relative; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 35%); border-radius: 30px; overflow: hidden; display: flex; flex-direction: column; }
.phone-notch { width: 120px; height: 28px; background: var(--navy); border-radius: 0 0 20px 20px; margin: 0 auto; flex-shrink: 0; }
.phone-content { padding: 16px 14px; flex: 1; display: flex; flex-direction: column; }
.phone-greeting { font-size: .6875rem; color: var(--gray-500); margin-bottom: 2px; }
.phone-title { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 14px; }
.phone-card { background: var(--white); border-radius: 10px; padding: 10px; box-shadow: var(--shadow-sm); margin-bottom: 8px; display: flex; gap: 10px; align-items: center; border: 1px solid var(--gray-100); }
.phone-card-thumb { width: 50px; height: 50px; border-radius: 8px; flex-shrink: 0; }
.phone-card-info { flex: 1; min-width: 0; }
.phone-card-name { font-size: .6875rem; font-weight: 600; color: var(--navy); margin-bottom: 1px; }
.phone-card-meta { font-size: .5625rem; color: var(--gray-400); }
.phone-card-badge { font-size: .5rem; padding: 2px 5px; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.phone-card-badge.free { background: var(--teal-100); color: var(--teal-700); }
.phone-card-badge.premium { background: #fff7ed; color: #c2410c; }
.phone-nav { display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid var(--gray-200); margin-top: auto; }
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: .5rem; color: var(--gray-400); font-weight: 500; }
.phone-nav-item.active { color: var(--teal-600); }
.phone-nav-item svg { width: 16px; height: 16px; }
@media (max-width: 1023px) { .phone-mockup { width: 240px; height: 480px; } }

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; counter-reset: step; }
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.step { text-align: center; counter-increment: step; position: relative; }
.step-number { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--font-display); font-size: 1.375rem; background: var(--teal-50); color: var(--teal-700); border: 2px solid var(--teal-500); }
.step h3 { margin-bottom: .75rem; }
.step p { color: var(--gray-600); font-size: .9375rem; margin-inline: auto; max-width: 320px; }
@media (min-width: 768px) {
  .step:not(:last-child)::after { content: ''; position: absolute; top: 28px; left: calc(50% + 40px); width: calc(100% - 80px); height: 2px; background: repeating-linear-gradient(90deg, var(--gray-300) 0, var(--gray-300) 6px, transparent 6px, transparent 12px); }
}

/* ==========================================================================
   Features
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; transition: all .25s ease; border: 1px solid var(--gray-200); }
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-2px); }
.feature-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.375rem; background: var(--teal-50); color: var(--teal-600); }
.feature-card h3 { margin-bottom: .5rem; font-size: 1.1875rem; }
.feature-card p { color: var(--gray-600); font-size: .9375rem; line-height: 1.7; }

/* Feature detail (Features page alternating layout) */
.feature-detail { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .feature-detail { grid-template-columns: 1fr 1fr; } .feature-detail.reversed { direction: rtl; } .feature-detail.reversed > * { direction: ltr; } }
.feature-detail-visual { background: var(--gray-100); border-radius: var(--radius-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.feature-detail-content h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); margin-bottom: 1rem; }
.feature-detail-content p { color: var(--gray-600); margin-bottom: 1.5rem; }
.feature-checklist { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.feature-checklist li { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: var(--slate); }
.feature-checklist li svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; }

/* ==========================================================================
   Why / About
   ========================================================================== */
.why-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-top: 3rem; }
@media (min-width: 768px) { .why-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-visual { background: linear-gradient(135deg, var(--teal-50), #ecfdf5); border-radius: var(--radius-xl); padding: 3rem; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; position: relative; overflow: hidden; }
.why-visual::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(13,148,136,.08); top: 20%; left: -10%; }
.why-visual::after { content: ''; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(249,115,82,.06); bottom: 10%; right: -5%; }
.why-visual-icon { font-size: 6rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,.08)); }
.about-mission { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-mission { grid-template-columns: 1fr 1fr; } }
.about-visual { background: linear-gradient(135deg, var(--teal-50), #e0f2fe); border-radius: var(--radius-xl); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 6rem; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: all .25s ease; display: flex; flex-direction: column; }
.pricing-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--teal-600); box-shadow: 0 0 40px rgba(13,148,136,.12); }
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-600), var(--teal-500)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pricing-name { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.pricing-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .25rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.25rem; color: var(--navy); line-height: 1; }
.pricing-interval { font-size: .875rem; color: var(--gray-500); }
.pricing-desc { font-size: .8125rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--slate); }
.pricing-features li svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; margin-top: auto; }
.best-badge { position: absolute; top: -12px; right: 16px; background: var(--coral); color: var(--white); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: var(--radius-full); }

/* ==========================================================================
   Employers
   ========================================================================== */
.employer-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .employer-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.employer-benefits { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.employer-benefits li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; color: var(--slate); }
.employer-benefits li svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }
.employer-visual { background: linear-gradient(135deg, #eff6ff, var(--teal-50)); border-radius: var(--radius-xl); padding: 3rem; display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; font-size: 5rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-grid { max-width: 800px; margin: 3rem auto 0; }
.faq-category { margin-bottom: 2.5rem; }
.faq-category-title { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--teal-100); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.125rem 0; cursor: pointer; font-weight: 600; color: var(--navy); font-size: .9375rem; list-style: none; transition: color .15s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--gray-400); transition: transform .25s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--teal-600); }
.faq-answer { padding-bottom: 1.25rem; color: var(--gray-600); font-size: .9375rem; line-height: 1.75; }
.faq-answer a { text-decoration: underline; }

/* ==========================================================================
   Contact / Forms
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-method { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-method-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--teal-50); color: var(--teal-600); font-size: 1.25rem; flex-shrink: 0; }
.contact-method-label { color: var(--gray-500); font-size: .8125rem; display: block; margin-bottom: 1px; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: .75rem 1rem; font-family: var(--font-body); font-size: .9375rem; color: var(--navy); background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); transition: all .15s ease; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-error { color: var(--coral); font-size: .8125rem; margin-top: .25rem; display: block; }
.form-input.input-validation-error, .form-select.input-validation-error, .form-textarea.input-validation-error { border-color: var(--coral); }

/* Form alerts (server-side error banner) */
.form-alert { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .9375rem; line-height: 1.5; }
.form-alert svg { flex-shrink: 0; margin-top: 2px; }
.form-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-alert-error svg { color: #dc2626; }
.form-alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.form-alert-success svg { color: #16a34a; }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(13,148,136,.2) 0%, transparent 70%); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(249,115,82,.12) 0%, transparent 70%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin-inline: auto; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: var(--gray-400); font-size: 1.0625rem; margin-bottom: 2rem; margin-inline: auto; }
.store-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--white); color: var(--navy); padding: .75rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem; transition: all .25s ease; text-decoration: none; }
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--navy); }
.store-badge svg { width: 22px; height: 22px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--warm); border-top: 1px solid var(--gray-200); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--gray-500); font-size: .9375rem; margin-top: 1rem; max-width: 280px; }
.footer-heading { font-family: var(--font-body); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { color: var(--gray-500); font-size: .9375rem; transition: color .15s ease; }
.footer-links a:hover { color: var(--navy); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); font-size: .8125rem; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-500); font-size: .8125rem; }
.footer-bottom-links a:hover { color: var(--navy); }

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.pagination-info { font-size: .875rem; color: var(--gray-500); }

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: .1s; }
[data-animate-delay="2"] { transition-delay: .2s; }
[data-animate-delay="3"] { transition-delay: .3s; }
[data-animate-delay="4"] { transition-delay: .4s; }
[data-animate-delay="5"] { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) { [data-animate] { opacity: 1; transform: none; transition: none; } }
