/* ============================================
   ecommerce-latino — Design System & Styles
   ============================================ */

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

:root {
  --color-orange-500: #F97316;
  --color-orange-600: #EA580C;
  --color-orange-gradient: linear-gradient(135deg, #F97316, #EA580C);
  --color-navy: #0F172A;
  --color-navy-light: #1E293B;
  --color-navy-lighter: #334155;
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  --color-green-500: #22C55E;
  --color-red-500: #EF4444;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --container-max: 1200px;
  --section-padding: 5rem 1.5rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  color: var(--color-gray-700);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-100);
  transition: box-shadow var(--transition-base);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-600);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-orange-gradient);
  border-radius: 1px;
  transition: width var(--transition-base);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--color-orange-500); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 24px;
  background: var(--color-orange-gradient);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 24px;
  background: transparent;
  color: var(--color-gray-700);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-gray-300);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--color-gray-400); background: var(--color-gray-50); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--color-gray-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile a { font-size: var(--font-size-xl); font-weight: 600; color: var(--color-gray-800); transition: color var(--transition-fast); }
.nav-mobile a:hover { color: var(--color-orange-500); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 2;
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--color-orange-500);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  width: fit-content;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-orange-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  max-width: 720px;
}
.hero h1 .highlight { color: var(--color-orange-500); position: relative; }
.hero-subtitle { font-size: var(--font-size-lg); color: var(--color-gray-300); max-width: 600px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-primary { padding: 14px 32px; font-size: var(--font-size-base); }
.hero .btn-secondary {
  padding: 14px 32px;
  font-size: var(--font-size-base);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero .btn-secondary:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.1); }
.hero-stats { display: flex; gap: 3rem; margin-top: 1rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: var(--font-size-3xl); font-weight: 800; color: var(--color-white); }
.stat-label { font-size: var(--font-size-sm); color: var(--color-gray-400); }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: var(--section-padding); }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-orange-500);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(234, 88, 12, 0.08));
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header h2 .highlight { color: var(--color-orange-500); }
.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
#services { background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-orange-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-orange-500);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(234, 88, 12, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  color: var(--color-orange-500);
  transition: all var(--transition-base);
}
.service-card:hover .service-icon {
  background: var(--color-orange-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.service-card:hover .service-icon svg { stroke: white; }
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: var(--font-size-sm); color: var(--color-gray-500); line-height: 1.6; }

/* ============================================
   PRICING (COD service)
   ============================================ */
.pricing { background: var(--color-gray-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  color: var(--color-orange-500);
}
.pricing-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pricing-card h3 { font-size: var(--font-size-xl); font-weight: 700; color: var(--color-gray-900); margin-bottom: 0.75rem; }
.pricing-card > p { font-size: var(--font-size-sm); color: var(--color-gray-500); line-height: 1.7; }
.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.5rem; font-size: var(--font-size-sm); color: var(--color-gray-600); }
.pricing-feature svg { width: 16px; height: 16px; color: var(--color-orange-500); flex-shrink: 0; }

/* ============================================
   COUNTRIES
   ============================================ */
.countries-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.country-card {
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-50));
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 200px;
  flex: 0 1 220px;
  transition: all var(--transition-base);
  position: relative;
}
.country-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--color-white), rgba(249, 115, 22, 0.04));
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.1);
}
.country-flag { font-size: 3rem; margin-bottom: 1rem; line-height: 1; transition: transform var(--transition-base); }
.country-card:hover .country-flag { transform: scale(1.15); }
.country-card h3 { font-size: var(--font-size-base); font-weight: 700; color: var(--color-gray-900); margin-bottom: 0.25rem; }
.country-card p { font-size: var(--font-size-xs); color: var(--color-gray-500); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a0a2e 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.how-section .section-tag { background: rgba(249, 115, 22, 0.2); }
.how-section .section-header h2 { color: var(--color-white); }
.how-section .section-header p { color: var(--color-gray-400); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.process-step {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}
.process-step:hover .process-icon {
  background: var(--color-orange-gradient);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  color: white;
}
.process-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: -1rem;
}
.process-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-lg);
  margin: 0 auto 1.25rem;
  color: var(--color-orange-500);
}
.process-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { font-size: var(--font-size-base); font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem; }
.process-step p { font-size: var(--font-size-sm); color: var(--color-gray-400); line-height: 1.6; }

/* ============================================
   COMMUNITY (Whop subscriptions)
   ============================================ */
.community {
  background: linear-gradient(135deg, #FFF7ED 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}
.community::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.community-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.community-card.featured {
  border: 2px solid var(--color-orange-500);
  box-shadow: 0 24px 64px rgba(249, 115, 22, 0.15);
  transform: translateY(-8px);
}
.community-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; right: 1.5rem;
  background: var(--color-orange-gradient);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.community-card:not(.featured):hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-xl);
}
.community-tier-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-orange-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.community-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.community-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-gray-900);
  line-height: 1;
}
.community-price-period {
  font-size: var(--font-size-base);
  color: var(--color-gray-500);
  font-weight: 500;
}
.community-tagline {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: 1.6;
}
.community-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.community-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
}
.community-feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.community-join-btn {
  margin-top: auto;
  padding: 14px 24px;
  font-size: var(--font-size-base);
  width: 100%;
}
.community-card:not(.featured) .community-join-btn {
  background: var(--color-gray-900);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}
