/* ========================================
   TAX REPAIR LLC - PROFESSIONAL CSS 2026
   Deep Polish - Senior Frontend Engineer
   ======================================== */

:root {
  /* Brand Colors */
  --green-900: #0a1f19;
  --green-800: #0f2e25;
  --green-700: #153d31;
  --green-600: #1B4D3E;
  --green-500: #2a6b55;
  --green-400: #3d8b6e;
  --green-300: #5faa8d;
  --green-200: #a3d4c0;
  --green-100: #d4ebe2;
  --green-50: #eef7f3;

  --gold-900: #6b5a10;
  --gold-800: #8a7414;
  --gold-700: #a88f18;
  --gold-600: #c9a81c;
  --gold-500: #D4A72C;
  --gold-400: #e0bc4a;
  --gold-300: #ebd06f;
  --gold-200: #f3e19e;
  --gold-100: #f9f0cc;
  --gold-50: #fdfaed;

  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;

  /* Aliases */
  --primary: var(--green-600);
  --primary-dark: var(--green-800);
  --primary-light: var(--green-400);
  --secondary: var(--gold-500);
  --secondary-dark: var(--gold-700);
  --secondary-light: var(--gold-300);
  
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --text-inverse: var(--white);
  
  --bg-primary: var(--gray-50);
  --bg-secondary: var(--white);
  --bg-dark: var(--green-900);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(212,167,44,0.25);
  --shadow-green: 0 4px 20px rgba(27,77,62,0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;
  --header-height: 72px;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
  --z-toast: 700;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (max-width: 480px) {
  html { font-size: 15px; }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  background-color: var(--secondary);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 6vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.text-gold { color: var(--secondary) !important; }
.text-green { color: var(--primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container { padding: 0 var(--space-6); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-8); }
}

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

@media (min-width: 768px) {
  .section { padding: var(--space-20) 0; }
}

@media (min-width: 1024px) {
  .section { padding: var(--space-24) 0; }
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--green {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: #fff;
}

.section--green h2,
.section--green h3,
.section--green h4 {
  color: #fff;
}

.section--green p {
  color: rgba(255,255,255,0.85);
}

.section--green-light {
  background: linear-gradient(180deg, var(--green-50) 0%, #fff 100%);
}

.section--gold-light {
  background: linear-gradient(180deg, var(--gold-50) 0%, #fff 100%);
}

.section--gradient {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--gold-50) 50%, #fff 100%);
}

.section--dark {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: rgba(255,255,255,0.8);
}

/* ========================================
   SKIP LINK
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: var(--z-toast);
  transition: top var(--duration-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform-origin: left;
  transform: scaleX(0);
  z-index: var(--z-toast);
  transition: transform 0.1s linear;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: var(--z-fixed);
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
  .header__container {
    padding: 0 var(--space-8);
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: var(--z-modal);
}

.logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-green);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--primary);
  line-height: 1.2;
}

.logo__tagline {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  position: relative;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.lang-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: flex;
  }
}

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: var(--z-modal);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: var(--z-modal-backdrop);
  padding: calc(var(--header-height) + var(--space-8)) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  background: linear-gradient(135deg, var(--green-50), var(--gold-50));
  color: var(--primary);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: var(--text-xl);
  font-weight: 700;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-green);
}

.mobile-menu__address {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:active {
  transform: scale(0.98);
}

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,77,62,0.3);
}

/* Secondary / Gold */
.btn--secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--gray-900);
  box-shadow: var(--shadow-gold);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,167,44,0.4);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Outline Light */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Sizes */
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn--full {
  width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-16);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-12);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,25,0.95) 0%, rgba(27,77,62,0.9) 50%, rgba(15,46,37,0.95) 100%);
}

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

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
  }
}

/* Hero Text */
.hero__text {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212,167,44,0.15);
  border: 1px solid rgba(212,167,44,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: var(--space-6);
}

