/* CarPal - Light mode with blue, tan, orange accent */

:root {
  /* Core palette */
  --white: #ffffff;
  --cream: #faf8f5;
  --tan-light: #f0ebe3;
  --tan: #d9cfc1;
  --tan-dark: #a89a8a;
  
  /* Blue - trustworthy, automotive */
  --blue-900: #1a2e44;
  --blue-800: #264060;
  --blue-700: #2d4a6f;
  --blue-600: #3d5a80;
  --blue-500: #5a7a9a;
  
  /* Text */
  --text-primary: #1a2e44;
  --text-secondary: #5a6a7a;
  --text-muted: #8a9aaa;
  
  /* Orange accent - highlight only */
  --accent: #e76b47;
  --accent-hover: #d15a38;
  
  /* Borders */
  --border: #e5ddd3;
}

/* ═══════════════════════════════════════════════════════════════
   SEXY MODE ANIMATIONS 
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 107, 71, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px 5px rgba(231, 107, 71, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(231, 107, 71, 0.3);
  }
  50% {
    border-color: var(--accent-hover);
    box-shadow: 0 0 15px rgba(231, 107, 71, 0.5);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  height: 32px;
  width: auto;
  transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
  filter: brightness(1.1);
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: var(--blue-900);
}

.hero--image {
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
}

.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,68,0.95) 0%, rgba(26,46,68,0.75) 50%, rgba(26,46,68,0.5) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 580px;
  margin-bottom: 1.25rem;
  color: var(--white);
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero p {
  font-size: 1.15rem;
  color: var(--tan);
  max-width: 480px;
  line-height: 1.7;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-ctas .btn:nth-child(1) {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.hero-ctas .btn:nth-child(2) {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 107, 71, 0.3);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(231, 107, 71, 0.4);
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--white {
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn--white:hover {
  background: var(--tan-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn--white:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--blue-800);
  border: 2px solid var(--blue-600);
}

.btn--outline:hover {
  background: var(--blue-800);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(38, 64, 96, 0.3);
}

.btn--outline:active {
  transform: translateY(-1px) scale(0.98);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--tan {
  background: var(--tan-light);
}

.section--blue {
  background: var(--blue-900);
  color: var(--white);
}

.section--blue h2 {
  color: var(--white);
}

.section--blue p {
  color: var(--tan);
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

/* Scroll reveal animations */
.section,
.text-block,
.trust-grid,
.steps,
.faq-list,
.cta .container {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Features */
.features {
  display: grid;
  gap: 0.75rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(231, 107, 71, 0);
  transition: box-shadow 0.4s ease;
}

.feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature:hover::after {
  box-shadow: 0 0 15px 3px rgba(231, 107, 71, 0.4);
}

.feature:nth-child(1) { animation: fadeInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.feature:nth-child(2) { animation: fadeInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.feature:nth-child(3) { animation: fadeInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.feature:nth-child(4) { animation: fadeInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.feature:nth-child(5) { animation: fadeInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature span {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Text blocks */
.text-block {
  max-width: 620px;
}

.text-block h2 {
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.text-block h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue-600));
  border-radius: 2px;
}

.text-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.text-block p:last-child {
  margin-bottom: 0;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:nth-child(1) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.trust-item:nth-child(2) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.trust-item:nth-child(3) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }

.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--blue-800);
  transition: color 0.3s ease;
}

.trust-item:hover h3 {
  color: var(--accent);
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.faq-chevron {
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question:hover .faq-chevron {
  color: var(--accent);
  transform: translateY(2px);
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-question {
  color: var(--accent);
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
  animation: float 6s ease-in-out infinite;
}

.cta .container {
  max-width: 580px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta h2 {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
  color: var(--white);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cta p {
  color: var(--tan);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.cta .btn {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Content pages */
.content-page {
  padding: 3.5rem 0;
}

.content-page h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.content-page .meta {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.content-page section {
  margin-bottom: 2rem;
}

.content-page h2 {
  font-size: 1rem;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.content-page p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.content-page a {
  color: var(--accent);
}

.content-page a:hover {
  text-decoration: underline;
}

.mission-box {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 6px;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mission-box:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left-color: var(--accent-hover);
}

.mission-box h2 {
  color: var(--blue-800);
  margin-bottom: 0.5rem;
}

.mission-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.pillars {
  display: grid;
  gap: 0.875rem;
}

.pillar {
  padding: 1.25rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(231, 107, 71, 0.05), transparent);
  transition: left 0.5s ease;
}

.pillar:hover::before {
  left: 100%;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.pillar:nth-child(1) { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.pillar:nth-child(2) { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.pillar:nth-child(3) { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.pillar:nth-child(4) { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }

.pillar h3 {
  font-size: 0.95rem;
  margin-bottom: 0.375rem;
  color: var(--blue-800);
  transition: color 0.3s ease;
}

.pillar:hover h3 {
  color: var(--accent);
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--blue-900);
  padding: 2.5rem 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: var(--tan);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links a {
  color: var(--tan);
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--tan-dark);
  font-size: 0.8rem;
  width: 100%;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step:nth-child(1) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.step:nth-child(2) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.step:nth-child(3) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(231, 107, 71, 0.3);
}

.step:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(231, 107, 71, 0.5);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--blue-800);
  transition: color 0.3s ease;
}

.step:hover h3 {
  color: var(--accent);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO - UNIFIED COMPONENT
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(231, 107, 71, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(90, 122, 154, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 107, 71, 0.1) 0%, transparent 70%);
  transform: translateY(-50%);
  animation: float 8s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(231, 107, 71, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  max-width: 650px;
  line-height: 1.2;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--tan);
  max-width: 550px;
  line-height: 1.7;
  margin-top: 1.25rem;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.page-hero__ctas .btn:nth-child(1) {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.page-hero__ctas .btn:nth-child(2) {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

/* Homepage hero variant - larger & more dramatic */
.page-hero--home {
  padding: 7rem 0 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-hero--home .page-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 700px;
}

.page-hero--home .page-hero__subtitle {
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SECTIONS
   ═══════════════════════════════════════════════════════════════ */

/* About Mission */
.about-mission {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue-600), transparent);
}

.about-mission__card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.02),
    0 12px 24px rgba(0,0,0,0.04),
    0 24px 48px rgba(0,0,0,0.04);
  position: relative;
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-mission__card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 8px 12px rgba(0,0,0,0.02),
    0 24px 48px rgba(0,0,0,0.06),
    0 48px 96px rgba(0,0,0,0.06);
}

.about-mission__card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent), var(--blue-600));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-mission__card:hover::before {
  opacity: 1;
}

.about-mission__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  box-shadow: 0 8px 24px rgba(231, 107, 71, 0.3);
  animation: float 4s ease-in-out infinite;
}

.about-mission__card h2 {
  font-size: 1.25rem;
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.about-mission__text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* About Story */
.about-story {
  padding: 5rem 0;
  background: var(--tan-light);
}

.about-story__content {
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-story h2 {
  font-size: 1.75rem;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.about-story__divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue-600));
  border-radius: 2px;
  margin-bottom: 2rem;
}

.about-story p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-story strong {
  color: var(--blue-800);
  font-weight: 600;
}

/* About Values */
.about-values {
  padding: 5rem 0;
  background: var(--cream);
}

.about-values__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--blue-900);
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-value {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-value:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-value:hover::before {
  transform: scaleX(1);
}

.about-value:nth-child(1) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.about-value:nth-child(2) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.about-value:nth-child(3) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.about-value:nth-child(4) { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }

.about-value__number {
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--tan), var(--tan-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.about-value:hover .about-value__number {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
}

.about-value h3 {
  font-size: 1.1rem;
  color: var(--blue-800);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.about-value:hover h3 {
  color: var(--accent);
}

.about-value p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .about-values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  
  .nav {
    display: none;
  }
  
  .hero {
    padding: 3.5rem 0 3rem;
    min-height: auto;
  }
  
  .hero--image {
    background-attachment: scroll;
  }
  
  .hero--image::before {
    background: rgba(26,46,68,0.88);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Page hero mobile */
  .page-hero {
    padding: 4rem 0 3rem;
  }
  
  .page-hero--home {
    padding: 4rem 0 3.5rem;
    min-height: auto;
  }
  
  .page-hero__glow {
    display: none;
  }
  
  .page-hero__ctas {
    flex-direction: column;
  }
  
  /* About page mobile */
  .about-mission,
  .about-story,
  .about-values {
    padding: 3rem 0;
  }
  
  .about-mission__card {
    padding: 2rem 1.5rem;
  }
  
  .about-value {
    padding: 1.5rem;
  }
  
  .about-value__number {
    font-size: 2rem;
  }
}

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

/* Focus states for accessibility */
.btn:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Smooth cursor on interactive elements */
.btn,
.nav a,
.footer-links a,
.faq-question,
.trust-item,
.step,
.pillar,
.feature {
  cursor: pointer;
}
