@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400;1,700&display=swap');

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

:root {
  --navy:       #1B3A6B;
  --navy-dark:  #0f2347;
  --navy-mid:   #1e4080;
  --blue-light: #E8EFF9;
  --blue-pale:  #F4F7FB;
  --white:      #FFFFFF;
  --text:       #1a1a2e;
  --text-mid:   #444466;
  --text-light: #6b7280;
  --border:     #e5e9f0;
  --gold:       #c8a96e;
  --check:      #1B3A6B;
  --star:       #F5A623;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.admin-bar nav { top: 32px; }
@media (max-width: 782px) { .admin-bar nav { top: 46px; } }

.skip-link { position: absolute; left: -10000px; }
.skip-link:focus { left: 6px; top: 7px; padding: 14px 22px; background: var(--navy); color: #fff; z-index: 999999; }

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(27,58,107,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo-text { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }

#primary-menu { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
#primary-menu li a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
#primary-menu li a:hover { color: var(--navy); background: var(--blue-pale); }
#primary-menu li.nav-cta a {
  background: var(--navy); color: #fff; padding: 10px 20px;
  border-radius: 10px; font-weight: 600;
}
#primary-menu li.nav-cta a:hover { background: var(--navy-dark); }

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh; padding: 100px 5% 60px;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-pale) 50%, var(--blue-light) 100%);
  display: flex; align-items: center; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,107,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-left {}

.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px; margin-bottom: 24px; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; }

.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 8px; }
.hero h1 em { font-style: italic; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); }
.hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; margin: 16px 0 36px; max-width: 420px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--navy); color: #fff; font-size: 15px; font-weight: 600; border-radius: 12px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: transparent; color: var(--navy); font-size: 15px; font-weight: 600; border-radius: 12px; border: 2px solid var(--navy); text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-outline:hover { background: var(--blue-pale); transform: translateY(-1px); }

.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.social-avatars { display: flex; }
.social-avatars img, .social-avatar-placeholder { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; object-fit: cover; }
.social-avatars img:first-child, .social-avatar-placeholder:first-child { margin-left: 0; }
.social-avatar-placeholder { background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; }
.social-proof-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.social-proof-text span { font-size: 13px; color: var(--text-light); }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 520px; }
.hero-phone-img { width: 100%; border-radius: 24px; display: block; }
.hero-couple-img { position: absolute; right: -40px; top: 10%; width: 55%; border-radius: 20px; box-shadow: 0 20px 60px rgba(27,58,107,0.2); }
.hero-badge { position: absolute; bottom: 12%; right: -20px; background: white; border-radius: 16px; padding: 14px 18px; box-shadow: 0 8px 32px rgba(27,58,107,0.15); max-width: 180px; }
.hero-badge p { font-size: 12px; color: var(--text-mid); line-height: 1.5; margin: 0; font-style: italic; font-family: 'Playfair Display', serif; font-weight: 400; }
.hero-badge-heart { font-size: 16px; margin-bottom: 6px; }

/* ── HOW IT WORKS ──────────────────────── */
.how { background: var(--white); padding: 80px 5%; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); text-align: center; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.step-card:hover { box-shadow: 0 8px 32px rgba(27,58,107,0.1); transform: translateY(-2px); }
.step-num { width: 32px; height: 32px; background: var(--navy); color: #fff; border-radius: 50%; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon { margin: 0 auto 16px; color: var(--navy); }
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ── WHY SECTION ───────────────────────── */
.why { background: var(--blue-pale); padding: 80px 5%; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.why-img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; display: block; }
.why-img-placeholder { width: 100%; height: 420px; background: var(--blue-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 48px; }
.why-badge { position: absolute; bottom: 24px; left: 24px; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 12px; }
.why-badge p { font-size: 13px; font-weight: 600; line-height: 1.5; margin: 0; }
.why-right .why-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; display: block; }
.why-right h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 28px; letter-spacing: -0.02em; }
.why-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--text-mid); }
.why-check { width: 22px; height: 22px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 12px; }

/* ── FEATURES ──────────────────────────── */
.features { background: var(--navy); padding: 72px 5%; }
.features .section-label { color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.feature-card { text-align: center; padding: 28px 16px; }
.feature-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #fff; }
.feature-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ──────────────────────── */
.testimonials { background: var(--white); padding: 80px 5%; }
.testimonials .section-label { margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.quote-mark { font-size: 48px; line-height: 1; color: var(--navy); font-family: Georgia, serif; margin-bottom: 12px; display: block; opacity: 0.3; }
.testimonial-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 700; color: var(--text); }
.author-loc  { font-size: 12px; color: var(--text-light); }
.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; }

/* ── CTA ───────────────────────────────── */
.cta-section {
  position: relative; background: var(--navy-dark);
  padding: 80px 5%; text-align: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.12; }
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-heart { font-size: 24px; margin-left: 8px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: #fff; color: var(--navy); font-size: 15px; font-weight: 600; border-radius: 12px; transition: transform 0.15s, box-shadow 0.15s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: transparent; color: #fff; font-size: 15px; font-weight: 600; border-radius: 12px; border: 2px solid rgba(255,255,255,0.4); transition: background 0.2s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ────────────────────────────── */
footer { background: var(--navy-dark); padding: 56px 5% 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo-text { color: #fff; font-size: 16px; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 8px 0 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: background 0.2s; text-decoration: none; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-apps { display: flex; flex-direction: column; gap: 10px; }
.app-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 16px; color: #fff; text-decoration: none; transition: background 0.2s; }
.app-badge:hover { background: rgba(255,255,255,0.14); }
.app-badge-text { line-height: 1.2; }
.app-badge-text small { font-size: 10px; color: rgba(255,255,255,0.6); display: block; }
.app-badge-text strong { font-size: 14px; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }

/* ── SCROLL REVEAL ─────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── ELEMENTOR COMPAT ──────────────────── */
.elementor-section-wrap { padding-top: 0 !important; }
.elementor-page .lol-page-content { padding: 0 !important; margin: 0 !important; }
.elementor-section.elementor-section-stretched { left: 0 !important; right: 0 !important; width: 100% !important; }
.elementor-page .entry-header, .elementor-page h1.entry-title { display: none !important; }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
  #primary-menu { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
