/* ============================================
   MODERN HOME CSS - 2025 DESIGN
   ============================================ */

/* --- ROOT VARIABLES --- */
:root {
  --navy-primary: #0D1E4E;
  --navy-dark: #08142E;
  --navy-light: #1A326B;
  
  --gradient-start: #0D1E4E;
  --gradient-end: #1A4D8F;
  
  --text-dark: #0F172A;
  --text-medium: #475569;
  --text-light: #64748B;
  
  --bg-white: #FFFFFF;
  --bg-gray-50: #F8FAFC;
  --bg-gray-100: #F1F5F9;
  
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  
  --accent-gradient: linear-gradient(135deg, #1A4D8F 0%, #0D1E4E 100%);
  --glow-color: rgba(26, 77, 143, 0.4);
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- GLOBAL RESETS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Section Containers with borders */
section {
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

section:last-of-type {
  border-bottom: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* Background Effects */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(26, 77, 143, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(13, 30, 78, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.hero-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-image: url('/static/images/adam_logo_big.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.20;
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-md);
  text-align: center;
}

.hero-section h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-md);
  color: var(--navy-dark);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
  animation: expandWidth 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.hero-description {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
  text-align: center;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 10px 30px rgba(13, 30, 78, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(13, 30, 78, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg {
  transition: transform var(--transition-smooth);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--navy-primary);
  border: 2px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s backwards;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--navy-light), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--navy-primary);
  animation: scrollDown 2s ease-in-out infinite;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
.hero-logo-bg {
    width: 90vw;
    height: 90vw;
    opacity: 0.18;      /* still visible */
  }

  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-logo-bg {
    max-width: 400px;
    max-height: 400px;
    opacity: 0.05;
  }
  
  .scroll-indicator {
    display: none;
  }
}


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

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

.accent-left {
  display: inline-block;
  animation: flyInLeft 1s ease forwards;
}

.accent-right {
  display: inline-block;
  animation: flyInRight 1s ease forwards;
  animation-delay: 0.3s; /* stagger */
}



.hero-partners {
  position: absolute;
  bottom: 1.5rem;      /* a bit closer to the bottom */
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.partners-title {
  font-size: 1rem;     /* smaller title */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #283b7d;
  margin-bottom: 0.5rem; /* tighter gap */
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;           /* smaller spacing between logos */
  flex-wrap: wrap;
}

.partner-logo {
  height: 70px;        /* smaller logos */
  width: auto;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05); /* gentle hover effect */
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--bg-white);
  position: relative;
}

.services-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 450px;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}

.service-card-inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-inner {
  border-color: var(--navy-light);
  box-shadow: 0 20px 60px rgba(13, 30, 78, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(13, 30, 78, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 15px 40px rgba(13, 30, 78, 0.3);
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  white-space: normal;
  overflow-wrap: break-word;
}

.service-card:hover h3 {
  color: var(--navy-primary);
}

.service-description {
  color: var(--text-medium);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-description {
  opacity: 0.7;
}

/* Overlay that slides up on hover */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  padding: 2.5rem;
  border-radius: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white !important;
  z-index: 10;
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

.overlay-content {
  width: 100%;
  color: white !important;
}

.overlay-content h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  padding: 0.625rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: white !important;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: white !important;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-link:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateX(4px);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .service-card {
    min-height: 400px;
  }
  
  .service-card-inner {
    padding: 2rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  .service-description {
    font-size: 1rem;
  }
  
  .service-overlay {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    min-height: 380px;
  }
  
  .service-card-inner {
    padding: 1.75rem;
  }
  
  .overlay-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .service-features li {
    font-size: 0.9375rem;
    padding: 0.5rem 0;
  }
  
  .service-link {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}


/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--bg-gray-50);
  position: relative;
}

.why-section .container {
  max-width: 1400px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(13, 30, 78, 0.05);
  color: var(--navy-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-feature {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-gray-50);
  border-radius: 20px;
  transition: all var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--navy-light);
  background: var(--bg-white);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13, 30, 78, 0.2);
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--bg-white);
  position: relative;
}

.process-section .container {
  max-width: 1400px;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  margin-bottom: 3rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(13, 30, 78, 0.25);
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.step-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--navy-light);
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(to bottom, var(--navy-light), transparent);
}

.process-step:last-child .step-connector {
  display: none;
}

.promise-section {
  max-width: 800px;
  margin: 0 auto;
}

.promise-box {
  background: var(--accent-gradient);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(13, 30, 78, 0.3);
  position: relative;
  overflow: hidden;
}

.promise-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.promise-box p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Mobile Optimisation */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;   /* Stack number above content */
    align-items: flex-start;  /* Align content left */
    gap: 1rem;
  }

  .step-number {
    width: 60px;   /* Smaller circle on mobile */
    height: 60px;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .step-content {
    padding: 1.25rem;  /* Reduce padding for tighter space */
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .step-connector {
    left: 29px;   /* Center line with smaller circle */
    top: 60px;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .step-connector {
    left: 24px;  /* Adjust for smaller circle */
  }
}
@media (max-width: 768px) {
  .process-timeline {
    padding-left: 2.5rem; /* shift content right so numbers don't get cut */
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .step-connector {
    left: 30px; /* re-align with smaller number */
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--bg-gray-50);
}

.faq-section .container {
  max-width: 1400px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-gray-50);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--navy-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  user-select: none;
  transition: all var(--transition-smooth);
}

.faq-question:hover {
  color: var(--navy-primary);
}

.faq-icon {
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-toggle:checked + .faq-question .faq-icon {
  transform: rotate(180deg);
}

/* Default closed state */
.faq-answer {
  max-height: 0;
  padding: 0;                 /* no padding when closed */
  overflow: hidden;           /* hide hidden content */
  opacity: 0;                 /* make invisible */
  transition: 
    max-height 0.4s ease,
    padding 0.4s ease,
    opacity 0.3s ease;
}

/* Open state when toggle is checked */
.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;          /* big enough for content */
  padding: 0 2rem 1.75rem;    /* restore padding */
  opacity: 1;                 /* fade in */
}



.faq-answer p {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-toggle:checked ~ .faq-answer {
    padding: 0 1.25rem 1rem; /* less padding on mobile */
  }
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--spacing-xl) var(--spacing-md);
  padding-bottom: calc(var(--spacing-xl) + 2rem);
  background: var(--bg-gray-50);
  position: relative;
  overflow: hidden;
  border-bottom: none;
  margin-bottom: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(26, 77, 143, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(13, 30, 78, 0.08);
  color: var(--navy-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.cta-section .btn-primary {
  background: var(--accent-gradient);
  color: white;
}

.cta-section .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 60px rgba(13, 30, 78, 0.3);
}



/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
  
  .step-connector {
    left: 20px;
  }
  
  .step-number {
    position: absolute;
    left: -60px;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .promise-box p {
    font-size: 1.25rem;
  }
  
  .section-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    display: none;
  }
  
  .faq-question {
    font-size: 1.125rem;
    padding: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}