/* Extracted styles from index.html */
/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --secondary: #f59e0b;
  --secondary-light: #fcd34d;
  --accent: #10b981;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary) 0%,
    #d97706 100%
  );

  /* Spacing System (8px grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section--gray {
  background-color: var(--gray-100);
}

.section--dark {
  background: var(--gradient-primary);
  color: var(--white);
}

.text-center {
  text-align: center;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section--dark .section-subtitle {
  color: var(--gray-300);
}

.highlight {
  color: var(--secondary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn--sms {
  background: #2563eb;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn--sms:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn--large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-base);
}

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

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

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

.mobile-nav__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav__cta {
  margin-top: var(--space-md);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: var(--gradient-primary);
  border-radius: 50% 0 0 50%;
  opacity: 0.05;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  color: var(--gray-700);
}

.hero__feature svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__floating-card--top {
  top: -20px;
  right: 10px;
}

.hero__floating-card--bottom {
  bottom: 20px;
  left: -10px;
}

.hero__floating-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__floating-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.hero__floating-text strong {
  display: block;
  font-size: 1.25rem;
  color: var(--dark);
}

.hero__floating-text span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== SERVICES SECTION ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

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

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.service-card__title {
  margin-bottom: var(--space-sm);
}

.service-card__description {
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.service-card__feature svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

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

.why-us__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-us__content h2 {
  text-align: left;
}

.why-us__description {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.why-us__item {
  display: flex;
  gap: var(--space-sm);
}

.why-us__item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15) 0%,
    rgba(245, 158, 11, 0.05) 100%
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us__item-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.why-us__item-content h4 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.why-us__item-content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* ===== STATS SECTION ===== */
.stats {
  padding: var(--space-2xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-card__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: Georgia, serif;
}

.testimonial-card__text {
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
}

/* ===== CTA SECTION ===== */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1920")
    center/cover no-repeat;
  opacity: 0.1;
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}

.cta__description {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.cta__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  justify-content: center;
}

.cta__phone-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.cta__phone-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.cta__phone-text {
  text-align: left;
}

.cta__phone-label {
  font-size: 0.875rem;
  color: var(--gray-300);
}

.cta__phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

/* ===== CONTACT SECTION ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__item {
  display: flex;
  gap: var(--space-md);
}

.contact__item-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.contact__item-content h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.contact__item-content p,
.contact__item-content a {
  color: var(--gray-500);
  font-size: 1rem;
}

.contact__item-content a:hover {
  color: var(--primary);
}

.contact__form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  margin-bottom: var(--space-md);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__description {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

.footer__social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer__column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

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

.footer__link {
  font-size: 0.9375rem;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

/* ===== FLOATING CALL BUTTON ===== */
.call-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
  z-index: 1000;
  transition: all var(--transition-base);
  animation: bounce 2s infinite;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(30, 58, 95, 0.5);
}

.call-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PROCESS / HOW WE WORK SECTION ===== */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

.process-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  text-align: center;
}

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

.process-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.15);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.process-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.process-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.process-card__title {
  margin-bottom: var(--space-sm);
}

.process-card__description {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== ZONES / COVERAGE SECTION ===== */
.zones__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.zones__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.zones__list h3 {
  margin-bottom: var(--space-lg);
}

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

.zones__column-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.zones__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.zones__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 6px 0;
}

.zones__item svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
  flex-shrink: 0;
}

.zones__note {
  font-size: 0.9375rem;
  color: var(--gray-500);
  padding: var(--space-sm);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--secondary);
}

.zones__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

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

/* ===== FAQ SECTION ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.0625rem;
  list-style: none;
  transition: all var(--transition-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

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

.faq__question svg {
  width: 24px;
  height: 24px;
  fill: var(--gray-500);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq__item[open] .faq__question svg {
  transform: rotate(180deg);
  fill: var(--secondary);
}

.faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq__answer p {
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 0.9375rem;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .header__cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero__content {
    text-align: left;
  }

  .hero__image-wrapper img {
    height: 500px;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .zones__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__floating-card--top {
    top: 20px;
    right: -30px;
  }

  .hero__floating-card--bottom {
    bottom: 40px;
    left: -50px;
  }

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
