:root {
  --ivory: #FAF8F5;
  --warm-white: #FFFFFF;
  --cream: #F3EDE4;
  --sand: #E8DFD2;
  --gold: #C5A467;
  --gold-dark: #A8884A;
  --charcoal: #2A2A2A;
  --slate: #4A4A4A;
  --muted: #7A7A7A;
  --light-border: #E8E2DA;
  --green-whatsapp: #25D366;
  --green-whatsapp-dark: #1EBE57;
  --phone-blue: #2563EB;
  --phone-blue-dark: #1D4ED8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.25; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.announcement-bar span { color: var(--gold); font-weight: 600; }

/* ===================== NAVBAR ===================== */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo-icon svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,164,103,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: 52px;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-description {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-disclaimer {
  font-size: 13px;
  color: var(--muted);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.btn-whatsapp { background: var(--green-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--green-whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.3); }
.btn-phone { background: var(--warm-white); color: var(--charcoal); border: 2px solid var(--light-border); }
.btn-phone:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding: 20px 0;
}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--charcoal);
}
.hero-stat span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  background: var(--warm-white);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 { font-size: 40px; color: var(--charcoal); margin-bottom: 16px; }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-dark);
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--charcoal); }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--sand);
  font-size: 18px;
  z-index: 2;
}