.hero__badge svg {
  color: var(--secondary);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__desc {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__desc strong {
  color: var(--white);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.hero__benefits svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero__visual {
    display: block;
  }
}

.hero__card {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.hero__card img {
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
}

.hero__card-badge {
  position: absolute;
  bottom: var(--space-6);
  left: -var(--space-8);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.hero__card-amount {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.hero__card-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-top: var(--space-1);
}

/* Hero Scroll */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  animation: bounce 2s infinite;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background: var(--white);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}

.trust-item {
  padding: var(--space-4);
}

.trust-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.trust-item--gold .trust-item__number {
  color: var(--secondary-dark);
}

.trust-item__label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
  font-weight: 500;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section__badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
  color: var(--gold-800);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section__badge--primary {
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  color: var(--green-700);
}

.section__title {
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 0;
}

.section__cta {
  text-align: center;
  margin-top: var(--space-12);
}

.section__cta p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

/* ========================================
   BENEFIT CARDS (Child Tax Credit)
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.benefit-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-card--highlight {
  border: 2px solid var(--secondary);
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--white) 100%);
}

.benefit-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  background: var(--secondary);
  color: var(--gray-900);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--green-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.benefit-card__icon--gold {
  background: var(--gold-100);
  color: var(--gold-700);
}

.benefit-card__icon--green {
  background: rgba(16,185,129,0.1);
  color: var(--success);
}

.benefit-card__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-1);
}

.benefit-card__amount--gold {
  color: var(--secondary-dark);
}

.benefit-card__amount--green {
  color: var(--success);
}

.benefit-card__note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card--featured {
  border: 2px solid var(--secondary);
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--white) 100%);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  right: var(--space-6);
  padding: var(--space-1) var(--space-4);
  background: var(--secondary);
  color: var(--gray-900);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.service-card__icon--gold {
  background: var(--gold-100);
  color: var(--gold-700);
}

.service-card__title {
  font-size: var(--text-xl);
  margin-bottom: 0;
  padding-top: var(--space-2);
}

.service-card__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.service-card__list {
  margin-bottom: var(--space-6);
}

.service-card__list li {
  position: relative;
  padding-left: var(--space-6);
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--success);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast);
}

.service-card__link:hover {
  gap: var(--space-3);
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.service-cta .btn {
  flex: 1 1 auto;
  min-width: 200px;
  justify-content: center;
}

@media (max-width: 480px) {
  .service-cta {
    flex-direction: column;
  }
  .service-cta .btn {
    width: 100%;
  }
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.why-content__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.why-features {
  display: grid;
  gap: var(--space-6);
}

.why-feature {
  display: flex;
  gap: var(--space-4);
}

.why-feature__icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.why-feature__icon--gold {
  background: var(--gold-100);
  color: var(--gold-700);
}

.why-feature__text h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.why-feature__text p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Why Image */
.why-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .why-image {
    display: block;
  }
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  margin-left: auto;
}

.why-image__badge {
  position: absolute;
  bottom: var(--space-8);
  left: -var(--space-6);
  background: var(--white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.why-image__badge-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.why-image__badge-text {
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
  line-height: 1.3;
}

.why-image__badge-text span:first-child {
  font-weight: 700;
  color: var(--text-primary);
}

.why-image__badge-text span:last-child {
  color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: var(--space-16) 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-12) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-box {
    padding: var(--space-16) var(--space-12);
  }
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,167,44,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box__title {
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-box__desc {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto var(--space-8);
  position: relative;
}

.cta-box__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 480px) {
  .cta-box__buttons {
    flex-direction: row;
  }
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-12);
  }
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .location-map iframe {
    height: 400px;
  }
}

.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.location-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.location-hours {
  margin-bottom: var(--space-6);
}

.location-hours li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: var(--text-sm);
}

.location-hours li:last-child {
  border-bottom: none;
}

.location-hours li span:first-child {
  color: var(--text-secondary);
}

.location-hours li span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.location-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .location-actions {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
  }
}

.contact-form {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.contact-form > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  gap: var(--space-4);
}

.form-row--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-label--required::after {
  content: ' *';
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  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='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.contact-info__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info__text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--green-900) 0%, #050f0c 100%);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
  }
}

/* Footer Brand */
.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  font-family: var(--font-display);
  font-weight: 800;
}

.footer__logo span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}

.footer__desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  background: var(--secondary);
  color: var(--gray-900);
  transform: translateY(-2px);
}

/* Footer Nav */
.footer__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  transition: all var(--duration-fast);
}

.footer__links a:hover {
  color: var(--secondary);
  padding-left: var(--space-2);
}

/* Footer Contact */
.footer__address p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.footer__address svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast);
}

