/* ==========================================================================
   Digital Products Bundle — style.css
   Shared design tokens + components used on every page
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root{
  /* ---- Brand color tokens (sampled from the DPB logo) ---- */
  --navy-950:#0A1626;
  --navy-900:#122544;
  --navy-800:#17304F;
  --navy-700:#26456A;
  --navy-600:#3A5C86;

  --orange-600:#DD5B0C;
  --orange-500:#F0752A;
  --orange-400:#F6934F;
  --orange-300:#FAB278;
  --orange-100:#FDEEE1;
  --orange-50:#FFF7F1;

  --white:#FFFFFF;
  --bg-alt:#F4F7FB;
  --bg-alt-2:#EEF2F8;
  --ink:#16212F;
  --muted:#5C6B7D;
  --muted-2:#8593A3;
  --line:#E1E7EF;
  --line-dark:#24405F;

  /* ---- Type ---- */
  --font-display:'Space Grotesk', system-ui, sans-serif;
  --font-body:'Manrope', system-ui, sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, monospace;

  /* ---- Shape / shadow ---- */
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-sm:0 2px 8px rgba(10,22,38,0.06);
  --shadow-md:0 12px 32px -8px rgba(10,22,38,0.18);
  --shadow-lg:0 24px 60px -12px rgba(10,22,38,0.28);

  --container:1240px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  font-size:16px;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy-900);
  margin:0;
  line-height:1.12;
  letter-spacing:-0.01em;
}
p{margin:0;}
button{font-family:inherit;cursor:pointer;}
:focus-visible{outline:3px solid var(--orange-400);outline-offset:2px;}

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

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ---- Eyebrow / signature dot-trail motif ----
   Echoes the trailing pixel squares in the DPB mark */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:var(--orange-600);
  margin-bottom:16px;
}
.eyebrow .dots{
  display:inline-flex;
  align-items:flex-end;
  gap:3px;
}
.eyebrow .dots span{
  display:block;
  border-radius:2px;
  background:var(--navy-900);
}
.eyebrow .dots span:nth-child(1){width:4px;height:4px;background:var(--navy-700);}
.eyebrow .dots span:nth-child(2){width:6px;height:6px;background:var(--orange-500);}
.eyebrow .dots span:nth-child(3){width:8px;height:8px;background:var(--orange-600);}
.eyebrow.on-dark{color:var(--orange-400);}
.eyebrow.on-dark .dots span:nth-child(1){background:var(--navy-600);}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 26px;
  border-radius:100px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:15.5px;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}
.btn-primary{
  background:linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color:var(--white);
  box-shadow:0 10px 24px -8px rgba(221,91,12,0.55);
}
.btn-primary:hover{box-shadow:0 14px 30px -6px rgba(221,91,12,0.65);transform:translateY(-2px);}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,0.35);
  color:var(--white);
}
.btn-ghost:hover{background:rgba(255,255,255,0.12);}
.btn-outline-navy{
  background:var(--white);
  border-color:var(--line);
  color:var(--navy-900);
}
.btn-outline-navy:hover{border-color:var(--navy-700);background:var(--bg-alt);}
.btn-block{width:100%;}
.btn-sm{padding:11px 18px;font-size:14px;}
.btn svg{flex:none;}

/* ==========================================================================
   Notice bar
   ========================================================================== */
