/*
Theme Name: SubItUp Landing Page - Deploy 2026-04-06
Theme URI: https://subitup.com
Author: SubItUp
Description: Custom WordPress theme for SubItUp higher education landing page - synced with React app
Version: 3.5.0
License: GNU General Public License v2 or later
Text Domain: subitup
Last Updated: 2026-04-06
*/

/* ==================== CSS Variables ==================== */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 20%);
  --primary: hsl(24, 89%, 54%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(187, 100%, 34%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 97%);
  --muted-foreground: hsl(0, 0%, 47%);
  --accent: hsl(270, 45%, 58%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(214, 32%, 91%);
  --radius: 12px;
  --brand-navy: hsl(195, 100%, 28%);
  --brand-orange: hsl(24, 89%, 54%);
  --brand-teal: hsl(187, 100%, 34%);
  --brand-blue-light: hsl(210, 40%, 97%);
  --brand-purple: hsl(270, 45%, 58%);
  --brand-pink: hsl(336, 84%, 58%);
  --brand-green: hsl(162, 63%, 41%);
  --brand-cyan: hsl(194, 100%, 50%);
  --shadow-soft: 0 1px 3px 0 hsl(0 0% 0% / 0.06), 0 1px 2px -1px hsl(0 0% 0% / 0.06);
  --shadow-elevated: 0 4px 24px -4px hsl(0 0% 0% / 0.08), 0 2px 8px -2px hsl(0 0% 0% / 0.04);
}

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

html { overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.375rem, 4vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.125rem, 3vw, 1.75rem); line-height: 1.2; }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ADA Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Reduced motion — ADA */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (forced-colors: active) {
  .feature-card, .step-card, .results-card-before, .results-card-after { border: 2px solid CanvasText; }
}

::selection { background: hsl(24 89% 54% / 0.2); color: var(--brand-navy); }

/* ==================== Container ==================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; font-size: 1rem; font-weight: 600; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all 0.2s ease; min-height: 48px; line-height: 1;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.15);
}
.btn:hover { transform: scale(1.02); box-shadow: 0 8px 20px -4px rgba(0,0,0,0.2); }

.btn-primary { background-color: var(--brand-orange); color: white; }
.btn-primary:hover { background-color: hsl(24, 89%, 45%); }

.btn-navy { background-color: var(--brand-navy); color: white; }
.btn-navy:hover { background-color: hsl(195, 100%, 22%); }

.btn-outline {
  background-color: rgba(255, 255, 255, 0.15); color: white;
  border: 2px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(12px);
}
.btn-outline:hover { background-color: rgba(255, 255, 255, 0.25); }

.btn-teal { background-color: var(--brand-teal); color: white; border: none; }
.btn-teal:hover { background-color: hsl(187, 100%, 28%); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ==================== Skip Link ==================== */
.skip-to-content {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999;
}
.skip-to-content:focus {
  position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
  padding: 0.75rem 1.5rem; background: var(--brand-orange); color: white;
  font-weight: 600; border-radius: var(--radius); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

/* ==================== Sticky Header ==================== */
.sticky-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background-color: hsl(195 100% 28% / 0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.3);
  transform: translateY(-100%); transition: transform 0.25s ease-out;
}
.sticky-header.visible { transform: translateY(0); }
.admin-bar .sticky-header.visible { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .sticky-header.visible { top: 46px; } }

.sticky-header .header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.sticky-header .logo { height: 24px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }

/* ==================== Hero Section — Campus photo bg ==================== */
.hero {
  position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center;
}

.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(24 89% 54% / 0.9), hsl(24 89% 54% / 0.8), hsl(24 89% 54% / 0.6));
}

.hero-container { position: relative; z-index: 10; width: 100%; padding-top: 4rem; padding-bottom: 4rem; }

.hero-grid { display: grid; gap: 2.5rem; align-items: center; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}

.hero-content { color: white; }

.hero h1 { color: white !important; margin-bottom: 1.5rem; line-height: 1.05; letter-spacing: -0.02em; }

.hero-description { font-size: 1.125rem; margin-bottom: 2rem; opacity: 0.85; max-width: 36rem; line-height: 1.6; }
@media (min-width: 1024px) { .hero-description { font-size: 1.25rem; } }

/* Hero trust stats */
.hero-trust-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
}
.hero-trust-stats span { display: flex; align-items: center; gap: 0.375rem; }
.hero-trust-stats svg { color: var(--brand-navy); }

.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

/* Hero Form Card */
.hero-form-wrapper { max-width: 28rem; margin: 0 auto; width: 100%; }
@media (min-width: 1024px) { .hero-form-wrapper { margin: 0 0 0 auto; } }

.hero-form-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
}

