@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

/* ==========================================================================
   1. CUSTOM PROPERTIES (DESIGN SYSTEM TOKENS)
   ========================================================================== */
:root {
  --color-primary: hsl(38, 92%, 50%);         /* Premium Amber/Gold */
  --color-primary-hover: hsl(38, 92%, 42%);
  --color-primary-light: hsl(38, 92%, 96%);
  --color-bg: hsl(0, 0%, 100%);               /* Background White */
  --color-surface: hsl(210, 40%, 98%);        /* Surface Light Gray */
  --color-surface-hover: hsl(210, 40%, 95%);
  --color-text-primary: hsl(222, 47%, 11%);   /* Near Black */
  --color-text-secondary: hsl(215, 16%, 47%); /* Dark Gray */
  --color-text-muted: hsl(215, 25%, 72%);     /* Medium Gray */
  --color-success: hsl(162, 76%, 41%);        /* Success Green */
  --color-warning: hsl(38, 92%, 50%);         /* Warning/Urgency Amber/Gold */
  --color-error: hsl(0, 84%, 60%);             /* Error Red */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES (MOBILE-FIRST)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px; /* Bottom space for mobile sticky bar */
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0; /* Mobile section spacing */
}

.text-center { text-align: center; }

/* ==========================================================================
   3. NAVIGATION (MOBILE MENU BY DEFAULT)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--color-primary);
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: 100px 32px;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition-smooth);
}

.nav-links.active {
  right: 0;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.nav-cta:hover {
  background-color: var(--color-primary-hover);
}

.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* ==========================================================================
   4. BUTTON & BADGE UTILITIES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px; /* Comfortable tap targets */
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background-color: var(--color-surface);
  border-color: var(--color-text-primary);
}

/* ==========================================================================
   5. MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
  z-index: 999;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 112px;
  padding-bottom: 56px;
  background: radial-gradient(circle at 50% 10%, hsl(38, 92%, 98%) 0%, var(--color-bg) 70%);
  text-align: center;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-tagline {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-warning);
  padding: 0 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-warning);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.hero-image-container {
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero-image-container img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   7. TRUST BAR
   ========================================================================== */
.trust-bar {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding: 20px 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-text-primary);
  font-size: 0.9rem;
}

.trust-item svg {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   8. THE PROBLEM
   ========================================================================== */
.problem {
  background-color: var(--color-bg);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-header h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1rem;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.problem-card {
  background-color: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.02);
}

.problem-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* ==========================================================================
   9. THE PACKAGE & PRICING
   ========================================================================== */
.package {
  background-color: var(--color-surface);
}

.package-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  background-color: var(--color-bg);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.02);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.feature-item svg {
  color: var(--color-success);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.feature-title {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* --- STANDALONE CALLOUT --- */
.support-callout {
  background: linear-gradient(135deg, var(--color-text-primary) 0%, hsl(222, 47%, 18%) 100%);
  color: var(--color-bg);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-callout-text h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

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

.support-callout-badge {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  align-self: flex-start;
}

/* --- PRICING CARD --- */
.pricing-card {
  background-color: var(--color-text-primary);
  color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.pricing-card h3 {
  color: var(--color-bg);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.price-original {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.price-promo {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-bg);
  line-height: 1;
  margin: 6px 0 16px;
  font-family: var(--font-heading);
}

.price-promo span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-info {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-bottom: 24px;
}

.pricing-info strong {
  color: var(--color-primary);
}

.btn-pricing {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
}

.pricing-terms {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   10. HOW IT WORKS (TIMELINE) - MOBILE 2-COLUMN GRID BY DEFAULT
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
}

.timeline::before {
  display: none; /* Hide vertical line on mobile */
}

.timeline-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  position: relative;
}

.timeline-dot {
  position: static;
  transform: none;
  margin-bottom: 8px;
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  flex-shrink: 0;
}

.timeline-card {
  width: 100% !important;
  margin: 0 !important;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-grow: 1; /* Stretch to align heights */
}

.timeline-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.timeline-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.timeline-card p {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   11. RECENT PROJECTS (MOBILE HORIZONTAL CAROUSEL BY DEFAULT)
   ========================================================================== */
.projects {
  background-color: var(--color-bg);
}

.projects-header-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.projects-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.projects-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  z-index: 20;
}

.projects-carousel-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-50%) scale(1.05);
}

.projects-carousel-btn.prev {
  left: -12px;
}

.projects-carousel-btn.next {
  right: -12px;
}

.projects-grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap; /* Prevent cards from wrapping to next line */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  width: 100%;
}

.projects-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.project-card {
  flex: 0 0 calc(50% - 8px); /* Exactly 2 visible with 16px gap */
  width: calc(50% - 8px);
  min-width: calc(50% - 8px);
  scroll-snap-align: start;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
}

/* Read More Components */
.more-text {
  display: none;
}

.dots {
  display: inline;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  font-size: 0.8rem;
  text-decoration: underline;
  display: inline-block;
}

.project-image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
}