.notice-bar{
  background:var(--navy-950);
  color:rgba(255,255,255,0.82);
  font-size:13.5px;
}
.notice-bar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:9px;
  padding-bottom:9px;
}
.notice-left{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
.notice-left a{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,0.82);transition:color .15s;}
.notice-left a:hover{color:var(--orange-400);}
.notice-left svg{flex:none;opacity:.85;}
.notice-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--orange-400);
  font-weight:600;
}
.notice-right{display:flex;align-items:center;gap:16px;}
.notice-right a{opacity:.8;transition:opacity .15s;}
.notice-right a:hover{opacity:1;color:var(--orange-400);}
@media (max-width:860px){
  .notice-left span.notice-hide-mobile{display:none;}
}
@media (max-width:640px){
  .notice-bar .container{padding-top:8px;padding-bottom:8px;}
  .notice-right{display:none;}
  .notice-left{gap:14px;font-size:12.5px;}
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,255,255,0.97);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:12px;
  padding-bottom:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  flex:none;
}
.brand-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--white);
  border-radius:10px;
  padding:5px 7px;
  box-shadow:0 1px 2px rgba(10,22,38,0.08);
  flex:none;
}
.brand-mark img{height:30px;width:auto;display:block;}
.footer-brand .brand-mark{box-shadow:0 6px 16px -4px rgba(0,0,0,0.35);}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text strong{
  font-family:var(--font-display);
  font-size:16.5px;
  font-weight:700;
  color:var(--navy-900);
  letter-spacing:-0.01em;
}
.brand-text span{
  font-family:var(--font-mono);
  font-size:9.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--orange-600);
  font-weight:600;
}

.main-nav{display:flex;align-items:center;gap:2px;flex:1;justify-content:center;}
.main-nav a{
  padding:10px 14px;
  border-radius:8px;
  font-size:14.5px;
  font-weight:600;
  color:var(--navy-800);
  white-space:nowrap;
  transition:background .15s, color .15s;
}
.main-nav a:hover{background:var(--bg-alt);color:var(--orange-600);}
.main-nav a.is-active{color:var(--orange-600);}

.header-actions{display:flex;align-items:center;gap:10px;flex:none;}
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:100px;
  background:var(--bg-alt);
  font-size:13.5px;
  font-weight:700;
  color:var(--navy-900);
}
.header-phone svg{color:var(--orange-600);flex:none;}

.nav-toggle{
  display:none;
  position:relative;
  z-index:160;
  flex:none;
  width:44px;height:44px;
  border-radius:10px;
  border:1.5px solid var(--line);
  background:var(--white);
  align-items:center;
  justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width:19px;height:2px;
  background:var(--navy-900);
  border-radius:2px;
  position:relative;
  transition:all .2s ease;
}
.nav-toggle span::before{position:absolute;top:-6px;}
.nav-toggle span::after{position:absolute;top:6px;}
.nav-toggle.is-active span{background:transparent;}
.nav-toggle.is-active span::before{top:0;transform:rotate(45deg);background:var(--navy-900);}
.nav-toggle.is-active span::after{top:0;transform:rotate(-45deg);background:var(--navy-900);}

/* Intermediate breakpoint: shed the phone pill + tighten nav before hamburger mode */
@media (max-width:1300px){
  .header-phone{display:none;}
  .main-nav a{padding:10px 12px;font-size:14px;}
}
@media (max-width:1120px){
  .main-nav{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:2px;
    position:fixed;
    inset:0;
    top:0;
    height:100vh;
    width:min(88vw,360px);
    left:auto;
    right:0;
    background:var(--navy-950);
    padding:100px 26px 26px;
    transform:translateX(100%);
    transition:transform .32s ease;
    overflow-y:auto;
    z-index:150;
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav a{
    color:rgba(255,255,255,0.86);
    font-size:17px;
    padding:14px 6px;
    border-bottom:1px solid rgba(255,255,255,0.09);
    border-radius:0;
  }
  .main-nav a:hover{background:transparent;color:var(--orange-400);}
  .main-nav a.nav-cta-mobile{
    display:block;
    margin-top:18px;
    text-align:center;
    color:var(--white);
    border-bottom:none;
    padding:15px 26px;
  }
  .nav-scrim{
    display:none;
    position:fixed;inset:0;
    background:rgba(10,22,38,0.5);
    z-index:140;
  }
  .nav-scrim.is-open{display:block;}
  .nav-toggle{display:flex;}
  .header-actions .btn-primary.desktop-only{display:none;}
}
.nav-cta-mobile{display:none;}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background:var(--navy-950);
  color:rgba(255,255,255,0.68);
  padding:72px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:52px;
  border-bottom:1px solid rgba(255,255,255,0.09);
}
.footer-brand .brand{margin-bottom:16px;}
.footer-brand .brand-text strong{color:var(--white);}
.footer-brand p{font-size:14.5px;line-height:1.7;color:rgba(255,255,255,0.55);max-width:320px;}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.footer-social a{
  width:38px;height:38px;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:center;
  transition:background .15s, color .15s;
  color:rgba(255,255,255,0.75);
}
.footer-social a:hover{background:var(--orange-500);color:var(--white);}
.footer-col h4{
  color:var(--white);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-family:var(--font-mono);
  font-weight:600;
  margin-bottom:18px;
}
.footer-col ul li{margin-bottom:11px;}
.footer-col a{font-size:14.5px;color:rgba(255,255,255,0.62);transition:color .15s;}
.footer-col a:hover{color:var(--orange-400);}
.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:rgba(255,255,255,0.68);
}
.footer-contact svg{flex:none;margin-top:2px;color:var(--orange-400);}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:24px 0 28px;
  font-size:13px;
  color:rgba(255,255,255,0.42);
}
.footer-bottom .disclaimer{max-width:640px;}
.footer-bottom a{color:rgba(255,255,255,0.55);}
.footer-bottom a:hover{color:var(--orange-400);}