.hero-form-header {
  background-color: var(--brand-navy); padding: 1.5rem; text-align: center;
  border-bottom: 2px solid var(--brand-orange);
}
.hero-form-header h2 { color: white !important; font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
@media (min-width: 640px) { .hero-form-header h2 { font-size: 1.25rem; } }
.hero-form-header p { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; margin-top: 0.375rem; line-height: 1.5; }

.hero-form-body { padding: 1.75rem 1.5rem; }

.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
@media (max-width: 359px) { .hero-form .form-row { grid-template-columns: 1fr; } }
.hero-form .form-field { margin-bottom: 1rem; }

.hero-form input {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; background-color: hsl(0, 0%, 97%);
  min-height: 48px; transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
  color: var(--foreground);
}
.hero-form input::placeholder { color: var(--muted-foreground); }
.hero-form input:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(234, 137, 38, 0.15); }

.hero-form .btn-submit {
  width: 100%; background-color: var(--brand-orange); color: white;
  font-size: 1rem; font-weight: 600; font-family: inherit; padding: 0.875rem 1.5rem;
  border: none; border-radius: var(--radius); cursor: pointer; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s; -webkit-appearance: none; appearance: none;
  box-shadow: 0 4px 12px -2px rgba(234,137,38,0.3);
}
.hero-form .btn-submit:hover { background-color: hsl(24, 89%, 48%); transform: scale(1.01); box-shadow: 0 6px 16px -2px rgba(234,137,38,0.4); }

.hero-form-privacy { text-align: center; margin-top: 1.25rem; font-size: 0.75rem; color: var(--muted-foreground); display: flex; align-items: center; justify-content: center; gap: 0.375rem; }

.hero-form-success { text-align: center; padding: 2rem 0; }
.hero-form-success .success-icon { width: 3rem; height: 3rem; border-radius: 50%; background: hsl(162 63% 41% / 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.hero-form-success .success-icon svg { color: var(--brand-green); }
.hero-form-success p:first-of-type { font-size: 1.125rem; font-weight: 600; color: var(--brand-navy); }
.hero-form-success p:last-of-type { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ==================== Social Proof Section ==================== */
.social-proof { background-color: var(--background); }

.logo-trust-bar { border-bottom: 1px solid hsl(214 32% 91% / 0.5); padding: 2rem 0 2.5rem; }

.logo-carousel-mask {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.social-proof-content { padding: 4rem 0 4rem; }
@media (min-width: 640px) { .social-proof-content { padding: 5rem 0 6rem; } }

.section-header { text-align: center; margin-bottom: 1.5rem; }
.section-subheader { text-align: center; margin-bottom: 4rem; }
.section-subheader p { font-size: 1.125rem; color: var(--muted-foreground); }
.section-header h2 { font-weight: 700; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; line-height: 1.6; }

/* Logo Gallery */
.logo-gallery { overflow: hidden; }

.logo-scroll { display: flex; animation: scroll 30s linear infinite; }
.logo-scroll:hover { animation-play-state: paused; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item { flex-shrink: 0; width: 160px; height: 80px; margin: 0 1.5rem; display: flex; align-items: center; justify-content: center; }
@media (min-width: 640px) { .logo-item { margin: 0 2rem; } }
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: 1; transition: all 0.3s; }
.logo-item img:hover { opacity: 0.7; filter: grayscale(1); }

/* Testimonials — Asymmetric */
.testimonials-grid-asymmetric { display: grid; gap: 2rem; max-width: 72rem; margin: 0 auto 4rem; align-items: stretch; }
@media (min-width: 1024px) { .testimonials-grid-asymmetric { grid-template-columns: 2fr 3fr; } }

.testimonial-card-teal {
  background-color: var(--brand-teal); color: white; border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; height: 100%;
  box-shadow: 0 12px 40px -8px rgba(0,110,130,0.3);
}
@media (min-width: 640px) { .testimonial-card-teal { padding: 2.5rem; } }

.testimonial-quote { font-size: 1.125rem; margin-bottom: 1.5rem; line-height: 1.6; font-weight: 300; font-style: italic; }
@media (min-width: 640px) { .testimonial-quote { font-size: 1.25rem; } }
.testimonial-divider { width: 2.5rem; height: 1px; background: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; color: rgba(255,255,255,0.9); }

/* Video Testimonial */
.video-testimonial {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 12px 40px -8px rgba(0,0,0,0.2); border-bottom: 4px solid var(--brand-orange);
}
.video-testimonial iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.video-overlay {
  position: absolute; inset: 0; cursor: pointer; display: flex; flex-direction: column;
  justify-content: space-between; background: rgba(0, 60, 90, 0.85); transition: opacity 0.4s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.video-overlay-content { padding: 1.25rem 1.75rem; }
@media (min-width: 640px) { .video-overlay-content { padding: 1.75rem; } }
.video-overlay-quote { color: rgba(255, 255, 255, 0.9); font-style: italic; font-size: 0.875rem; line-height: 1.6; max-width: 28rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .video-overlay-quote { font-size: 1rem; } }
.video-overlay-profile { display: flex; align-items: center; gap: 0.75rem; }
.video-overlay-profile img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3); }
@media (min-width: 640px) { .video-overlay-profile img { width: 3rem; height: 3rem; } }
.video-overlay-name { color: white; font-weight: 700; font-size: 0.875rem; }
@media (min-width: 640px) { .video-overlay-name { font-size: 1rem; } }
.video-overlay-org { color: var(--brand-orange); font-size: 0.75rem; }
@media (min-width: 640px) { .video-overlay-org { font-size: 0.875rem; } }
.video-play-area { flex: 1; display: flex; align-items: center; justify-content: center; }
.video-play-btn {
  width: 4rem; height: 4rem; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s; border: none; cursor: pointer; min-width: 44px; min-height: 44px;
}
.video-play-btn:hover { background-color: var(--brand-orange); }
.video-play-btn svg { width: 1.75rem; height: 1.75rem; color: var(--brand-navy); margin-left: 3px; transition: color 0.2s; }
.video-play-btn:hover svg { color: white; }
.video-spacer { padding: 1rem; }

/* Verticals — Portrait */
.verticals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .verticals-grid { gap: 1.5rem; } }
@media (min-width: 768px) { .verticals-grid { grid-template-columns: repeat(4, 1fr); } }

.vertical-portrait { aspect-ratio: 3 / 4; }
.vertical-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.vertical-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.vertical-item:hover img { transform: scale(1.1); }
.vertical-label {
  position: absolute; bottom: 0; left: 0; right: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding: 1.25rem 0.75rem;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.65) 0%, hsl(0 0% 0% / 0.2) 60%, transparent 100%);
  color: hsl(0 0% 100%); text-align: center; font-size: 0.875rem; line-height: 1.4;
  text-shadow: 0 2px 8px hsl(0 0% 0% / 0.5); transition: background 0.3s;
}
.vertical-item:hover .vertical-label { background: linear-gradient(to top, hsl(0 0% 0% / 0.75) 0%, hsl(0 0% 0% / 0.25) 60%, transparent 100%); }
.vertical-label strong { display: block; font-weight: 700; font-size: 1.25rem; line-height: 1.3; margin-top: 0.125rem; }