.project-image img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 10;
}

.project-image:hover .project-overlay {
  opacity: 1;
}

.btn-overlay {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  transform: translateY(12px);
  transition: var(--transition-smooth);
  min-height: auto;
}

.project-image:hover .btn-overlay {
  transform: translateY(0);
}

.project-info {
  padding: 16px;
}

.project-meta {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.project-info p {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ==========================================================================
   12. TESTIMONIALS (UNIFORM PICTURE FRAMES & CAROUSEL)
   ========================================================================== */
.testimonials {
  background-color: var(--color-surface);
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.testimonials-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  z-index: 20;
}

.testimonials-carousel-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-50%) scale(1.05);
}

.testimonials-carousel-btn.prev {
  left: -12px;
}

.testimonials-carousel-btn.next {
  right: -12px;
}

.testimonials-grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap; /* Prevent cards from wrapping to next line on mobile */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
  background-color: var(--color-bg);
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.02);
  flex: 0 0 280px; /* Exactly 1 visible with scroll alignment */
  width: 280px;
  min-width: 280px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-frame {
  width: 100%;
  aspect-ratio: 3/4; /* Consistent aspect ratio for mobile screenshots */
  background-color: var(--color-bg); /* Matches card background */
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.03);
  padding: 8px; /* Tighter padding inside frame */
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full screenshot is always visible, never cropped */
  border-radius: 4px;
}

/* ==========================================================================
   13. ABOUT SECTION
   ========================================================================== */