@media (max-width:980px){
  .footer-grid{grid-template-columns:1fr 1fr;row-gap:36px;}
}
@media (max-width:640px){
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
}

/* ==========================================================================
   Floating WhatsApp action
   ========================================================================== */
.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:220;
  display:flex;
  align-items:center;
  gap:12px;
}
.wa-float-bubble{
  max-width:230px;
  background:var(--white);
  border-radius:14px;
  padding:12px 14px;
  box-shadow:var(--shadow-md);
  font-size:13px;
  color:var(--navy-900);
  line-height:1.45;
  transform-origin:bottom right;
  animation:wa-pop .3s ease;
}
.wa-float-bubble strong{display:block;color:var(--orange-600);font-size:12.5px;margin-bottom:2px;}
.wa-float-close{
  position:absolute;
  top:-8px;right:-8px;
  width:22px;height:22px;
  border-radius:50%;
  background:var(--navy-900);
  color:var(--white);
  border:2px solid var(--white);
  font-size:12px;
  line-height:1;
  display:flex;align-items:center;justify-content:center;
}
.wa-float-btn{
  position:relative;
  width:60px;height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px -6px rgba(37,211,102,0.6);
  flex:none;
}
.wa-float-btn::after{
  content:"";
  position:absolute;inset:0;
  border-radius:50%;
  border:2px solid #25D366;
  animation:wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring{
  0%{transform:scale(1);opacity:.7;}
  100%{transform:scale(1.6);opacity:0;}
}
@keyframes wa-pop{
  from{opacity:0;transform:scale(.9) translateY(6px);}
  to{opacity:1;transform:scale(1) translateY(0);}
}
@media (max-width:640px){
  .wa-float{right:16px;bottom:16px;}
  .wa-float-bubble{display:none;}
}

/* ==========================================================================
   Shared: section scaffolding, reveal-on-scroll
   ========================================================================== */
.section{padding:96px 0;}
.section-alt{background:var(--bg-alt);}
.section-head{max-width:680px;margin:0 auto 56px;text-align:center;}
.section-head p{color:var(--muted);font-size:17px;margin-top:14px;line-height:1.65;}
.section-head h2{font-size:clamp(28px,3.4vw,42px);}
.section-head.align-left{margin-left:0;text-align:left;}

[data-reveal]{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].is-visible{opacity:1;transform:translateY(0);}

.pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 13px;
  border-radius:100px;
  background:var(--orange-100);
  color:var(--orange-600);
  font-size:12.5px;
  font-weight:700;
}

@media (max-width:640px){
  .section{padding:64px 0;}
  .section-head{margin-bottom:38px;}
}

