/* ===== Thailand Travel — Minimal & Warm Design System ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Warm Color Palette */
  --clr-cream:       #FAF6F1;
  --clr-cream-dark:  #F0E9DF;
  --clr-tan:         #D4C5B2;
  --clr-tan-dark:    #B8A78E;
  --clr-brown:       #8B7355;
  --clr-brown-dark:  #6B5640;
  --clr-espresso:    #3D2E1E;
  --clr-white:       #FFFFFF;
  --clr-offwhite:    #FDFCFA;
  --clr-gold:        #C9A96E;
  --clr-gold-light:  #E3D1A8;
  --clr-accent:      #A67C52;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', -apple-system, sans-serif;

  --fs-hero:    clamp(3rem, 7vw, 6.5rem);
  --fs-h1:      clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2:      clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3:      clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-xs:      0.75rem;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  8rem;

  /* Effects */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full: 999px;
  --shadow-soft: 0 4px 24px rgba(59,46,30,.06);
  --shadow-hover: 0 8px 40px rgba(59,46,30,.12);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

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

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

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--clr-espresso);
  background-color: var(--clr-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-xl) 0;
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-brown);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-espresso);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--clr-brown);
  max-width: 560px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(59,46,30,.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--clr-white);
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo {
  color: var(--clr-espresso);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: var(--transition-fast);
}

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

.navbar.scrolled .nav-links a {
  color: var(--clr-brown);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--clr-espresso);
}

.nav-cta {
  padding: 10px 28px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  border-radius: var(--radius-full) !important;
  font-size: var(--fs-small) !important;
  transition: var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--clr-white) !important;
  color: var(--clr-espresso) !important;
  border-color: var(--clr-white) !important;
}

.navbar.scrolled .nav-cta {
  border-color: var(--clr-brown) !important;
  color: var(--clr-brown) !important;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--clr-espresso) !important;
  color: var(--clr-white) !important;
  border-color: var(--clr-espresso) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--clr-espresso);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,46,30,0.3) 0%,
    rgba(61,46,30,0.15) 40%,
    rgba(61,46,30,0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto var(--space-md);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--clr-white);
  color: var(--clr-espresso);
}

.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-warm {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn-warm:hover {
  background: var(--clr-brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.1s forwards;
  opacity: 0;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--clr-white);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--clr-cream-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--clr-cream-dark);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--clr-brown);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-tan-dark);
}

/* ── About / Intro Section ── */
.about {
  background: var(--clr-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,197,178,0.4);
  pointer-events: none;
}

.about-text .section-subtitle {
  margin-bottom: var(--space-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: var(--fs-xs);
  color: var(--clr-brown);
}

/* ── Destinations Section ── */
.destinations {
  background: var(--clr-white);
}

.destinations-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.destinations-header .section-subtitle {
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  group: true;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.destination-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destination-card:hover .destination-card-img {
  transform: scale(1.08);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61,46,30,0.7) 0%,
    rgba(61,46,30,0) 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  transition: var(--transition);
}

.destination-card-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--clr-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}

.destination-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.destination-card p {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
}

.destination-card-arrow {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 18px;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: var(--transition);
}

.destination-card:hover .destination-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Experience Section ── */
.experience {
  background: var(--clr-cream);
  position: relative;
}

.experience-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.experience-header .section-subtitle {
  margin: 0 auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.experience-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--clr-cream-dark);
}

.experience-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: var(--space-sm);
}

.experience-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: 8px;
}

.experience-card p {
  font-size: var(--fs-small);
  color: var(--clr-brown);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--clr-espresso);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-header .section-label {
  color: var(--clr-gold);
}

.testimonials-header .section-title {
  color: var(--clr-white);
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial-item.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.9);
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--clr-gold);
  line-height: 0.8;
  margin-bottom: var(--space-xs);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-white);
}

.testimonial-author-info h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 500;
}

.testimonial-author-info p {
  font-size: var(--fs-xs);
  color: var(--clr-tan);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: var(--space-md);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--clr-gold);
  width: 28px;
  border-radius: 4px;
}

/* ── CTA / Newsletter Section ── */
.cta-section {
  background: var(--clr-cream);
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, var(--clr-tan) 0%, var(--clr-tan-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-card .section-title {
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.cta-card p {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto var(--space-md);
  line-height: 1.8;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  outline: none;
  transition: var(--transition-fast);
}

.cta-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.cta-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.2);
}

.cta-btn {
  padding: 14px 32px;
  background: var(--clr-white);
  color: var(--clr-espresso);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
}

/* ── Footer ── */
.footer {
  background: var(--clr-espresso);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
}

.footer-brand p {
  font-size: var(--fs-small);
  max-width: 280px;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-espresso);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: var(--fs-small);
  padding: 4px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--clr-gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}

.footer-bottom a {
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--clr-gold);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.6); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid .destination-card:last-child {
    grid-column: span 2;
  }
  .destinations-grid .destination-card:last-child .destination-card-img {
    height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links.open a {
    color: var(--clr-espresso) !important;
    font-size: 1.2rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .about-image img {
    height: 350px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid .destination-card:last-child {
    grid-column: span 1;
  }
  .destination-card-img {
    height: 320px !important;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .cta-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}