.about {
  background-color: var(--color-bg);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-grid h2 {
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.about-text p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.about-image img {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  width: 100%;
}

/* ==========================================================================
   14. CHOOSE YOUR PATH
   ========================================================================== */
.paths {
  background-color: var(--color-surface);
}

.paths-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.path-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.path-info p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.path-features {
  list-style: none;
  margin-bottom: 24px;
}

.path-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.path-features li svg {
  color: var(--color-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-path {
  width: 100%;
}

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.faq {
  background-color: var(--color-bg);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 4px 0;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: var(--transition-smooth);
  color: var(--color-text-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.faq-answer p {
  padding-top: 12px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

/* ==========================================================================
   16. CONTACT FORM
   ========================================================================== */
.contact-section {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.contact-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.02);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
}

.form-control.error {
  border-color: var(--color-error);
}

.error-message {
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 4px;
  display: none;
}

.error-message.visible {
  display: block;
}

.btn-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-size: 1rem;
  padding: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  background-color: hsl(162, 76%, 96%);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
footer {
  background-color: var(--color-text-primary);
  color: var(--color-text-muted);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--color-bg);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--color-bg);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-size: 0.8rem;
}


/* ==========================================================================
   18. DESKTOP & TABLET ADAPTATIONS (min-width: 769px)
   ========================================================================== */
@media (min-width: 769px) {
  /* --- LAYOUT & PADDING --- */
  .section-padding {
    padding: 80px 0;
  }
  
  body {
    padding-bottom: 0; /* No mobile sticky bar spacing needed */
  }
  
  .mobile-sticky-bar {
    display: none !important;
  }
  
  /* --- NAVIGATION --- */
  .nav-container {
    height: 80px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    flex-direction: row;
    padding: 0;
    align-items: center;
    gap: 32px;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    width: auto;
  }
  
  .nav-cta {
    padding: 10px 20px;
    width: auto;
  }
  
  .hamburger {
    display: none;
  }
  
  /* --- HERO --- */
  .hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: left;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(5, auto);
    grid-template-areas:
      "tagline image"
      "title image"
      "desc image"
      "cta image"
      "urgency image";
    gap: 0 60px;
    align-items: center;
  }

  .hero-text {
    display: contents; /* Direct children participate in hero-grid */
  }

  .hero-tagline {
    grid-area: tagline;
    margin-bottom: 12px;
  }
  
  .hero h1 {
    grid-area: title;
    font-size: 3.5rem;
    margin-bottom: 24px;
  }
  
  .hero-desc {
    grid-area: desc;
    font-size: 1.15rem;
    margin-bottom: 32px;
  }
  
  .hero-cta-group {
    grid-area: cta;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .hero-urgency {
    grid-area: urgency;
    justify-content: flex-start;
    padding: 0;
  }

  .hero-image-container {
    grid-area: image;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /* --- TRUST BAR --- */
  .trust-content {
    flex-direction: row;
    justify-content: space-around;
    gap: 24px;
  }
  
  /* --- PROBLEM --- */
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  .problem-cards {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .problem-card {
    padding: 32px;
  }
  
  /* --- PACKAGE --- */
  .package-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }
  
  .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-desc {
    font-size: 0.875rem;
  }
  
  /* --- STANDALONE CALLOUT --- */
  .support-callout {
    grid-column: span 2;
    padding: 32px 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 16px;
  }
  
  .support-callout-text h4 {
    font-size: 1.35rem;
  }
  
  .support-callout-text p {
    font-size: 1rem;
  }
  
  .support-callout-badge {
    padding: 10px 24px;
    font-size: 0.9rem;
    align-self: auto;
  }
  
  /* --- PRICING --- */
  .pricing-card {
    padding: 48px 40px;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  
  .price-promo {
    font-size: 3.5rem;
  }
  
  .pricing-info {
    font-size: 0.95rem;
  }
  
  /* --- TIMELINE (CLEAN LEFT-ALIGNED VERTICAL TIMELINE) --- */
  .timeline {
    display: block; /* Remove grid flow */
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 24px 0 24px 64px;
  }
  
  .timeline::before {
    display: block; /* Show vertical line on desktop */
    content: '';
    position: absolute;
    top: 0;
    left: 24px; /* Align to the left side */
    width: 2px;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.08);
  }
  
  .timeline-item {
    display: block;
    margin-bottom: 24px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-dot {
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-width: 3px;
    margin-bottom: 0;
  }
  
  .timeline-card {
    display: flex;
    flex-direction: row; /* Horizontal flex container */
    align-items: center;
    gap: 24px;
    padding: 16px 28px;
    background-color: var(--color-surface);
    transition: var(--transition-smooth);
  }
  
  .timeline-card:hover {
    transform: translateX(4px);
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
    border-color: rgba(15, 23, 42, 0.06);
  }
  
  .timeline-card img {
    width: 120px; /* Small consistent visual size */
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }
  
  .timeline-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }
  
  .timeline-card p {
    font-size: 0.95rem;
  }
  
  /* --- RECENT PROJECTS (3-COLUMN GRID ON DESKTOP) --- */
  .projects-header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }
  
  .projects-carousel-btn {
    display: none !important; /* Hide arrows on desktop */
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  
  .project-card {
    flex: none;
    width: auto;
  }

  /* Desktop Read More Override */
  .more-text {
    display: inline !important;
  }

  .dots {
    display: none !important;
  }

  .read-more-btn {
    display: none !important;
  }
  
  .project-info {
    padding: 32px;
  }
  
  .project-info h3 {
    font-size: 1.35rem;
  }
  
  .project-info p {
    font-size: 0.9rem;
  }

  /* --- TESTIMONIALS (GRID ON DESKTOP) --- */
  .testimonials-carousel-btn {
    display: none !important; /* Hide arrows on desktop */
  }

  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .testimonial-card {
    flex: 0 1 calc(33.333% - 24px); /* 3 columns */
    width: auto;
    min-width: 280px;
  }
  
  /* --- ABOUT --- */
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "title image"
      "text image";
    gap: 16px 64px;
    align-items: center;
  }
  
  .about-grid h2 {
    grid-area: title;
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .about-text {
    grid-area: text;
    align-self: start;
  }

  .about-image {
    grid-area: image;
  }
  
  .about-text p {
    font-size: 1.1rem;
  }
  
  /* --- CHOOSE YOUR PATH --- */
  .paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .path-card {
    padding: 48px 40px;
  }
  
  .path-info h3 {
    font-size: 1.75rem;
  }
  
  .path-info p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .path-features li {
    font-size: 0.95rem;
  }
  
  /* --- CONTACT FORM --- */
  .contact-card {
    padding: 48px;
  }
  
  /* --- FOOTER --- */
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