/* ==========================================================================
   Grid-item overflow safety net
   CSS Grid tracks default to a minimum size based on their content's
   min-content width, which can force a track (and the page) wider than
   the viewport when a child contains long unbreakable text. Explicitly
   zeroing min-width on grid/flex items lets them shrink to fit their
   track and wrap normally instead.
   ========================================================================== */
.hero-copy,
.hero-visual,
.split > *,
.calc-copy,
.calc-panel,
.tour-panel-copy,
.tour-panel.is-active > *,
.contact-grid > *,
.legal-toc,
.legal-body,
.footer-grid > *,
.detail-body{
  min-width:0;
}

@media (max-width:480px){
  .hero-cta-row .btn,
  .page-hero .hero-cta-row .btn{
    white-space:normal;
    text-align:center;
    width:100%;
  }
}

/* ==========================================================================
   Header nav: "Products" dropdown (site-wide — every page uses this header)
   ========================================================================== */
.nav-item{position:relative;}
.nav-item > a{display:inline-flex;align-items:center;gap:5px;}
.nav-item .chev{transition:transform .18s ease;flex:none;}
.nav-item:hover .chev{transform:rotate(180deg);}
.nav-dropdown{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:280px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:210;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.nav-dropdown a{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:11px 13px;
  border-radius:11px;
  color:var(--navy-900);
}
.nav-dropdown a:hover{background:var(--bg-alt);}
.nav-dropdown a strong{font-family:var(--font-display);font-size:14.5px;font-weight:700;}
.nav-dropdown a span{font-size:12.5px;color:var(--muted);font-weight:500;}
.nav-dropdown a.nav-dropdown-all{
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  margin-top:4px;
  padding-top:11px;
  border-top:1px solid var(--line);
  border-radius:0 0 8px 8px;
  font-size:13px;
  font-weight:700;
  color:var(--orange-600);
}
.nav-dropdown a.nav-dropdown-all:hover{background:none;color:var(--orange-500);}

@media (max-width:1120px){
  .nav-dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:none;
    background:rgba(255,255,255,0.04);
    margin:2px 0 8px;
    padding:4px 4px 4px 14px;
    border-left:2px solid rgba(255,255,255,0.14);
    border-radius:0;
  }
  .nav-dropdown a{padding:10px 8px;color:rgba(255,255,255,0.8);border-bottom:none !important;}
  .nav-dropdown a strong{color:#fff;}
  .nav-dropdown a span{color:rgba(255,255,255,0.45);}
  .nav-dropdown a.nav-dropdown-all{border-top:1px solid rgba(255,255,255,0.1);color:var(--orange-400);}
  .nav-item .chev{display:none;}
}

/* ==========================================================================
   Trust / secure banner strip (site-wide component)
   ========================================================================== */
.trust-badges{
  background:var(--white);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
.trust-badges-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:14px 34px;
}
.trust-badges-row span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:13.5px;
  font-weight:700;
  color:var(--navy-800);
  white-space:nowrap;
}
.trust-badges-row svg{color:var(--orange-600);flex:none;}
.trust-badges.on-dark{background:var(--navy-950);border-bottom:1px solid rgba(255,255,255,0.08);}
.trust-badges.on-dark span{color:rgba(255,255,255,0.78);}
.trust-badges.on-dark svg{color:var(--orange-400);}
@media (max-width:640px){
  .trust-badges-row{gap:10px 18px;}
  .trust-badges-row span{font-size:12px;}
}

/* ---- Secure payment mini-row (near Buy buttons) ---- */
.secure-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 14px;
  margin-top:16px;
}
.secure-row span{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11.5px;font-weight:700;
  color:rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.06);
  padding:6px 11px;
  border-radius:100px;
}
.secure-row svg{color:#4ADE80;flex:none;}
.secure-row.on-light span{color:var(--muted);background:var(--bg-alt);}
.secure-row.on-light svg{color:#16A34A;}