.footer__address a:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom p {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: var(--secondary);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: var(--z-sticky);
  transition: all var(--duration-normal) var(--ease-out);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float__text {
  position: absolute;
  right: calc(100% + var(--space-3));
  background: var(--white);
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--duration-normal);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float__text {
    display: none;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate="fade"] {
  transform: none;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="scale"] {
  transform: scale(0.95);
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }

[data-animate="stagger"] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

[data-animate="stagger"].visible > *:nth-child(1) { transition-delay: 0ms; }
[data-animate="stagger"].visible > *:nth-child(2) { transition-delay: 100ms; }
[data-animate="stagger"].visible > *:nth-child(3) { transition-delay: 200ms; }
[data-animate="stagger"].visible > *:nth-child(4) { transition-delay: 300ms; }

[data-animate="stagger"].visible > * {
  opacity: 1;
  transform: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================
   MOBILE FIXES - Extra padding
   ======================================== */
@media (max-width: 767px) {
  /* Force padding on sections */
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Cards need breathing room */
  .service-card,
  .benefit-card,
  article {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Grids full width */
  .services-grid,
  .benefits-grid {
    padding: 0;
  }
  
  /* Hero content */
  .hero__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* CTA box */
  .cta-box {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: var(--radius-2xl);
  }
  
  /* Footer grid */
  .footer__grid {
    padding: 0 0.5rem;
  }
}

/* ========================================
   LANG TOGGLE WITH FLAG
   ======================================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: var(--primary);
  color: #fff;
}

.lang-toggle__flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-toggle__current {
  font-weight: 700;
}

/* ========================================
   WHATSAPP WIDGET - Brand Colors
   ======================================== */
.wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  font-family: var(--font-body);
}

@media (max-width: 480px) {
  .wa { bottom: 1rem; right: 1rem; }
}

.wa__btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-700) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,167,44,0.5);
  transition: all 0.3s;
  position: relative;
  color: var(--gray-900);
}

.wa__btn svg { width: 30px; height: 30px; }

.wa__btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(212,167,44,0.6);
}

.wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--secondary);
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wa__popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa--open .wa__popup,
.wa--peek .wa__popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa__head {
  background: linear-gradient(135deg, var(--primary) 0%, var(--green-800) 100%);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.wa__avatar {
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-900);
}

.wa__info { flex: 1; }
.wa__info strong { display: block; font-size: 1rem; }

.wa__online {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wa__dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: waDot 1.5s infinite;
}

@keyframes waDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.wa__close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}

.wa__close:hover { background: rgba(255,255,255,0.25); }

.wa__body {
  padding: 1rem;
  background: linear-gradient(180deg, var(--green-50) 0%, #fff 100%);
  min-height: 200px;
}

.wa__msg {
  background: #fff;
  padding: 1rem;
  border-radius: 0 1rem 1rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  border-left: 3px solid var(--primary);
}

.wa__msg p:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.25rem;
}

.wa__msg p:last-child {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.wa__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.wa-svc {
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 0.65rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  transition: all 0.2s;
}

.wa-svc:hover {
  border-color: var(--secondary);
  background: var(--gold-50);
  transform: translateY(-2px);
}

.wa-svc__icon {
  font-size: 1.4rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.wa-svc__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.wa-svc__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.2;
}

.wa__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wa__selected {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
  padding: 0.65rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  border: 1px solid var(--gold-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.wa__input,
.wa__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  background: #fff;
  box-sizing: border-box;
}

.wa__textarea {
  resize: none;
  min-height: 70px;
  line-height: 1.4;
}

.wa__input:focus,
.wa__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}

.wa__send {
  background: linear-gradient(135deg, var(--primary) 0%, var(--green-700) 100%);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.wa__send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,77,62,0.35);
}

.wa__back {
  background: transparent;
  border: none;
  color: var(--gray-500);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.4rem;
}

.wa__back:hover { color: var(--primary); }

.whatsapp-float { display: none !important; }

/* ========================================
   EPIC MOBILE EXPERIENCE
   ======================================== */
