*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ivory:#FFFAF0;
  --navy:#142641;
  --blue:#335CC4;
  --coral:#E56A4A;
  --navy-90:rgba(20,38,65,0.9);
  --navy-60:rgba(20,38,65,0.6);
  --navy-40:rgba(20,38,65,0.4);
  --navy-10:rgba(20,38,65,0.1);
  --navy-5:rgba(20,38,65,0.05);
  --coral-10:rgba(229,106,74,0.1);
  --coral-20:rgba(229,106,74,0.2);
  --coral-glow:rgba(229,106,74,0.35);
  --blue-10:rgba(51,92,196,0.1);
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --radius-xl:32px;
}

html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}
body{background:var(--ivory);font-family:'Plus Jakarta Sans',sans-serif;color:var(--navy);overflow-x:hidden}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:64px;display:flex;align-items:center;
  backdrop-filter:blur(16px) saturate(1.6);
  -webkit-backdrop-filter:blur(16px) saturate(1.6);
  background:rgba(255,250,240,0.82);
  border-bottom:1px solid var(--navy-5);
  transition:box-shadow 0.3s;
}
header.scrolled{box-shadow:0 2px 24px rgba(20,38,65,0.06)}
.header-inner{
  max-width:1200px;width:100%;margin:0 auto;
  padding:0 clamp(16px,4vw,32px);
  display:flex;align-items:center;justify-content:space-between;
}
.logo{height:26px;width:auto;object-fit:contain}
.header-cta{
  background:var(--coral);color:white;
  font-size:13px;font-weight:700;
  padding:10px 22px;border-radius:99px;
  text-decoration:none;
  transition:all 0.25s cubic-bezier(0.22,1,0.36,1);
  box-shadow:0 2px 12px var(--coral-glow);
}
.header-cta:hover{
  background:#C44E33;
  transform:translateY(-1px);
  box-shadow:0 6px 20px var(--coral-glow);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero{
  position:relative;
  padding:calc(64px + clamp(48px,8vw,80px)) 0 0;
  overflow:hidden;
  background:var(--ivory);
  min-height:100svh;
  display:flex;
  flex-direction:column;
}
.hero-bg-glow{
  position:absolute;
  top:-20%;right:-10%;
  width:70vw;height:70vw;
  max-width:900px;max-height:900px;
  background:radial-gradient(circle, rgba(229,106,74,0.08) 0%, rgba(51,92,196,0.05) 40%, transparent 70%);
  pointer-events:none;
  z-index:0;
}
.hero-inner{
  max-width:1200px;width:100%;margin:0 auto;
  padding:0 clamp(16px,4vw,32px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(24px,4vw,64px);
  align-items:center;
  position:relative;z-index:1;
  flex:1;
}
.hero-content{position:relative;z-index:2}

/* Pill */
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--coral-10);border:1px solid var(--coral-20);
  border-radius:99px;padding:6px 16px;
  font-size:12px;font-weight:700;color:var(--coral);
  letter-spacing:0.04em;text-transform:uppercase;
  margin-bottom:28px;
  animation:heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both 0.1s;
}
.pill-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--coral);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.7)}}

/* Headlines */
h1{
  font-size:clamp(2.4rem,5vw,3.6rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.035em;
  color:var(--navy);
  margin-bottom:24px;
  animation:heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both 0.2s;
}
h1 span{display:block}
h1 .accent{
  color:var(--coral);
  position:relative;
  display:inline;
}
h1 .line-3{
  margin-top:4px;
  white-space:nowrap;
}

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

.hero-sub{
  font-size:clamp(15px,1.6vw,17px);
  line-height:1.7;
  color:var(--navy-60);
  max-width:480px;
  margin-bottom:32px;
  animation:heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both 0.35s;
}
.hero-sub strong{color:var(--navy);font-weight:700}

/* CTA button */
.hero-actions{
  animation:heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both 0.45s;
}
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--coral);color:white;
  font-family:inherit;font-size:16px;font-weight:700;
  padding:16px 36px;border-radius:99px;border:none;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.22,1,0.36,1);
  box-shadow:0 4px 24px var(--coral-glow),0 1px 3px rgba(0,0,0,0.08);
}
.btn-primary:hover{
  background:#C44E33;
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 8px 32px var(--coral-glow),0 2px 6px rgba(0,0,0,0.1);
}
.btn-primary svg{transition:transform 0.3s}
.btn-primary:hover svg{transform:translateX(3px)}
.hero-note{
  font-size:13px;color:var(--navy-40);
  margin-top:14px;
}

