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

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2548;
  --orange: #e86c1a;
  --orange-light: #f59e0b;
  --green: #25D366;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --transition: .25s ease;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232,108,26,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232,108,26,.45);
}

.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.16); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(232,108,26,.12), rgba(245,158,11,.12));
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(232,108,26,.25);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-text-light .logo-text { color: var(--white); }
.logo-footer .logo-text { color: rgba(255,255,255,.9); }
.logo-accent { color: var(--orange); }
.logo-ca { color: var(--orange); font-size: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); background: var(--bg); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), #f59e0b) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(232,108,26,.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,108,26,.4) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4d8c 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: #fff;
  bottom: -100px; left: -100px;
}
.hero-shape-3 {
  width: 300px; height: 300px;
  background: var(--orange);
  top: 50%; left: 30%;
  transform: translateY(-50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px 120px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,108,26,.2);
  color: #fbbf24;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(251,191,36,.3);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* Hero Visual */
.hero-visual { position: relative; height: 420px; }

.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}

.hero-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon-blue { background: rgba(26,58,107,.5); }
.card-title { font-weight: 700; font-size: 16px; }
.card-sub { font-size: 12px; opacity: .7; }
.card-price { font-size: 42px; font-weight: 900; letter-spacing: -.02em; }
.card-price span { font-size: 18px; opacity: .7; font-weight: 500; }
.card-savings {
  font-size: 13px;
  color: #4ade80;
  font-weight: 600;
  margin: 8px 0 16px;
}
.card-bar {
  height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f59e0b);
  border-radius: 3px;
}
.card-providers { display: flex; align-items: center; gap: 6px; font-size: 12px; opacity: .7; }
.provider-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); }

.hero-card-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  white-space: nowrap;
}
.hero-card-sm-1 { top: 40px; left: -30px; }
.hero-card-sm-2 { bottom: 60px; right: -20px; }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== LOGOS STRIP ===== */
.logos-strip {
  padding: 40px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.logos-track { overflow: hidden; width: 100%; }
.logos-slide {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 25s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .logos-slide { animation: none; }
}
.logo-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow);
  letter-spacing: .02em;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }

.featured-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26,58,107,.3);
}
.featured-card::before { opacity: 1; }

.featured-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--bg);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: all var(--transition);
}
.featured-card .service-icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--navy), var(--orange)); color: var(--white); }
.featured-card:hover .service-icon { background: rgba(255,255,255,.25); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.featured-card h3 { color: var(--white); }

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.featured-card p { color: rgba(255,255,255,.75); }

.service-features {
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.featured-card .service-features li { color: rgba(255,255,255,.7); }
.featured-card .service-features li::before { color: #fbbf24; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.featured-card .service-link { color: #fbbf24; }

/* ===== WHY US ===== */
.why-us {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.why-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.why-us .section-header .section-badge { background: rgba(255,255,255,.1); color: #fbbf24; border-color: rgba(251,191,36,.3); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.why-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: -8px;
  font-variant-numeric: tabular-nums;
}

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), #f59e0b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(232,108,26,.3);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.steps-line {
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #f59e0b, var(--orange));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(232,108,26,.3);
  border: 4px solid var(--white);
  outline: 2px solid var(--orange);
}
.step-bubble span {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.stars { display: flex; gap: 2px; }
.rating-text { font-size: 15px; color: var(--text-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26,58,107,.25);
}

.quote-icon {
  font-size: 80px;
  line-height: .5;
  color: var(--orange);
  opacity: .2;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testimonial-featured .quote-icon { color: #fbbf24; opacity: .3; }

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.testimonial-featured p { color: rgba(255,255,255,.8); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.testimonial-featured .author-name { color: var(--white); }
.author-location { font-size: 12px; color: var(--text-muted); }
.testimonial-featured .author-location { color: rgba(255,255,255,.6); }
.author-stars { margin-left: auto; color: #fbbf24; font-size: 14px; letter-spacing: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2548 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.cta-shape-1 { width: 500px; height: 500px; background: var(--orange); top: -250px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: #fff; bottom: -150px; left: -50px; }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon-whatsapp { background: #e8f5e9; color: #25D366; }
.contact-icon-phone { background: linear-gradient(135deg, rgba(26,58,107,.1), rgba(232,108,26,.1)); color: var(--navy); }
.contact-icon-clock { background: rgba(245,158,11,.12); color: #d97706; }
.contact-icon-location { background: rgba(239,68,68,.1); color: #ef4444; }

.contact-detail { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }
.contact-value a { color: var(--navy); transition: color var(--transition); }
.contact-value a:hover { color: var(--orange); }

/* Contact Form */
.contact-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,108,26,.12);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.form-note a { color: var(--green); font-weight: 600; }
.form-success {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #15803d;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-contact-quick { display: flex; gap: 12px; }
.footer-quick-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.footer-quick-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.4);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: 0;
  border-left-color: var(--navy-dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,108,26,.1); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-item.open .faq-q { background: var(--bg); color: var(--navy); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 4px 24px 22px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a strong { color: var(--text); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,.85); padding: 14px 16px; border-radius: 10px; width: 100%; }
  .nav-links a:hover { background: rgba(255,255,255,.1); }
  .nav-cta { background: linear-gradient(135deg, var(--orange), #f59e0b) !important; text-align: center; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 60px 16px 100px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .contact-form { padding: 24px; }
}
