:root {
  --navy-900: #0a1e3f;
  --navy-800: #102a52;
  --navy-700: #1a3866;
  --navy-600: #2a4a7f;
  --gold-500: #c9a961;
  --gold-400: #d4b876;
  --gold-300: #e0c896;
  --gold-100: #f5ecd8;
  --cream: #faf7f0;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(10,30,63,0.08);
  --shadow-md: 0 4px 16px rgba(10,30,63,0.10);
  --shadow-lg: 0 12px 40px rgba(10,30,63,0.15);
  --shadow-gold: 0 8px 24px rgba(201,169,97,0.25);
  --radius: 10px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* Skip Link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy-900);
  color: var(--gold-400);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* Universal focus visible */
*:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.2;
}

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

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

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 30, 63, 0.98);
  border-bottom-color: rgba(201, 169, 97, 0.3);
}

.header.scrolled .logo-text,
.header.scrolled .nav a,
.header.scrolled .mobile-toggle {
  color: var(--cream);
}

.header.scrolled .nav a:hover {
  color: var(--gold-400);
}

.header.scrolled .mobile-toggle:hover {
  color: var(--gold-400);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  border-radius: 8px;
  border: 1.5px solid var(--gold-400);
  transition: all 0.3s ease;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  margin-top: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  transition: color 0.2s ease;
  position: relative;
}

.nav a:hover {
  color: var(--gold-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,97,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--cream);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy-900);
  cursor: pointer;
  padding: 10px 12px;
  line-height: 1;
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  transition: color 0.3s ease, background 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(201, 169, 97, 0.1);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, #f5ecd8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,30,63,0.08), transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--gold-500);
  font-style: italic;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.stat-number .plus {
  color: var(--gold-500);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-top: 4px solid var(--gold-500);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  opacity: 0.08;
  border-radius: 50%;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-100);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  border: 3px solid var(--gold-300);
  flex-shrink: 0;
}

.hero-card-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-card-info p {
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
}

.hero-card-list li svg {
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 2px;
}

.hero-card-credentials {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
}

.hero-card-credentials strong {
  color: var(--navy-900);
}

/* ---------- SECTIONS ---------- */
section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 680px;
  margin-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- ABOUT ---------- */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 30, 63, 0.25), 0 0 0 1px rgba(201, 169, 97, 0.15);
  isolation: isolate;
}

.about-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10, 30, 63, 0.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* Decorative gold corner accent */
.about-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
  border-radius: 4px 0 0 0;
  z-index: 1;
  opacity: 0.7;
}

.about-visual {
  position: relative;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-500);
}

.about-image-badge .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  font-weight: 600;
}

.about-image-badge .value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-900);
  font-weight: 600;
  margin-top: 4px;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-quote {
  padding: 24px;
  background: var(--gold-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--navy-800);
  font-size: 17px;
  line-height: 1.7;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.cred-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cred-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.cred-text strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  margin-bottom: 2px;
}

.cred-text span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ---------- PILLARS ---------- */
.pillars {
  background: var(--cream);
}

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

.pillar-card {
  background: white;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--gold-100);
}

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

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold-500);
  font-weight: 500;
  margin-bottom: 20px;
}

.pillar-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  position: relative;
}

.pillar-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
}

.pillar-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.pillar-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- SERVICES ---------- */
.services {
  background: white;
}

.services-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-tab {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gold-300);
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  transition: all 0.3s ease;
}

.service-tab.active {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

.service-tab:hover:not(.active) {
  background: var(--gold-100);
}

.service-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-panel.active {
  display: block;
}

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

.service-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-100);
}

.service-content-left h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-content-left p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-icon-large {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.service-list svg {
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 4px;
}

/* Service tab CTA group */
.service-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 8px;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s ease, gap 0.3s ease;
}

.service-detail-link:hover {
  color: var(--gold-500);
  gap: 10px;
}

.service-detail-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- AUDIENCE ---------- */
.audience {
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.audience::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.1), transparent 70%);
}

.audience .section-title { color: var(--cream); }
.audience .section-subtitle { color: rgba(245, 236, 216, 0.7); }
.audience .section-eyebrow { color: var(--gold-400); }

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

.audience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.audience-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-400);
  transform: translateY(-4px);
}

.audience-card svg {
  color: var(--gold-400);
  margin-bottom: 20px;
}

.audience-card h4 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 14px;
  color: rgba(245, 236, 216, 0.7);
  line-height: 1.6;
}

/* ---------- PRICING ---------- */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--gold-100);
  transition: all 0.4s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream);
  transform: scale(1.04);
  border: 1.5px solid var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured .price-list li {
  color: var(--cream);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 100px;
  text-transform: uppercase;
}

.price-tier {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-amount .currency {
  font-size: 18px;
  color: var(--gold-500);
  font-weight: 500;
}

.price-amount .period {
  font-size: 14px;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.price-card.featured .price-amount .period {
  color: rgba(245, 236, 216, 0.6);
}

.price-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-100);
  min-height: 60px;
}

.price-card.featured .price-desc {
  color: rgba(245, 236, 216, 0.7);
  border-color: rgba(201,169,97,0.25);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  min-height: 280px;
}

.price-list li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.price-list svg {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.price-card.featured .btn-outline {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.price-card.featured .btn-outline:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-500);
}

.pricing-note strong { color: var(--navy-900); }

/* ---------- PROCESS ---------- */
.process {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-300), transparent);
  z-index: 0;
}

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

.process-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: white;
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: 0 0 0 8px var(--cream);
  transition: all 0.3s ease;
}

