@import url('https://fonts.googleapis.com/css2?family=Sora:wght@700;800&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
  --teal: #00607F;
  --teal-light: #00789B;
  --cyan: #00C9CC;
  --ink: #12262E;
  --body-text: #41575F;
  --muted: #7A8C95;
  --bg: #F3F7F8;
  --bg-alt: #E4EEF0;
  --dark: #002B3D;
  --whatsapp: #1FA855;
  --whatsapp-hover: #178C46;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: 'Instrument Sans', system-ui, sans-serif; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }
img { max-width: 100%; }
h1, h2, h3 { font-family: 'Sora', sans-serif; font-weight: 800; margin: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 96px 48px; }
.container-narrow { max-width: 900px; margin: 0 auto; }

/* Nav */
.site-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 48px; background: #FFFFFF; border-bottom: 1px solid rgba(0,96,127,0.12); flex-wrap: wrap; }
.site-nav img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--body-text); white-space: nowrap; }
.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--whatsapp); color: #FFFFFF !important; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 999px; animation: wa-pulse 2.4s infinite; white-space: nowrap; }
.nav-cta:hover { background: var(--whatsapp-hover); }
.nav-burger { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border: none; background: transparent; cursor: pointer; flex-shrink: 0; }

/* Mobile drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(18,38,46,0.4); z-index: 99; display: none; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 78vw; max-width: 300px; background: #FFFFFF; z-index: 100; box-shadow: -8px 0 24px rgba(0,0,0,0.15); display: none; flex-direction: column; padding: 24px; }
.drawer.is-open, .drawer-overlay.is-open { display: flex; }
.drawer-close { align-self: flex-end; border: none; background: transparent; cursor: pointer; margin-bottom: 24px; }
.drawer a { font-size: 18px; font-weight: 600; color: var(--ink); padding: 14px 4px; border-bottom: 1px solid rgba(0,96,127,0.1); }

/* Hero */
.hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: 64px; align-items: center; background: #FFFFFF; }
.eyebrow { display: inline-block; background: rgba(0,96,127,0.08); color: var(--teal); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { font-size: 44px; line-height: 1.15; margin: 0 0 20px; }
.hero p.lead { font-size: 18px; line-height: 1.6; color: var(--body-text); margin: 0 0 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14px; color: var(--body-text); font-weight: 500; }
.hero-facts strong { color: var(--teal); }

.picker-card { background: #FFFFFF; border: 1px solid rgba(0,96,127,0.25); border-radius: 16px; padding: 32px; box-shadow: 0 20px 40px -20px rgba(18,38,46,0.15); scroll-margin-top: 90px; }
.picker-label { font-size: 13px; font-weight: 600; color: var(--body-text); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 8px; }
.service-btn { padding: 12px 6px; border-radius: 10px; border: 1px solid rgba(0,96,127,0.12); background: #FFFFFF; color: var(--body-text); font-family: 'Instrument Sans', sans-serif; font-size: 12.5px; font-weight: 500; cursor: pointer; line-height: 1.3; }
.service-btn.is-active { border-color: var(--teal); background: var(--teal); color: #FFFFFF; font-weight: 600; }
.preview-box { background: rgba(0,96,127,0.08); border-radius: 10px; padding: 16px; margin-top: 20px; font-size: 14px; font-style: italic; color: var(--ink); }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--whatsapp); color: #FFFFFF !important; font-weight: 600; font-size: 15px; padding: 14px; border-radius: 10px; margin-top: 16px; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-whatsapp.pill { display: inline-flex; padding: 16px 32px; border-radius: 999px; }
.picker-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* Stats */
.stats-band { background: var(--teal); padding: 64px 48px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 44px; color: #FFFFFF; }
.stat-rule { width: 32px; height: 3px; background: var(--cyan); margin: 8px auto 12px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Manifesto */
.manifesto { padding: 96px 48px; text-align: center; }
.manifesto .box { max-width: 760px; margin: 0 auto; }
.manifesto p.big { font-size: 30px; line-height: 1.4; margin: 0 0 24px; }
.manifesto p.lead2 { font-size: 18px; line-height: 1.7; color: var(--body-text); margin: 0 0 32px; }
.manifesto p.sign { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: var(--teal); margin: 0; }

/* Feature sections */
.feature h2 { font-size: 32px; margin: 0 0 16px; }
.feature p.desc { font-size: 16px; line-height: 1.6; color: var(--body-text); margin: 0 0 24px; }
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 15px; color: var(--ink); }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; margin-top: 1px; }

.macos-card { background: #0B1E29; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.2); overflow: hidden; }
.macos-bar { display: flex; align-items: center; gap: 7px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.macos-dot { width: 10px; height: 10px; border-radius: 50%; }
.macos-body { padding: 24px 28px 28px; }
.macos-title { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6E8B98; margin-bottom: 22px; }
.macos-rows { display: flex; flex-direction: column; gap: 20px; }
.macos-rows > div + div { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.macos-row-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.macos-row-head span:first-child { font-size: 16px; font-weight: 700; color: #FFFFFF; }
.macos-tag { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.macos-sub { font-size: 13px; color: #8FA5AF; }
.macos-footnote { font-size: 12px; line-height: 1.5; color: #6E8B98; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }

/* Diff table */
.diff-section { background: var(--bg-alt); padding: 96px 48px; }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal); text-align: center; margin-bottom: 16px; }
.section-title-center { font-size: 32px; text-align: center; margin: 0 0 40px; }
.diff-table-wrap { background: #FFFFFF; border-radius: 16px; overflow-x: auto; border: 1px solid rgba(0,96,127,0.12); box-shadow: 0 20px 40px -20px rgba(18,38,46,0.12); -webkit-overflow-scrolling: touch; }
.diff-table { min-width: 640px; width: 100%; border-collapse: collapse; }
.diff-table th { padding: 16px 20px; background: rgba(0,96,127,0.04); font-weight: 700; font-size: 13px; color: var(--body-text); text-transform: uppercase; letter-spacing: 0.03em; text-align: left; }
.diff-table td { padding: 16px 20px; border-top: 1px solid rgba(0,96,127,0.1); font-size: 14.5px; }
.diff-table td:first-child { font-weight: 600; color: var(--ink); }
.diff-table td:nth-child(2) { color: var(--muted); }
.diff-table td:nth-child(3) { color: var(--teal); font-weight: 600; }

/* Insurers marquee */
.insurers-section { max-width: 1200px; margin: 0 auto; padding: 56px 0; }
.marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 60s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.logo-card { flex-shrink: 0; width: 150px; height: 104px; margin-right: 14px; background: #FFFFFF; border: 1px solid rgba(0,96,127,0.12); border-radius: 12px; padding: 16px 12px; display: flex; align-items: center; justify-content: center; }
.logo-card img { object-fit: contain; filter: grayscale(1); opacity: 0.55; transition: filter 0.25s, opacity 0.25s; }
.logo-card img:hover { filter: grayscale(0); opacity: 1; }

/* Three steps */
.steps-section { background: var(--teal); padding: 96px 48px; }
.steps-grid { max-width: 1100px; margin: 0 auto; }
.steps-grid h2 { color: #FFFFFF; text-align: center; margin: 0 0 48px; font-size: 32px; }
.steps-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.step-card { border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); border-radius: 16px; padding: 32px; }
.step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 28px; color: var(--cyan); margin-bottom: 16px; }
.step-card h3 { font-size: 18px; color: #FFFFFF; margin: 0 0 10px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0; }

/* Final CTA */
.cta-final { background: #FFFFFF; padding: 96px 48px; text-align: center; }
.cta-final .box { max-width: 640px; margin: 0 auto; }
.cta-final h2 { font-size: 36px; margin: 0 0 16px; }
.cta-final p { font-size: 16px; line-height: 1.6; color: var(--body-text); margin: 0 0 32px; }
.cta-badges { margin-top: 28px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

/* Testimonials */
.testimonials-section { max-width: 1200px; margin: 0 auto; padding: 96px 48px; }
.testimonials-section h2 { text-align: center; margin: 0 0 48px; font-size: 32px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { background: #FFFFFF; border: 1px solid rgba(0,96,127,0.12); border-radius: 16px; padding: 28px; box-shadow: 0 20px 40px -24px rgba(18,38,46,0.12); }
.stars { color: var(--teal); font-size: 15px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.6; color: var(--body-text); margin: 0 0 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,96,127,0.1); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--teal); font-size: 14px; }
.person-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.person-product { font-size: 12.5px; color: var(--muted); }

/* FAQ */
.faq-section { background: var(--bg-alt); padding: 96px 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-list h2 { text-align: center; margin: 0 0 48px; font-size: 32px; }
.faq-item { background: #FFFFFF; border: 1px solid rgba(0,96,127,0.12); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-size: 16px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--body-text); margin: 14px 0 0; }

/* Footer */
.site-footer { background: var(--dark); padding: 64px 48px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-logo-box { margin-bottom: 16px; background: #FFFFFF; display: inline-block; padding: 8px 14px; border-radius: 10px; }
.footer-logo-box img { height: 28px; width: auto; display: block; }
.footer-heading { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .site-footer a.reg-link { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-links a:hover, .site-footer a.reg-link:hover { color: var(--cyan); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* Chat widget */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 100; width: 60px; height: 60px; border-radius: 50%; background: var(--teal); border: none; box-shadow: 0 12px 28px -8px rgba(0,96,127,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.chat-widget:hover { background: var(--teal-light); }

/* Reveal + animations */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes wa-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31,168,85,0.5); } 70% { box-shadow: 0 0 0 8px rgba(31,168,85,0); } }

@media (max-width: 720px) {
  .site-nav { padding: 12px 20px; gap: 12px; flex-wrap: nowrap; }
  .site-nav img { height: 26px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-cta .nav-cta-label { display: none; }
  .container, .hero, .feature { padding: 56px 24px; }
  .manifesto, .cta-final, .testimonials-section, .diff-section, .faq-section, .steps-section, .stats-band, .insurers-section { padding: 56px 24px; }
}