.community-card:not(.featured) .community-join-btn:hover { box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3); }

/* Whop checkout modal */
.whop-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.whop-modal.open { display: flex; opacity: 1; }
.whop-modal-inner {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}
.whop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}
.whop-modal-close:hover { background: var(--color-gray-200); color: var(--color-gray-900); }
.whop-modal-title { font-size: var(--font-size-xl); font-weight: 800; color: var(--color-gray-900); margin-bottom: 0.5rem; }
.whop-modal-subtitle { font-size: var(--font-size-sm); color: var(--color-gray-500); margin-bottom: 1.5rem; }
.whop-coming-soon {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-gray-50), rgba(249, 115, 22, 0.04));
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
}
.whop-coming-soon strong { color: var(--color-orange-500); display: block; margin-bottom: 0.5rem; font-size: var(--font-size-base); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(135deg, #F8FAFC 0%, #FFF7ED 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-info h2 .highlight { color: var(--color-orange-500); }
.contact-info > p { font-size: var(--font-size-base); color: var(--color-gray-500); line-height: 1.7; margin-bottom: 2rem; }
.contact-email { display: flex; align-items: center; gap: 0.75rem; }
.contact-email-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-orange-500);
}
.contact-email-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-email-text { display: flex; flex-direction: column; }
.contact-email-label { font-size: var(--font-size-xs); color: var(--color-gray-500); font-weight: 500; }
.contact-email-value { font-size: var(--font-size-base); font-weight: 600; color: var(--color-gray-900); }

.contact-form-card {
  background: var(--color-white);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 115, 22, 0.05);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-orange-gradient);
}
.contact-form-card h3 { font-size: var(--font-size-xl); font-weight: 700; color: var(--color-gray-900); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 0.375rem;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  color: var(--color-gray-900);
  transition: border-color var(--transition-fast);
  outline: none;
  background: var(--color-white);
}
.form-group input::placeholder { color: var(--color-gray-400); }
.form-group input:focus {
  border-color: var(--color-orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form-group input.error { border-color: var(--color-red-500); }
.form-error { font-size: var(--font-size-xs); color: var(--color-red-500); margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-submit { width: 100%; padding: 14px; margin-top: 0.5rem; }

.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-gray-400);
  pointer-events: none;
  z-index: 1;
}
.input-with-icon .input-icon svg { width: 18px; height: 18px; }
.input-with-icon input, .input-with-icon .form-select { padding-left: 44px !important; width: 100%; }
.input-with-icon .input-icon svg[fill="currentColor"] { color: #25D366; }

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  color: var(--color-gray-900);
  transition: border-color var(--transition-fast);
  outline: none;
  background: var(--color-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  font-family: inherit;
}
.form-select:focus { border-color: var(--color-orange-500); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-white);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
  max-width: 400px;
  box-shadow: var(--shadow-xl);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--color-green-500); }
.toast.error { background: var(--color-red-500); }
.toast.info { background: var(--color-gray-900); }

/* Form success */
.form-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  animation: successFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.form-success-state.visible { display: flex; }
#formContentWrap { transition: opacity 0.3s ease, transform 0.3s ease; }
#formContentWrap.hiding { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.form-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.3);
  animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
@keyframes iconBounce { from { transform: scale(0); } to { transform: scale(1); } }
.form-success-icon svg { width: 40px; height: 40px; color: white; stroke: white; }
.form-success-title { font-size: var(--font-size-2xl); font-weight: 800; color: var(--color-gray-900); margin-bottom: 0.75rem; }
.form-success-message { font-size: var(--font-size-base); color: var(--color-gray-500); line-height: 1.7; max-width: 320px; margin-bottom: 2rem; }
.form-success-details { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 320px; }
.form-success-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  font-weight: 500;
}
.form-success-detail svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-orange-500); stroke: var(--color-orange-500); }
.form-success-detail svg[fill="currentColor"] { color: #25D366; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-navy); padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.footer .logo img { height: 32px; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: var(--font-size-sm); color: var(--color-gray-400); transition: color var(--transition-fast); }
.footer-nav a:hover { color: var(--color-white); }
.footer-copyright { font-size: var(--font-size-sm); color: var(--color-gray-500); text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--color-navy-lighter); width: 100%; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-padding: 3.5rem 1rem; }
  .nav-desktop { display: none; }
  .header-actions .btn-primary.desktop-only { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .community-card.featured { transform: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 3rem 1rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 2rem; }
  .countries-grid { gap: 1rem; }
  .country-card { min-width: 140px; padding: 1.25rem 1rem; }
  .footer-nav { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; }
  .pricing-features { grid-template-columns: 1fr; }
  .countries-grid { flex-direction: column; align-items: center; }
  .country-card { width: 100%; max-width: 250px; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .community-card { padding: 1.75rem; }
  .community-price-amount { font-size: 2.5rem; }
}