.process-step:hover .process-num {
  background: var(--gold-400);
  transform: scale(1.05);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--gold-100);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 16px;
  user-select: none;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--gold-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-toggle {
  background: var(--gold-500);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact .section-eyebrow { color: var(--gold-400); }
.contact .section-title { color: var(--cream); }
.contact-subtitle {
  color: rgba(245, 236, 216, 0.7);
  font-size: 17px;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,97,0.15);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-400);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 13px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-text a, .contact-item-text span {
  color: var(--cream);
  font-size: 16px;
  font-weight: 500;
}

.contact-item-text a:hover { color: var(--gold-400); }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--gray-700);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-group label .required { color: var(--gold-500); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: white;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

select.form-control {
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  margin-top: 8px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
}

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

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* ---------- WHATSAPP CHAT WIDGET ---------- */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* Chat Preview Bubble */
.wa-preview {
  background: white;
  border-radius: 20px;
  width: 320px;
  max-width: calc(100vw - 48px);
  box-shadow: 0 16px 48px rgba(10, 30, 63, 0.25), 0 0 0 1px rgba(10, 30, 63, 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.wa-preview.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-preview-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  color: white;
}

.wa-preview-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><circle cx='50' cy='50' r='1' fill='white' opacity='0.05'/></svg>");
  background-size: 30px;
  pointer-events: none;
}

.wa-avatar-chat {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #c9a961, #d4b876);
}

.wa-avatar-chat picture,
.wa-avatar-chat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wa-avatar-chat::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  background: #25D366;
  border: 2px solid #075E54;
  border-radius: 50%;
  z-index: 2;
}

.wa-preview-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.wa-preview-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  font-family: 'Inter', sans-serif;
}

.wa-preview-info .wa-status {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.wa-preview-info .wa-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

.wa-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .wa-close { width: 44px; height: 44px; }
}

.wa-close:hover { background: rgba(255,255,255,0.3); }
.wa-close:focus-visible { outline: 2px solid #c9a961; outline-offset: 2px; }

.wa-body {
  padding: 24px 20px 20px;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.3) 0%, transparent 50%);
  min-height: 120px;
}

.wa-bubble {
  background: white;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  font-size: 14px;
  color: #303030;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 90%;
  animation: bubbleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.wa-bubble p { margin: 0; }
.wa-bubble p + p { margin-top: 6px; }

.wa-bubble-time {
  font-size: 11px;
  color: #667781;
  display: block;
  text-align: right;
  margin-top: 4px;
}

.wa-bubble:nth-child(2) {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  margin-bottom: 8px;
}

.wa-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #128C7E;
  animation: typingDot 1.4s infinite ease-in-out;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.wa-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.wa-cta-btn:hover { background: #20bd5a; }
.wa-cta-btn:focus-visible {
  outline: 2px solid #0a1e3f;
  outline-offset: -3px;
}

/* Floating Action Button */
.wa-fab {
  width: 64px;
  height: 64px;
  background: #25D366;
  border: none;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: bobUp 3.5s ease-in-out infinite;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-fab:active { transform: scale(0.96); }

.wa-fab:focus-visible {
  outline: 3px solid #c9a961;
  outline-offset: 4px;
}

.wa-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes bobUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid white;
  font-family: 'Inter', sans-serif;
  animation: badgePop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes badgePop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab, .wa-fab::after, .wa-bubble, .wa-typing span, .wa-badge {
    animation: none !important;
  }
  .wa-preview { transition: opacity 0.2s; }
}

@media (max-width: 560px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-preview { width: calc(100vw - 32px); }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050f23;
  color: rgba(245, 236, 216, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,169,97,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h5 {
  color: var(--gold-400);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-list a, .footer-list span {
  font-size: 14px;
  color: rgba(245, 236, 216, 0.7);
  transition: color 0.2s;
  display: inline-block;
  padding: 8px 0;
  line-height: 1.4;
}

.footer-list a:hover { color: var(--gold-400); }

@media (max-width: 768px) {
  .footer-list a, .footer-list span { padding: 12px 0; }
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(201,169,97,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom strong { color: var(--gold-400); }

/* ---------- KAMPLABS CREDIT ---------- */
.kamp-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 236, 216, 0.5);
}

.kamp-credit a {
  color: var(--gold-400);
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.kamp-credit a:hover {
  color: var(--gold-300);
}

.kamp-credit a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kamp-credit a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.kamp-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  color: var(--gold-400);
  font-weight: 700;
  padding: 3px 9px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 5px;
  background: rgba(201, 169, 97, 0.06);
  font-size: 12px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: kampPulse 2.8s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.kamp-credit:hover .kamp-code {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--gold-400);
  background: rgba(201, 169, 97, 0.15);
}

.kamp-code::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.35), transparent);
  animation: kampShine 3.5s ease-in-out infinite;
}

@keyframes kampPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4);
    border-color: rgba(201, 169, 97, 0.35);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0);
    border-color: rgba(201, 169, 97, 0.6);
  }
}

@keyframes kampShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .kamp-code,
  .kamp-code::before {
    animation: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 968px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }
  .nav.open a {
    color: var(--cream);
    padding: 14px 16px;
    border-radius: 8px;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav.open a:hover { background: rgba(201,169,97,0.1); }
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid,
  .pricing-grid,
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .service-content { grid-template-columns: 1fr; padding: 32px 24px; }
  .service-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
  .credentials-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 26px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-card { padding: 28px 24px; }
  .container { padding: 0 20px; }
}

/* ---------- LIGHTWEIGHT SCROLL REVEAL (pure CSS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}