/* ===================== SERVICES ===================== */
.services { padding: 100px 0; background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  background: var(--ivory);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  z-index: 1;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.service-card-body { padding: 24px 28px 28px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--charcoal); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===================== ABOUT / WHY US ===================== */
.about { padding: 100px 0; }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-content .section-label { text-align: left; }
.about-content h2 { font-size: 38px; margin-bottom: 20px; text-align: left; }
.about-content > p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg { width: 20px; height: 20px; color: var(--gold); }
.about-feature h4 { font-size: 16px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.about-feature p { font-size: 14px; color: var(--muted); }

/* ===================== TRANSPARENCY SECTION ===================== */
.transparency { padding: 80px 0; background: var(--charcoal); color: #fff; }
.transparency .section-header h2 { color: #fff; }
.transparency .section-header p { color: rgba(255,255,255,0.6); }
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.transparency-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.transparency-card svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.transparency-card h4 { font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 6px; }
.transparency-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===================== CTA SECTION ===================== */
.cta-section { padding: 100px 0; background: var(--warm-white); }
.cta-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(197,164,103,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-box h2 { font-size: 40px; margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.btn-cta-phone { background: var(--charcoal); color: #fff; }
.btn-cta-phone:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ===================== FAQ ===================== */
.faq { padding: 100px 0; }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-border); padding: 24px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.5;
}
.faq-question svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; margin-left: 16px; transition: transform 0.3s; }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-top: 16px; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===================== FOOTER ===================== */
.footer { padding: 0 0 32px; background: var(--charcoal); color: rgba(255,255,255,0.7); }
.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-cta-left h3 { font-size: 24px; color: #fff; margin-bottom: 4px; }
.footer-cta-left p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-cta-right { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-footer-call { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-footer-call:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-icon { background: var(--gold); }
.footer-brand > p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover { background: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.social-link:hover svg { color: #fff; }
.footer h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; color: #fff; margin-bottom: 20px; letter-spacing: 0.8px; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-contact-link { text-decoration: none; transition: color 0.2s; }
.footer-contact-link:hover { color: var(--gold); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  background: rgba(197,164,103,0.08);
  border: 1px solid rgba(197,164,103,0.15);
  border-radius: 10px;
}
.footer-disclaimer > svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-disclaimer strong { color: rgba(255,255,255,0.75); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===================== BUSINESS MODEL ===================== */
.business-model { padding: 100px 0; background: var(--ivory); }
.bm-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }
.bm-card-main {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.bm-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.bm-badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.bm-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dark);
}
.bm-icon svg { width: 28px; height: 28px; }
.bm-card-main h3 { font-size: 24px; margin-bottom: 12px; color: var(--charcoal); }
.bm-card-main > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.bm-card-main strong { color: var(--charcoal); }
.bm-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 18px;
}
.bm-note svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.bm-note span { font-size: 13px; color: var(--slate); font-weight: 500; line-height: 1.6; }
.bm-side { display: flex; flex-direction: column; gap: 16px; }
.bm-card-small {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bm-card-small:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bm-icon-sm {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.bm-icon-sm svg { width: 22px; height: 22px; }
.bm-card-small h4 { font-size: 16px; margin-bottom: 6px; color: var(--charcoal); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.bm-card-small p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.bm-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.bm-promise > svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.bm-promise h4 { font-size: 15px; color: #fff; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.bm-promise p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===================== LEGAL MODAL ===================== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.legal-modal-overlay.active { opacity: 1; pointer-events: all; }
.legal-modal {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.legal-modal-overlay.active .legal-modal { transform: translateY(0) scale(1); }
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-border);
  flex-shrink: 0;
}
.legal-modal-header h3 { font-size: 22px; color: var(--charcoal); }
.legal-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.legal-modal-close:hover { background: var(--sand); }
.legal-modal-close svg { width: 18px; height: 18px; color: var(--slate); }
.legal-modal-body { padding: 32px; overflow-y: auto; flex: 1; }
.legal-modal-body h4 { font-size: 16px; margin: 24px 0 8px; color: var(--charcoal); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.legal-modal-body h4:first-of-type { margin-top: 16px; }
.legal-modal-body p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.legal-modal-body strong { color: var(--slate); }
.legal-date { font-style: italic; color: var(--muted) !important; font-size: 13px !important; margin-bottom: 16px !important; }

/* ===================== FLOATING WHATSAPP ===================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 28px; height: 28px; color: #fff; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; animation: fadeInUp 0.6s ease forwards; }
.animate-d1 { animation-delay: 0.1s; }
.animate-d2 { animation-delay: 0.2s; }
.animate-d3 { animation-delay: 0.3s; }
.animate-d4 { animation-delay: 0.4s; }
.animate-d5 { animation-delay: 0.5s; }
.animate-d6 { animation-delay: 0.6s; }
.animate-d7 { animation-delay: 0.7s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .hero-image { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container { grid-template-columns: 1fr; gap: 48px; }
  .bm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-strip { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--light-border);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 34px; }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 22px; }
  .section-header h2 { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .cta-box h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-strip { text-align: center; align-items: center; }
  .footer-cta-right { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar .container { gap: 24px; }
}


/* ===================== NAV ACTIVE STATE ===================== */
.nav-links a.active { color: var(--gold-dark); font-weight: 600; }

/* ===================== INNER PAGE HERO ===================== */
.inner-hero {
  background: var(--charcoal);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(197,164,103,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.inner-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.inner-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.inner-hero .breadcrumb a:hover { text-decoration: underline; }
.inner-hero h1 { font-size: 44px; color: #fff; margin-bottom: 16px; position: relative; }
.inner-hero p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; position: relative; }

/* ===================== LEGAL PAGES ===================== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 72px 0 100px; }
.legal-date-badge {
  display: inline-block; background: var(--cream); border: 1px solid var(--sand);
  border-radius: 50px; padding: 6px 18px; font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 32px;
}
.legal-content h2 { font-size: 26px; color: var(--charcoal); margin: 40px 0 12px; }
.legal-content h3 { font-size: 18px; color: var(--charcoal); margin: 28px 0 10px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content ul li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.legal-content strong { color: var(--slate); }
.legal-divider { border: none; border-top: 1px solid var(--light-border); margin: 40px 0; }

/* ===================== CONTACT PAGE ===================== */
.contact-page { padding: 72px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--warm-white); border: 1px solid var(--light-border); border-radius: var(--radius-lg); padding: 40px 32px; }
.contact-info-card h2 { font-size: 28px; margin-bottom: 12px; }
.contact-info-card > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--ivory); border: 1px solid var(--light-border); border-radius: var(--radius); text-decoration: none; transition: all 0.25s; }
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-method-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-icon.whatsapp { background: rgba(37,211,102,0.1); color: var(--green-whatsapp); }
.contact-method-icon.phone { background: rgba(37,99,235,0.1); color: var(--phone-blue); }
.contact-method-icon.email { background: var(--cream); color: var(--gold-dark); }
.contact-method-icon.location { background: var(--cream); color: var(--gold-dark); }
.contact-method-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-method-value { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.contact-form-card { background: var(--warm-white); border: 1px solid var(--light-border); border-radius: var(--radius-lg); padding: 40px 36px; }
.contact-form-card h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--charcoal); background: var(--ivory); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,164,103,0.12); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 16px; background: var(--gold); color: #fff; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s; letter-spacing: 0.3px; }
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.form-message.success { background: rgba(37,211,102,0.1); color: #15803d; border: 1px solid rgba(37,211,102,0.2); }
.form-message.error { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.15); }

/* ===================== ABOUT PAGE ===================== */
.about-page { padding: 72px 0 100px; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 80px; }
.about-intro-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--warm-white); border: 1px solid var(--light-border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { width: 60px; height: 60px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold-dark); }
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===================== SERVICES PAGE ===================== */
.services-page { padding: 72px 0 100px; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--light-border); }
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.service-detail-content h2 { font-size: 32px; margin-bottom: 16px; }
.service-detail-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-tag { background: var(--cream); border: 1px solid var(--sand); border-radius: 50px; padding: 4px 14px; font-size: 12px; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.3px; }

/* ===================== FAQ PAGE ===================== */
.faq-page { padding: 72px 0 100px; }
.faq-categories { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.faq-cat-btn { padding: 8px 22px; border-radius: 50px; border: 1.5px solid var(--light-border); background: var(--warm-white); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===================== RESPONSIVE INNER PAGES ===================== */
@media (max-width: 768px) {
  .inner-hero h1 { font-size: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-card.reverse { direction: ltr; }
}
