/* ============================================
   GANABAT - Design System & Global Styles
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Brand Colors - Extracted from GANABAT Logo */
  --color-orange: #F5A623;
  --color-red: #E74C3C;
  --color-blue: #2E5C9A;
  --color-black: #1A1A1A;
  
  /* Extended Color Palette */
  --color-orange-light: #FFB84D;
  --color-orange-dark: #E09516;
  --color-red-light: #FF6B5B;
  --color-red-dark: #C0392B;
  --color-blue-light: #4A7BC8;
  --color-blue-dark: #1E3A5F;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-white) 0%,var(--color-orange) 25%, var(--color-red) 50%, var(--color-blue) 100%);
  --gradient-orange: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
  --gradient-red: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red) 100%);
  --gradient-blue: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(245, 166, 35, 0.9) 0%, rgba(231, 76, 60, 0.9) 50%, rgba(46, 92, 154, 0.9) 100%);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Spacing Scale */
  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  --space-24: 6rem;        /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-600);
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-blue-dark);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-black);
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand .brand-name {
  font-size: var(--text-2xl);
}

.navbar-brand .brand-name .highlight {
  color: var(--color-blue);
}

.navbar-brand .brand-tagline {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-gray-600);
}

.navbar-menu {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.navbar-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-gray);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform var(--transition-base);
}

.navbar-menu a:hover {
  color: var(--color-blue);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-black);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(46, 92, 154, 0.3) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-white);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-blue);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--gradient-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--space-20) var(--space-6);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-title p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 700px;
  margin: var(--space-6) auto 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card-content {
  padding: var(--space-8);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
}

.service-card-icon.orange {
  background: var(--gradient-orange);
}

.service-card-icon.red {
  background: var(--gradient-red);
}

.service-card-icon.blue {
  background: var(--gradient-blue);
}

.service-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-black);
}

.service-card p {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-blue);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: gap var(--transition-base);
}

.service-card-link:hover {
  gap: var(--space-3);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  background: var(--color-gray-50);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--space-6);
}

.about-text p {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.stat-card {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  font-weight: 600;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
}

.cta-contact {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 600;
}

.contact-item svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(46, 92, 154, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: var(--space-5);
  font-size: var(--text-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-section h3 {
  color: var(--color-white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.footer-section p,
.footer-section a {
  color: var(--color-gray-400);
  font-size: var(--text-base);
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--color-orange);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail {
  padding: var(--space-12) 0;
}

.service-detail-header {
  text-align: center;
  margin-bottom: var(--space-12);
  padding: var(--space-16) var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-2xl);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-bottom: var(--space-12);
}

.service-detail-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.service-detail-text h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.service-detail-text ul {
  list-style: none;
  margin-bottom: var(--space-6);
}

.service-detail-text ul li {
  padding-left: var(--space-8);
  margin-bottom: var(--space-3);
  position: relative;
  color: var(--color-gray-600);
}

.service-detail-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
  font-size: var(--text-xl);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
/* Tablettes (écran ≤ 1024px) */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
  }

  .navbar .container {
    padding: 0 var(--space-4);
  }

  .about-content,
  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .service-detail-header {
    padding: var(--space-12) var(--space-4);
  }
}

/* Mobiles & petites tablettes (écran ≤ 768px) */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
  }

  /* NAVBAR */
  .navbar {
    padding: var(--space-3) 0;
  }

  .navbar .container {
    padding: 0 var(--space-4);
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-brand .brand-name {
    font-size: var(--text-xl);
  }

  .navbar-brand .brand-tagline {
    font-size: var(--text-xs);
  }

  .navbar-menu {
    position: fixed;
    top: 5.5%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    gap: var(--space-4);
    transform: translateY(-145%);
    transition: transform var(--transition-base);
    z-index: var(--z-dropdown);
  }

  .navbar-menu a {
    text-align: center;
    display: block;
  }

  .navbar-menu.active {
    transform: translateY(0);
  }

  .navbar-toggle {
    display: flex;
  }

  /* HERO */
  .hero {
    min-height: 80vh;
    padding: var(--space-16) var(--space-4);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: var(--text-lg);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* SECTIONS GÉNÉRALES */
  .section {
    padding: var(--space-16) var(--space-4);
  }

  .section-title p {
    padding: 0 var(--space-2);
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    height: 220px;
  }

  /* ABOUT */
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-content h2 {
    font-size: var(--text-3xl);
  }

  .cta-content p {
    font-size: var(--text-lg);
  }

  .cta-contact {
    flex-direction: column;
    gap: var(--space-4);
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  /* FORMULAIRE CONTACT */
  .contact-form {
    padding: var(--space-8) var(--space-6);
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Très petits écrans (écran ≤ 480px) */
@media (max-width: 480px) {
  :root {
    --text-6xl: 2rem;
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
  }

  .section {
    padding: var(--space-12) var(--space-3);
  }

  .hero {
    padding: var(--space-14) var(--space-3);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .contact-form {
    padding: var(--space-6) var(--space-4);
  }

  .cta-content h2 {
    font-size: var(--text-2xl);
  }
}