/* Hero visual — globe + notifications */
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) both 0.5s;
}
.globe-container{
  width:100%;
  max-width:420px;
  aspect-ratio:1;
  position:relative;
}
#globe-canvas{
  width:100%!important;
  height:100%!important;
  display:block;
  border-radius:50%;
  filter:drop-shadow(0 20px 60px rgba(20,38,65,0.15));
}

/* Floating notification cards */
.notif-stack{
  position:absolute;
  left:-30px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:10;
  pointer-events:none;
}
.notif-card{
  display:flex;align-items:center;gap:12px;
  background:white;
  border:1px solid var(--navy-10);
  border-radius:var(--radius-md);
  padding:12px 16px;
  box-shadow:0 8px 32px rgba(20,38,65,0.1),0 2px 6px rgba(20,38,65,0.04);
  min-width:240px;
  opacity:0;
  transform:translateX(-20px);
  animation:notifSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
  pointer-events:auto;
}
.notif-1{animation-delay:1s}
.notif-2{animation-delay:1.5s}
.notif-3{animation-delay:2s}

@keyframes notifSlideIn{
  to{opacity:1;transform:translateX(0)}
}

.notif-icon{
  width:36px;height:36px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.notif-icon-money{background:var(--coral-10);color:var(--coral)}
.notif-icon-check{background:rgba(34,197,94,0.1);color:#16a34a}
.notif-icon-img{background:#E2DFD9}
.notif-img-icon{width:18px;height:18px;object-fit:contain;display:block}
.notif-text{flex:1;min-width:0}
.notif-text strong{display:block;font-size:13px;font-weight:700;color:var(--navy);line-height:1.3}
.notif-text span{display:block;font-size:11.5px;color:var(--navy-60);margin-top:1px}
.notif-time{font-size:10px;color:var(--navy-40);white-space:nowrap;flex-shrink:0}

/* Country flags row */
.hero-flags{
  padding:clamp(28px,4vw,48px) clamp(16px,4vw,32px) clamp(24px,3vw,36px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  animation:heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both 0.7s;
}
.flag-group{
  display:flex;align-items:center;gap:8px;
}
.flag-img{
  width:28px;height:28px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid white;
  box-shadow:0 2px 8px rgba(20,38,65,0.1);
  transition:transform 0.2s;
}
.flag-img:hover{transform:scale(1.15)}
.flag-dest{
  border-color:var(--coral-20);
  box-shadow:0 2px 8px var(--coral-glow);
}
.flag-label{
  font-size:16px;color:var(--coral);font-weight:700;
  margin:0 2px;
}
.flag-caption{
  font-size:13px;color:var(--navy-40);font-weight:500;
}

/* ═══════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════ */
.problem{
  background:var(--navy);
  padding:clamp(64px,10vw,100px) clamp(16px,4vw,32px);
  position:relative;
  overflow:hidden;
}
.problem::before{
  content:"";position:absolute;
  top:-50%;left:-20%;
  width:60%;height:200%;
  background:radial-gradient(ellipse, rgba(229,106,74,0.06) 0%, transparent 60%);
  pointer-events:none;
}
.problem-inner{
  max-width:1200px;margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:clamp(32px,6vw,80px);
  align-items:center;
}
.problem-stat{
  text-align:center;
  position:relative;
}
.stat-number{
  display:block;
  font-size:clamp(5rem,12vw,9rem);
  font-weight:900;
  letter-spacing:-0.04em;
  line-height:0.85;
  color:var(--coral);
  text-shadow:0 0 80px var(--coral-glow);
}
.stat-label{
  display:block;
  font-size:clamp(12px,1.4vw,14px);
  color:rgba(255,255,255,0.45);
  margin-top:12px;
  font-weight:600;
  letter-spacing:0.02em;
  max-width:200px;
}
.problem-copy h2{
  font-size:clamp(1.6rem,3.2vw,2.6rem);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.025em;
  color:white;
  margin-bottom:18px;
}
.problem-copy h2 .accent{color:var(--coral)}
.problem-copy p{
  font-size:clamp(14px,1.5vw,16px);
  color:rgba(255,255,255,0.55);
  line-height:1.7;
  max-width:520px;
}

/* ═══════════════════════════════════════
   CONTRAST CARDS
   ═══════════════════════════════════════ */
.contrast{
  padding:clamp(48px,8vw,80px) clamp(16px,4vw,32px);
  background:var(--ivory);
}
.contrast-inner{
  max-width:1000px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contrast-card{
  border-radius:var(--radius-xl);
  padding:clamp(28px,4vw,40px);
  position:relative;
  overflow:hidden;
}
.contrast-bad{
  background:white;
  border:1px solid rgba(229,106,74,0.2);
}
.contrast-bad::before{
  content:"";position:absolute;top:0;left:0;right:0;
  height:3px;background:var(--coral);
}
.contrast-good{
  background:linear-gradient(135deg,rgba(51,92,196,0.04) 0%, rgba(34,197,94,0.04) 100%);
  border:1px solid rgba(51,92,196,0.15);
}
.contrast-good::before{
  content:"";position:absolute;top:0;left:0;right:0;
  height:3px;background:linear-gradient(90deg,var(--blue),#16a34a);
}
.contrast-tag{
  font-size:11px;font-weight:800;
  letter-spacing:0.08em;text-transform:uppercase;
  margin-bottom:24px;
}
.tag-bad{color:var(--coral)}
.tag-good{color:var(--blue)}
.contrast-items{display:flex;flex-direction:column;gap:20px}
.contrast-item{display:flex;gap:14px;align-items:flex-start}
.ci-icon{
  width:28px;height:28px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px;
}
.ci-x{background:var(--coral-10);color:var(--coral)}
.ci-check{background:rgba(34,197,94,0.1);color:#16a34a}
.contrast-item strong{
  display:block;font-size:14px;font-weight:700;
  color:var(--navy);margin-bottom:4px;
}
.contrast-item p{
  font-size:13px;color:var(--navy-60);
  line-height:1.55;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how{
  padding:clamp(48px,8vw,80px) clamp(16px,4vw,32px);
  background:var(--ivory);
}
.how-inner{max-width:1200px;margin:0 auto}
.section-label{
  font-size:11px;font-weight:800;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--coral);margin-bottom:12px;
}
.how-title{
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:800;
  letter-spacing:-0.025em;
  color:var(--navy);
  margin-bottom:clamp(40px,6vw,64px);
  max-width:600px;
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(20px,3vw,32px);
}
.step{
  background:white;
  border:1px solid var(--navy-10);
  border-radius:var(--radius-lg);
  padding:clamp(24px,3vw,36px);
  position:relative;
  transition:transform 0.3s cubic-bezier(0.22,1,0.36,1),box-shadow 0.3s;
}
.step:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(20,38,65,0.08);
}
.step-number{
  font-size:clamp(36px,4vw,48px);
  font-weight:900;
  letter-spacing:-0.04em;
  color:var(--coral-20);
  line-height:1;
  margin-bottom:16px;
}
.step-line{
  width:32px;height:3px;
  background:var(--coral);
  border-radius:99px;
  margin-bottom:20px;
}
.step h3{
  font-size:16px;font-weight:700;
  color:var(--navy);margin-bottom:10px;
}
.step p{
  font-size:14px;color:var(--navy-60);
  line-height:1.65;
}

/* ═══════════════════════════════════════
   EMOTIONAL QUOTE
   ═══════════════════════════════════════ */
.emotional{
  padding:clamp(48px,8vw,80px) clamp(16px,4vw,32px);
  background:var(--navy);
  position:relative;
  overflow:hidden;
}
.emotional::before{
  content:"";position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:500px;height:500px;
  background:radial-gradient(circle, rgba(229,106,74,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.emotional-inner{
  max-width:720px;margin:0 auto;
  text-align:center;
  position:relative;z-index:1;
}
blockquote{
  font-size:clamp(1.6rem,3.5vw,2.4rem);
  font-weight:800;
  line-height:1.25;
  letter-spacing:-0.02em;
  color:white;
  margin-bottom:20px;
  position:relative;
}
blockquote::before{
  content:"\201C";
  position:absolute;
  top:-0.35em;left:-0.05em;
  font-size:3em;
  color:var(--coral);
  opacity:0.3;
  line-height:1;
  font-weight:900;
}
.emotional-sub{
  font-size:clamp(15px,1.8vw,18px);
  color:rgba(255,255,255,0.5);
  line-height:1.6;
  font-weight:500;
}

/* ═══════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════ */
.bottom-cta{
  background:var(--ivory);
  padding:clamp(64px,10vw,100px) clamp(16px,4vw,32px);
  text-align:center;
  position:relative;
}
.bottom-cta::before{
  content:"";position:absolute;
  bottom:0;left:50%;transform:translateX(-50%);
  width:80%;height:60%;
  background:radial-gradient(ellipse at bottom, rgba(229,106,74,0.05) 0%, transparent 60%);
  pointer-events:none;
}
.bottom-cta-inner{max-width:560px;margin:0 auto;position:relative;z-index:1}
.bottom-cta h2{
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:900;
  letter-spacing:-0.03em;
  color:var(--navy);
  line-height:1.1;
  margin-bottom:16px;
}
.bottom-cta p{
  font-size:clamp(15px,1.6vw,17px);
  color:var(--navy-60);
  line-height:1.6;
  margin-bottom:36px;
  max-width:440px;
  margin-left:auto;margin-right:auto;
}
.bottom-vl{
  background:white;
  border:1px solid var(--navy-10);
  border-radius:var(--radius-lg);
  padding:clamp(24px,4vw,36px);
  box-shadow:0 12px 48px rgba(20,38,65,0.08),0 2px 8px rgba(20,38,65,0.04);
  overflow:hidden;
}
.bottom-vl form-widget{display:block;width:100%;max-width:100%}

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */
.vl-modal{
  position:fixed;inset:0;z-index:200;
  display:none;justify-content:center;
  padding:clamp(12px,4vw,24px);
  background:rgba(20,38,65,0.55);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  align-items:flex-end;
}
@media(min-width:540px){.vl-modal{align-items:center}}
.vl-modal.is-open{display:flex}
.vl-modal-card{
  width:min(520px,100%);
  max-height:min(88dvh,92vh);
  overflow:auto;
  background:white;
  border:1px solid var(--navy-10);
  border-radius:var(--radius-lg);
  box-shadow:0 24px 80px rgba(20,38,65,0.3);
  padding:52px clamp(16px,4vw,24px) 24px;
  position:relative;
  -webkit-overflow-scrolling:touch;
  animation:modalSlideUp 0.35s cubic-bezier(0.22,1,0.36,1);
}
@keyframes modalSlideUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
@media(max-width:539px){
  .vl-modal-card{width:100%;border-radius:var(--radius-lg) var(--radius-lg) 0 0;padding-bottom:max(24px,env(safe-area-inset-bottom,0px))}
}
.vl-modal-close{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  border:none;
  background:var(--navy);color:white;
  font-size:20px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:8;
  transition:background 0.2s;
  box-shadow:0 4px 16px rgba(20,38,65,0.2);
}
.vl-modal-close:hover{background:#0a1525}
.vl-modal-card form-widget{display:block;width:100%;max-width:100%}
body.modal-open{overflow:hidden}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer{
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,0.06);
  padding:clamp(24px,4vw,32px) clamp(16px,4vw,32px);
}
.footer-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.footer-logo{height:20px;opacity:0.45;transition:opacity 0.2s}
.footer-logo:hover{opacity:0.7}
.footer-copy{font-size:12px;color:rgba(255,255,255,0.28)}
.footer-tag{font-size:12px;color:rgba(255,255,255,0.32);font-style:italic}

/* ═══════════════════════════════════════
   RESPONSIVENESS
   ═══════════════════════════════════════ */

/* Desktop: reduce h1 so each line stays on one line */
@media(min-width:901px){
  h1{font-size:clamp(2rem,3.4vw,2.8rem)}
  h1 .line-2,h1 .line-3{white-space:nowrap}
}

/* Tablet + Mobile shared */
@media(max-width:900px){
  /* Hero */
  .hero{min-height:auto}
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:36px;
  }
  .hero-content{display:flex;flex-direction:column;align-items:center}
  .hero-sub{max-width:540px;margin-left:auto;margin-right:auto}

  /* Visual: globe + notifs stacked vertically */
  .hero-visual{
    flex-direction:column;
    align-items:center;
    max-width:440px;
    width:100%;
    margin:0 auto;
    gap:20px;
  }
  .globe-container{max-width:320px;width:100%;margin:0 auto}

  /* Notifications: relative flow, row-wrap */
  .notif-stack{
    position:relative;
    left:auto;bottom:auto;
    transform:none;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    width:100%;
  }
  .notif-card{
    min-width:0;
    flex:1 1 220px;
    max-width:300px;
  }

  /* Problem */
  .problem-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:28px;
  }
  .stat-label{margin-left:auto;margin-right:auto}
  .problem-copy h2{margin-left:auto;margin-right:auto}
  .problem-copy p{margin-left:auto;margin-right:auto}

  /* Contrast & Steps */
  .contrast-inner{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}

  /* Footer */
  .footer-inner{flex-direction:column;align-items:center;text-align:center}
}

/* Mobile */
@media(max-width:600px){
  /* Hero */
  .hero{padding-top:calc(64px + 32px)}
  h1{font-size:clamp(1.9rem,7.5vw,2.4rem);letter-spacing:-0.025em}
  .hero-pill{font-size:11px;padding:5px 13px;margin-bottom:20px}
  .btn-primary{width:100%;justify-content:center;font-size:15px;padding:15px 24px}
  .hero-note{text-align:center}
  .hero-visual{max-width:100%;gap:16px}
  .globe-container{max-width:240px}

  /* Notifications: column, hide 3rd to save space */
  .notif-stack{flex-direction:column;align-items:center;gap:8px}
  .notif-card{flex:none;width:100%;max-width:300px}

  /* Flags */
  .hero-flags{gap:10px;padding-top:20px;padding-bottom:20px}
  .flag-caption{width:100%;text-align:center;font-size:12px}

  /* Problem */
  .stat-number{font-size:clamp(4rem,17vw,5.5rem)}

  /* Cards & Steps */
  .contrast-card{padding:22px 18px}
  .contrast-item{gap:10px}
  .step{padding:22px 18px}

  /* Emotional */
  blockquote{font-size:clamp(1.35rem,5vw,1.7rem)}
  blockquote::before{font-size:2.2em}

  /* Bottom CTA */
  .bottom-cta h2{font-size:clamp(1.5rem,6vw,2rem)}
  .bottom-vl{padding:20px 16px}

  /* Modal */
  .vl-modal-card{padding-left:14px;padding-right:14px}
}

/* Very small phones (≤375px) */
@media(max-width:375px){
  h1{font-size:clamp(1.7rem,7vw,2rem)}
  .globe-container{max-width:200px}
  .notif-card{padding:10px 12px}
  .notif-icon{width:30px;height:30px}
  .notif-text strong{font-size:12px}
  .notif-text span{font-size:11px}
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:0.01ms!important;
  }
  [data-aos]{transition:none!important}
}

/* AOS easing override */
[data-aos]{transition-timing-function:cubic-bezier(0.22,1,0.36,1)!important}