@media (max-width: 767px) {
  /* Smooth scroll on iOS */
  html {
    -webkit-overflow-scrolling: touch;
  }

  /* Better typography scaling */
  :root {
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --text-xl: 1.25rem;
  }

  /* Touch-friendly buttons - min 48px */
  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .btn--lg {
    min-height: 52px;
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
  }

  /* Hero epic on mobile */
  .hero {
    min-height: 100svh;
    padding-top: 100px;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero__title .text-gold {
    display: inline;
  }

  .hero__desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__benefits {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Cards more premium on mobile */
  .service-card {
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .service-card:active {
    transform: scale(0.98);
  }

  /* Section spacing mobile */
  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  /* Service CTAs stack nicely */
  .service-cta {
    gap: 0.75rem;
  }

  .service-cta .btn {
    min-width: unset;
    flex: 1 1 100%;
  }

  /* Trust bar scrollable */
  .trust-bar__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 0.5rem;
  }

  .trust-bar__grid::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__item {
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
    padding: 1rem;
  }

  /* Location card */
  .location-card {
    padding: 1.5rem;
  }

  .location-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* FAQ accordion touch-friendly */
  .accordion__trigger {
    padding: 1.25rem 1rem;
    min-height: 60px;
  }

  .accordion__content {
    padding: 0 1rem 1.25rem;
  }

  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 1rem;
  }

  /* Footer mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer__grid {
    gap: 2rem;
  }

  /* Child Tax Credit cards */
  .ctc-grid {
    gap: 1rem;
  }

  .ctc-card {
    padding: 1.25rem;
  }

  .ctc-card__amount {
    font-size: 2rem;
  }

  /* Mobile menu epic */
  .mobile-menu {
    padding-top: 100px;
    padding-bottom: 2rem;
  }

  .mobile-menu__link {
    font-size: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-menu__link:active {
    background: rgba(255,255,255,0.1);
  }

  /* WhatsApp widget mobile */
  .wa__popup {
    width: calc(100vw - 2rem);
    max-width: 340px;
    bottom: 70px;
    right: 0;
  }

  .wa__btn {
    width: 56px;
    height: 56px;
  }

  .wa-svc {
    padding: 0.75rem 0.5rem;
  }

  .wa-svc__label {
    font-size: 0.75rem;
  }

  .wa__input,
  .wa__textarea {
    font-size: 16px; /* Prevents iOS zoom */
  }

  /* Scroll progress thicker on mobile */
  .scroll-progress {
    height: 4px;
  }

  /* Better tap highlighting */
  a, button {
    -webkit-tap-highlight-color: rgba(212,167,44,0.2);
  }

  /* Image cards */
  .service-card-visual {
    border-radius: 1rem;
    overflow: hidden;
  }

  .service-card-visual img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  /* Stats/counters */
  .stat__number {
    font-size: 2.5rem;
  }

  /* Benefits section */
  .benefit-card {
    padding: 1.5rem;
    text-align: center;
  }

  .benefit-card__icon {
    margin: 0 auto 1rem;
  }
}

/* Extra small devices */
@media (max-width: 374px) {
  :root {
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }

  .hero__title {
    font-size: 1.875rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .wa__popup {
    width: calc(100vw - 1.5rem);
  }

  .wa-svc {
    padding: 0.6rem 0.4rem;
  }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 3rem;
  }

  .hero__visual {
    display: none;
  }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa {
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  @media (max-width: 480px) {
    .wa {
      bottom: calc(1rem + env(safe-area-inset-bottom));
    }
  }

  .footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .service-card {
    border: 2px solid var(--gray-300);
  }
}

/* Dark mode preparation (future) */
@media (prefers-color-scheme: dark) {
  /* Ready for dark mode implementation */
}

/* ========================================
   ULTRA PREMIUM MOBILE POLISH
   ======================================== */
@media (max-width: 767px) {
  /* Smooth page transitions */
  .app-loaded {
    animation: fadeInPage 0.4s ease-out;
  }

  @keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Premium header glass effect */
  .header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  }

  /* Hero epic gradient overlay */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.2) 30%,
      rgba(27,77,62,0.8) 100%
    );
  }

  /* Animated hero badge */
  .hero__badge {
    animation: pulseGlow 2s ease-in-out infinite;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-600) 100%);
  }

  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,167,44,0.4); }
    50% { box-shadow: 0 0 30px rgba(212,167,44,0.6); }
  }

  /* Premium buttons with gradient shine */
  .btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
  }

  .btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255,255,255,0.1) 50%,
      transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
  }

  .btn--primary:active::after {
    transform: rotate(45deg) translateX(100%);
  }

  .btn--secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-600) 100%);
  }

  /* Active state feedback */
  .btn:active {
    transform: scale(0.97);
    transition: transform 0.1s;
  }

  /* Premium card hover/touch effects */
  .service-card {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .service-card:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Trust bar premium styling */
  .trust-bar {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  }

  .trust-item {
    position: relative;
  }

  .trust-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background: rgba(255,255,255,0.2);
  }

  .trust-item:last-child::after {
    display: none;
  }

  /* Premium section backgrounds */
  .section--green-light {
    background: linear-gradient(180deg, var(--green-50) 0%, #fff 100%);
  }

  .section--gold-light {
    background: linear-gradient(180deg, var(--gold-50) 0%, #fff 100%);
  }

  /* Animated counters glow */
  .trust-item__number {
    text-shadow: 0 0 20px rgba(212,167,44,0.3);
  }

  /* Premium accordion */
  .accordion__trigger {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
  }

  .accordion__trigger:active {
    background: var(--gray-50);
  }

  .accordion__trigger[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
    border-left: 3px solid var(--primary);
  }

  /* CTC cards premium */
  .ctc-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
  }

  .ctc-card:active {
    transform: scale(0.98);
  }

  .ctc-card--featured {
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--white) 100%);
    border: 2px solid var(--secondary);
    box-shadow: 0 8px 30px rgba(212,167,44,0.2);
  }

  /* Premium location card */
  .location-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
    border: 1px solid rgba(27,77,62,0.1);
  }

  /* Contact form premium */
  .contact-form {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27,77,62,0.1), 0 4px 20px rgba(0,0,0,0.05);
  }

  /* WhatsApp widget premium */
  .wa__btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-600) 100%);
    box-shadow: 0 8px 30px rgba(212,167,44,0.4);
  }

  .wa__btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(212,167,44,0.3);
  }

  .wa__popup {
    border-radius: 1.5rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  }

  .wa__head {
    background: linear-gradient(135deg, var(--primary) 0%, var(--green-800) 100%);
  }

  .wa-svc {
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .wa-svc:active {
    transform: scale(0.95);
    background: var(--gold-100);
    border-color: var(--secondary);
  }

  /* Mobile menu premium */
  .mobile-menu {
    background: linear-gradient(180deg, var(--primary) 0%, var(--green-900) 100%);
  }

  .mobile-menu__link {
    position: relative;
    transition: all 0.3s;
  }

  .mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
  }

  .mobile-menu__link:active::before {
    width: 20px;
  }

  /* Footer premium */
  .footer {
    background: linear-gradient(180deg, var(--green-900) 0%, #0a1612 100%);
  }

  /* Scroll indicator */
  .scroll-progress {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 0 10px rgba(212,167,44,0.5);
  }

  /* Loading skeleton animation */
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }

  .skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }

  /* Pull to refresh indicator style */
  .ptr-element {
    background: var(--primary);
    color: var(--white);
  }

  /* Better image loading */
  img {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  }

  img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
  }

  img[loading="lazy"].loaded,
  img:not([loading="lazy"]) {
    opacity: 1;
  }

  /* Smooth section transitions */
  .section {
    position: relative;
  }

  [data-animate].visible {
    animation: slideUpFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes slideUpFade {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Better focus states for accessibility */
  *:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
  }

  /* Prevent content shift */
  .hero__visual img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

/* ========================================
   MOBILE SPACING FIX - PREVENT EDGE-TO-EDGE
   ======================================== */
@media (max-width: 768px) {
  /* Global container safety */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Section padding */
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Hero fixes */
  .hero__content {
    padding: 0 1rem;
  }

  .hero__text {
    padding-right: 0;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .hero__benefits {
    gap: 0.5rem;
  }

  .hero__benefits li {
    font-size: 0.85rem;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Page hero fixes */
  .page-hero__content {
    padding: 0 1rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  /* Trust bar */
  .trust-bar__grid {
    padding: 0 0.5rem;
    gap: 1rem;
  }

  /* Services grid */
  .services-grid {
    padding: 0;
  }

  .service-card {
    margin: 0;
  }

  /* CTC section */
  .ctc-cards {
    padding: 0;
  }

  .ctc-card {
    padding: 1.25rem;
  }

  /* About section */
  .about-grid {
    padding: 0;
  }

  .about-content {
    padding: 0;
  }

  /* Contact grid */
  .contact-grid {
    padding: 0;
  }

  .contact-form {
    padding: 1.25rem;
    margin: 0;
  }

  .contact-info {
    padding: 1.25rem;
  }

  /* Form elements */
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents iOS zoom */
  }

  /* FAQ */
  .accordion {
    padding: 0;
  }

  .accordion__trigger {
    padding: 1rem;
    font-size: 0.95rem;
    text-align: left;
  }

  .accordion__content {
    padding: 0 1rem 1rem;
  }

  /* Location card */
  .location-card {
    margin: 0;
    border-radius: 0.75rem;
  }

  /* Footer */
  .footer .container {
    padding: 0 1rem;
  }

  .footer__grid {
    gap: 2rem;
    padding: 0;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Buttons */
  .btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Cards */
  .card {
    margin: 0;
    border-radius: 0.75rem;
  }

  /* Value props */
  .value-props {
    padding: 0;
  }

  .value-prop {
    padding: 1rem;
  }

  /* Stats */
  .stats-grid {
    padding: 0 0.5rem;
  }

  /* Team */
  .team-grid {
    padding: 0;
  }

  /* Timeline */
  .timeline {
    padding-left: 0;
  }

  /* CTA section */
  .cta-section .container {
    padding: 2rem 1rem;
  }

  /* Badges */
  .section__badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  /* Text adjustments */
  .section__title {
    font-size: 1.5rem;
  }

  .section__subtitle {
    font-size: 0.9rem;
  }

  /* WhatsApp widget */
  .wa {
    right: 1rem;
    bottom: 1rem;
  }

  .wa__popup {
    right: 0;
    left: 1rem;
    width: auto;
    max-width: calc(100vw - 2rem);
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__card-badge {
    padding: 0.5rem 0.75rem;
  }

  .hero__card-amount {
    font-size: 1.25rem;
  }

  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section__title {
    font-size: 1.35rem;
  }

  .btn {
    padding: 0.75rem 1rem;
  }

  .btn--lg {
    padding: 0.875rem 1.25rem;
  }

  /* Accordion tighter */
  .accordion__item {
    margin-bottom: 0.5rem;
  }

  /* Contact form */
  .contact-form h2 {
    font-size: 1.25rem;
  }

  /* Cards */
  .ctc-card__amount {
    font-size: 2rem;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  /* Page hero */
  .page-hero {
    min-height: 200px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .breadcrumb {
    font-size: 0.75rem;
  }
}

/* ========================================
   LANGUAGE DROPDOWN
   ======================================== */
.lang-dropdown {
  position: relative;
  z-index: 100;
}

.lang-dropdown__current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-dropdown__current:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.lang-dropdown--open .lang-dropdown__current {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lang-dropdown__flag {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.lang-dropdown__text {
  min-width: 50px;
}

.lang-dropdown__arrow {
  transition: transform 0.2s;
  opacity: 0.6;
}

.lang-dropdown--open .lang-dropdown__arrow {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.lang-dropdown--open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.lang-dropdown__option:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.lang-dropdown__option--active {
  background: var(--green-50);
  color: var(--primary);
  font-weight: 600;
}

.lang-dropdown__option--active::after {
  content: '✓';
  margin-left: auto;
  color: var(--primary);
  font-weight: 700;
}

/* Header scrolled state */
.header.scrolled .lang-dropdown__current {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lang-dropdown__text {
    display: none;
  }
  
  .lang-dropdown__current {
    padding: 0.5rem;
  }
  
  .lang-dropdown__menu {
    right: -0.5rem;
  }
}

/* ========================================
   MOBILE FIXES - EDGE PADDING
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__content {
    padding: 0 1rem;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero__content {
    padding: 0 1rem;
  }

  .services-grid,
  .benefits-grid,
  .contact-grid,
  .about-grid {
    padding: 0;
    gap: 1rem;
  }

  .service-card,
  .benefit-card,
  .ctc-card {
    margin: 0;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .accordion {
    padding: 0;
  }

  .accordion__trigger {
    padding: 1rem;
    font-size: 0.95rem;
    text-align: left;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer__grid {
    gap: 2rem;
  }

  .btn--lg {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero__desc {
    font-size: 0.9rem;
  }

  .section__title {
    font-size: 1.35rem;
  }

  .section__subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  /* WhatsApp fixes */
  .wa {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .wa__btn {
    width: 54px;
    height: 54px;
  }

  .wa__btn svg {
    width: 26px;
    height: 26px;
  }

  .wa__popup {
    right: 0;
    left: 0.75rem;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    bottom: 65px;
  }

  .wa__services {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .wa-svc {
    padding: 0.6rem 0.4rem;
  }

  .wa-svc__icon {
    width: 24px;
    height: 24px;
  }

  .wa-svc__icon svg {
    width: 16px;
    height: 16px;
  }

  .wa-svc__label {
    font-size: 0.65rem;
  }
}
