/* ── TOKENS ── */
:root {
  --navy:    #0D1F3C;
  --cyan:    #00B4D8;
  --gray:    #6B7280;
  --white:   #FFFFFF;
  --border:  #E5E7EB;
  --bg-grad: linear-gradient(150deg, #EFF8FF 0%, #FFFFFF 100%);
  --dark-bg: #0D1F3C;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a   { text-decoration: none; }

/* ── BASE ── */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
}

/* ── LAYOUT HELPERS ── */
.max-w { max-width: 1100px; margin: 0 auto; }

section { padding: 80px 48px; }

.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem; color: var(--gray);
  margin-bottom: 48px; max-width: 600px;
}

/* ── GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary { background: var(--cyan); color: #fff; border: none; }
.btn-primary:hover { background: #009ec0; }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-size: 1.25rem; font-weight: 700;
}
.nav-logo .accent { color: var(--cyan); }

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

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; width: 32px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  background: var(--bg-grad);
  padding: 96px 48px 80px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  color: var(--navy); margin-bottom: 20px;
}

.hero p {
  font-size: 1.125rem; color: var(--gray);
  max-width: 560px; margin: 0 auto 36px;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SECTION BACKGROUNDS ── */
.section-white { background: var(--white); }
.section-light { background: linear-gradient(150deg, #F0F9FF 0%, #FFFFFF 100%); }

/* ── CARD NUMBER ── */
.card-num {
  font-size: 2rem; font-weight: 800;
  color: var(--cyan); margin-bottom: 12px;
}

/* ── FEATURE ICON ── */
.feature-icon {
  font-size: 1.5rem; margin-bottom: 14px;
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── STATS ── */
.stats-section {
  background: var(--dark-bg);
  padding: 80px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900; color: var(--cyan);
  line-height: 1; margin-bottom: 10px;
}
.stat-label {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ── BLUEPRINT CARDS ── */
.blueprint-card { display: flex; flex-direction: column; gap: 16px; }

.blueprint-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--cyan); width: fit-content;
}

.blueprint-block-title {
  font-size: 0.8rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.blueprint-result {
  background: rgba(0,180,216,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 10px;
  padding: 14px 16px;
}
.blueprint-result-stat {
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.blueprint-result p { font-size: 0.82rem; color: var(--gray); }

.blueprint-disclaimer {
  font-size: 0.7rem; color: rgba(107,114,128,0.6);
  font-style: italic; line-height: 1.4; margin-top: auto;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--dark-bg);
  padding: 80px 48px;
}

.contact-inner { text-align: center; }

.contact-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem; margin-bottom: 40px;
}

.form-wrap {
  display: flex; justify-content: center;
  overflow: hidden;
}

.form-wrap iframe {
  max-width: 100%;
  border-radius: 12px;
}

.contact-alt {
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.contact-alt a {
  color: var(--cyan);
  font-weight: 600;
}
.contact-alt a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { color: #fff; }
.footer-logo img { display: none; }
.footer-logo .nav-logo-text { color: #fff; }
.footer-logo .accent { color: var(--cyan); }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-email {
  font-size: 0.85rem; font-weight: 600;
  color: var(--cyan);
}
.footer-email:hover { text-decoration: underline; }


/* ── POLISH ── */
html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left — used on labels & titles */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Pop scale — used on stat numbers */
.reveal-scale {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.reveal[data-delay="1"],
.reveal-left[data-delay="1"],
.reveal-scale[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"],
.reveal-left[data-delay="2"],
.reveal-scale[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"],
.reveal-left[data-delay="3"],
.reveal-scale[data-delay="3"] { transition-delay: 0.30s; }

/* Card hover lift */
.card {
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Nav shadow on scroll — toggled by JS */
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* ── CHANNELS ── */
.channel-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.channel-chip {
  padding: 8px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--navy);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: border-color 0.2s, color 0.2s;
}
.channel-chip:hover { border-color: var(--cyan); color: var(--cyan); }

.channel-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.channel-benefit {
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-arrow {
  color: var(--cyan); font-size: 1.2rem; font-weight: 700;
  margin-top: 2px; flex-shrink: 0;
}
.channel-benefit strong {
  display: block; font-size: 0.95rem;
  color: var(--navy); margin-bottom: 4px;
}
.channel-benefit p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ── CAPABILITIES ── */
.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.cap-featured {
  background: var(--navy);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(13,31,60,0.15);
  /* override card hover from shared .card-like hover — this is not .card so no conflict */
}

.cap-featured-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(0,180,216,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cap-featured h3 {
  font-size: 1.2rem; font-weight: 800;
  color: #fff; margin-bottom: 0;
}

.cap-featured > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  flex: 1;
}

.cap-ad-platforms {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cap-ad-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.cap-ad-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.cap-ad-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--cyan);
  transition: background 0.2s, border-color 0.2s;
}
.cap-ad-badge:hover {
  background: rgba(0,180,216,0.22);
  border-color: var(--cyan);
}

.cap-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cap-support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cap-support-icon {
  font-size: 1.25rem;
  width: 40px; height: 40px;
  background: rgba(0,180,216,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── ADVISORY SECTION ── */
.advisory-section {
  background: var(--navy);
  padding: 80px 48px;
}

.advisory-quote {
  border-left: 3px solid var(--cyan);
  padding: 16px 24px;
  margin: 0 0 48px;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 700px;
}

.advisory-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.advisory-card h3 { color: #fff; }
.advisory-card p  { color: rgba(255,255,255,0.6); }

.advisory-arrow {
  color: var(--cyan); font-size: 1.1rem;
  font-weight: 700; margin-bottom: 12px;
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.timeline-step {
  flex: 1;
}
.timeline-connector {
  width: 40px; flex-shrink: 0;
  height: 2px; background: var(--border);
  margin-top: 28px;
}
.timeline-week {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  padding-left: 4px;
}
.timeline-card { border-top: 3px solid var(--cyan); }
.timeline-title {
  font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}

@media (max-width: 768px) {
  section { padding: 56px 24px; }

  .nav { padding: 0 24px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 64px 24px 56px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; text-align: center; }

  .stats-section { padding: 56px 24px; }
  .advisory-section { padding: 56px 24px; }
  .contact-section { padding: 56px 24px; }

  .form-wrap iframe { width: 100% !important; }

  .cap-layout {
    grid-template-columns: 1fr;
  }

  .cap-support {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 16px;
  }
  .timeline-connector {
    width: 2px; height: 24px;
    margin: 0 0 0 20px;
  }
}

@media (max-width: 480px) {
  .cap-support {
    grid-template-columns: 1fr;
  }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px; height: 50px;
  }
}