/* ==================== Problem/Solution Section — Asymmetric ==================== */
.problem-solution { padding: 4rem 0; background-color: white; }
@media (min-width: 640px) { .problem-solution { padding: 6rem 0; } }

.problem-solution-grid { display: grid; gap: 2.5rem; max-width: 72rem; margin: 0 auto; align-items: start; }
@media (min-width: 1024px) { .problem-solution-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }

.ps-heading-col h2 { margin-bottom: 1rem; }
.ps-heading-col h3 { font-weight: 600; color: hsl(195 100% 28% / 0.8); margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .ps-heading-col { position: sticky; top: 6rem; } }

.ps-cta-link { color: var(--brand-orange); font-weight: 500; font-size: 0.875rem; transition: color 0.2s; display: inline-flex; align-items: center; min-height: 44px; }
.ps-cta-link:hover { color: hsl(24, 89%, 45%); }

.ps-cards-col { display: flex; flex-direction: column; gap: 1.5rem; }

.results-card-before {
  border-radius: var(--radius); padding: 1.75rem 2rem;
  background: hsl(0 84% 60% / 0.04); border: 1px solid hsl(0 84% 60% / 0.1);
}

.results-card-after {
  border-radius: var(--radius); padding: 1.75rem 2rem;
  background: hsl(162 63% 41% / 0.04); border: 1px solid hsl(162 63% 41% / 0.12);
  border-left: 4px solid var(--brand-green);
}

.results-card-before h4, .results-card-after h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }

.dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: var(--destructive); }
.dot-green { background: var(--brand-green); }

.results-list { list-style: none; padding: 0; }
.results-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; }
.results-list .x-mark { color: var(--destructive); font-weight: 700; font-size: 1.125rem; line-height: 1; margin-top: 0.125rem; }
.results-list .check-mark { color: var(--brand-green); font-weight: 700; font-size: 1.125rem; line-height: 1; margin-top: 0.125rem; }
.results-card-before .results-list li { color: hsl(0 0% 20% / 0.8); }

/* ==================== How It Works Section ==================== */
.how-it-works { padding: 4rem 0; background-color: white; }
@media (min-width: 640px) { .how-it-works { padding: 6rem 0; } }

