/* ======================================================
   townappaper — White & Green Balanced Theme
   ====================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Green palette */
  --green-900: #0b3d2e;
  --green-800: #0f4f3a;
  --green-700: #14614a;
  --green-600: #1a7a5c;
  --green-500: #22956e;
  --green-400: #34b88a;
  --green-300: #5fcfa5;
  --green-200: #a3e4c9;
  --green-100: #d4f3e6;
  --green-50: #eefaf4;

  /* Gold accent */
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-dark: #a88420;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8faf9;
  --light-gray: #f1f5f3;
  --gray-100: #e5ebe8;
  --gray-200: #d2dbd6;
  --gray-300: #b0bfb7;
  --gray-400: #8a9d93;
  --gray-500: #6b7f74;
  --gray-600: #4a5e52;
  --gray-700: #2d3e35;
  --gray-800: #1a2b22;
  --dark: #0d1a13;

  /* Primary & accent */
  --primary: var(--green-600);
  --primary-dark: var(--green-800);
  --primary-light: var(--green-400);
  --accent: var(--gold);
  --accent-dark: var(--gold-dark);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,61,46,0.06);
  --shadow-md: 0 4px 20px rgba(11,61,46,0.08);
  --shadow-lg: 0 8px 40px rgba(11,61,46,0.10);
  --shadow-xl: 0 16px 60px rgba(11,61,46,0.14);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,122,92,0.3);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

/* ---------- Labels & Titles ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* =============================================
   NAVBAR — White with green accents
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--gray-800); }
.nav-logo-text span { color: var(--primary); }

.nav-links { display: flex; gap: 8px; }
.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--green-50);
}

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.lang-btn:hover:not(.active) { color: var(--gray-700); }
.nav-cta-btn { padding: 10px 24px; font-size: 0.9rem; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--gray-700); transition: var(--transition); border-radius: 2px; }

/* =============================================
   HERO — Dark green gradient (original feel)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 40%, var(--green-700) 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(52,184,138,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg { display: none; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-200);
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold-light); }

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-300), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.hero .btn-primary { background: var(--green-400); color: var(--green-900); }
.hero .btn-primary:hover { background: var(--green-300); }
.hero .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.hero-stats { display: flex; gap: 40px; }
.hero-stat h3 { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat h3 span { color: var(--green-300); }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 20%; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 20%; right: -30px; animation-delay: 2s; }
.float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.float-icon.green { background: var(--green-100); }
.float-icon.gold { background: rgba(201,162,39,0.12); }
.float-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.float-text p { font-size: 0.75rem; color: var(--gray-400); }

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

/* =============================================
   FEATURES — White section
   ============================================= */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-desc { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   WHY US — Soft green tint background
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--green-50);
}
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.why-us-content .section-title { font-size: 2.2rem; }

.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--green-100);
}
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.why-item p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   SHOWCASE — Alternating presentation sections
   ============================================= */
.showcase {
  padding: 100px 0;
  background: var(--white);
}
.showcase-alt {
  background: var(--green-50);
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-row.reverse {
  direction: rtl;
}
.showcase-row.reverse > * {
  direction: ltr;
}
.showcase-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-image:hover img {
  transform: scale(1.02);
}
.showcase-text .section-title {
  font-size: 2.2rem;
}
.showcase-text .section-desc {
  margin-bottom: 24px;
}
.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.showcase-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
  padding: 10px 16px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}
.showcase-alt .showcase-features li {
  background: var(--white);
}
.showcase-features li:hover {
  background: var(--green-100);
  transform: translateX(4px);
}

/* =============================================
   STATS — Dark green
   ============================================= */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.stat-card { text-align: center; padding: 32px 16px; }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: var(--green-300); font-weight: 500; }

/* =============================================
   CTA — Green gradient
   ============================================= */
.cta { padding: 80px 0; background: var(--white); }
.cta-box {
  text-align: center;
  padding: 72px 48px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-xl);
  color: var(--white);
}
.cta-box .section-label { color: var(--green-300); }
.cta-box .section-title { color: var(--white); }
.cta-box .section-desc { color: rgba(255,255,255,0.8); margin: 0 auto 32px; }

/* =============================================
   PAGE HERO — Green gradient (inner pages)
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--white);
}
.page-hero .section-label { color: var(--green-300); }
.page-hero .section-title { font-size: 3rem; color: var(--white); }
.page-hero .section-desc { margin: 0 auto; color: rgba(255,255,255,0.75); }

/* =============================================
   STORY — White
   ============================================= */
.story-section { padding: 100px 0; background: var(--white); }
.story-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* =============================================
   MISSION & VISION — Light green tint
   ============================================= */
.mission-vision { padding: 80px 0; background: var(--green-50); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.mv-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* =============================================
   VALUES — White
   ============================================= */
.values { padding: 80px 0; background: var(--white); }
.values-header { text-align: center; margin-bottom: 48px; }
.values-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-200); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   TIMELINE — Light green tint
   ============================================= */
.timeline-section { padding: 80px 0; background: var(--green-50); }
.timeline-header { text-align: center; margin-bottom: 48px; }
.timeline-header .section-desc { margin: 0 auto; }
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--green-200);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-dot {
  position: absolute;
  left: -34px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-content {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-100);
}
.timeline-content h4 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.timeline-content p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   CONTACT — White
   ============================================= */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.contact-card {
  display: flex; gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  margin-bottom: 12px;
}
.contact-card:hover { border-color: var(--primary); background: var(--green-50); }
.contact-card-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-sm);
}
.contact-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--green-50);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
}
.contact-form-wrapper h3 { font-size: 1.4rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 0.92rem; color: var(--gray-500); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,122,92,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* Map */
.map-section { padding: 0 0 80px; background: var(--white); }
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.map-wrapper iframe { width: 100%; height: 400px; border: 0; }

/* =============================================
   FOOTER — Dark green
   ============================================= */
.footer {
  background: linear-gradient(180deg, var(--green-900), var(--dark));
  padding: 64px 0 32px;
  color: var(--green-300);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand .nav-logo-text span { color: var(--green-300); }
.footer-brand > p { font-size: 0.9rem; line-height: 1.7; color: var(--green-300); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.2rem; opacity: 0.7; transition: var(--transition); }
.footer-social a:hover { opacity: 1; }

.footer-col h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--green-300); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--green-300);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us .container, .story-section .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta-btn { display: none; }
  .showcase-row { grid-template-columns: 1fr; gap: 40px; }
  .showcase-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .page-hero .section-title { font-size: 2.2rem; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.show { transform: translateY(0); }
  .nav-links a { padding: 12px 20px; }
  .mobile-toggle { display: flex; }
  .nav-cta-btn { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 1.4rem; }
  .hero { padding: 100px 0 60px; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .cta-box { padding: 48px 24px; }
  .lang-switch { order: -1; }
}