.how-it-works .section-label { text-align: center; margin-bottom: 1rem; }
.how-it-works .section-label span {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brand-orange); display: inline-block; padding: 0.375rem 1rem;
  background: hsl(24 89% 54% / 0.08); border-radius: 9999px;
}
.how-it-works .section-header { margin-bottom: 4rem; }

.steps-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto; align-items: stretch; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--card); border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-soft); text-align: center; padding: 2.5rem 2rem;
  height: 100%; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }

.step-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: rgba(0, 60, 90, 0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.step-icon svg { width: 1.75rem; height: 1.75rem; color: var(--brand-navy); }

.step-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 0.75rem; }
.step-card h3 { font-weight: 700; margin-bottom: 1rem; }
.step-card p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }
.how-it-works .section-cta { text-align: center; margin-top: 3.5rem; }

/* ==================== Features Section ==================== */
.features { padding: 4rem 0; background-color: var(--brand-blue-light); }
@media (min-width: 640px) { .features { padding: 6rem 0; } }

.features .section-header { margin-bottom: 4rem; }
.features .section-header p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 48rem; margin: 0 auto; line-height: 1.6; }

.features-grid { display: grid; gap: 1.5rem; max-width: 72rem; margin: 0 auto; list-style: none; padding: 0; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background-color: white; border-radius: var(--radius); padding: 2rem; border: none;
  box-shadow: var(--shadow-soft); transition: box-shadow 0.3s, transform 0.3s; height: 100%;
}
.feature-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }

.feature-icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon-wrap svg { width: 1.5rem; height: 1.5rem; }
.feature-icon-wrap.orange { background: rgba(234, 137, 38, 0.1); }
.feature-icon-wrap.orange svg { color: var(--brand-orange); }
.feature-icon-wrap.teal { background: rgba(0, 139, 139, 0.1); }
.feature-icon-wrap.teal svg { color: var(--brand-teal); }
.feature-icon-wrap.red { background: rgba(239, 68, 68, 0.1); }
.feature-icon-wrap.red svg { color: var(--destructive); }
.feature-icon-wrap.green { background: rgba(52, 175, 131, 0.1); }
.feature-icon-wrap.green svg { color: var(--brand-green); }
.feature-icon-wrap.purple { background: rgba(139, 92, 196, 0.1); }
.feature-icon-wrap.purple svg { color: var(--brand-purple); }
.feature-icon-wrap.cyan { background: rgba(0, 163, 255, 0.1); }
.feature-icon-wrap.cyan svg { color: var(--brand-cyan); }

.feature-card h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.feature-card p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.6; }
.feature-badge { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--brand-orange); background: rgba(234, 137, 38, 0.08); padding: 0.375rem 0.875rem; border-radius: 9999px; }

/* ==================== FAQ Section ==================== */
.faq { padding: 4rem 0; background-color: var(--background); }
@media (min-width: 640px) { .faq { padding: 6rem 0; } }
.faq .section-header { margin-bottom: 3.5rem; }

.faq-list { max-width: 48rem; margin: 0 auto; list-style: none; padding: 0.5rem; background: white; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.faq-item { border-bottom: 1px solid hsl(214 32% 91% / 0.5); padding: 0 1rem; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%; background: none; border: none; padding: 1.25rem 0; font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--brand-navy); min-height: 52px; font-family: inherit; transition: color 0.2s; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question:hover { color: var(--brand-orange); }

.faq-chevron { transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1.25rem; color: var(--muted-foreground); line-height: 1.6; }
.faq-item:not([open]) .faq-answer { display: none; }

/* ==================== Final CTA Section ==================== */
.final-cta { padding: 5rem 0; background-color: var(--brand-navy); position: relative; overflow: hidden; }
@media (min-width: 640px) { .final-cta { padding: 7rem 0; } }

.cta-accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--brand-orange), var(--brand-teal), var(--brand-orange)); }

.final-cta .cta-inner { max-width: 48rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-cta h2 { color: white !important; font-weight: 700; margin-bottom: 1.25rem; }
.final-cta .cta-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 3rem; line-height: 1.6; }
.final-cta .cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .final-cta .cta-buttons { flex-direction: row; } }

/* ==================== Footer ==================== */
.site-footer { background-color: var(--brand-navy); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }
.footer-logo { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-links-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 480px) { .footer-links-row { gap: 0.5rem; font-size: 0.8125rem; } }
.footer-links-row a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; padding: 0.25rem; }
.footer-links-row a:hover { color: white; }
.footer-links-row svg { width: 1.25rem; height: 1.25rem; }
.footer-dot { color: rgba(255, 255, 255, 0.2); }
.footer-text-link { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-text-link:hover { color: rgba(255, 255, 255, 0.8); }

/* ==================== Animations ==================== */
.js-animate .animate-target { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-animate .animate-target.animate-in, .animate-target { opacity: 1; transform: translateY(0); }

/* ==================== Utility ==================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
