:root{
  --bg:#1a0028;
  --bg2:#2d003a;
  --text:#E8E0FF;
  --muted:rgba(232,224,255,.82);
  --muted2:rgba(232,224,255,.72);
  --accent:#9c01fe;
  --accent2:#fd34e9;
  --btnText:#fff;

  --shadowGlow: inset 0 0 20px rgba(156, 1, 254, 0.2);

  --padX:60px;
  --padY:80px;
  --gap:24px;

  --fontHead:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  --fontBody:"Fira Code",ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;

  --rSm:10px;
  --rMd:16px;
  --rLg:24px;
  --rPill:999px;

  --border:rgba(232,224,255,.16);
  --border2:rgba(232,224,255,.12);
  --dash:rgba(232,224,255,.22);
}

*,
*::before,
*::after{
  box-sizing:border-box;
  overflow-wrap:break-word;
  word-wrap:break-word;
}

html{
  font-size:100%;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-size:1rem;
  font-family:var(--fontBody);
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  contain:strict;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(156,1,254,.22), transparent 55%),
    radial-gradient(760px 460px at 86% 22%, rgba(253,52,233,.18), transparent 58%),
    radial-gradient(860px 520px at 55% 92%, rgba(156,1,254,.12), transparent 60%),
    linear-gradient(180deg, rgba(45,0,58,.22), rgba(26,0,40,.12));
}

img{max-width:100%;height:auto;display:block}

a{color:inherit;text-decoration:none}
a:hover{ text-decoration:underline; }

p{
  margin:0 0 16px;
  color:var(--muted);
  -webkit-hyphens:auto;
  hyphens:auto;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--fontHead);
  color:var(--text);
  margin:0 0 14px;
  letter-spacing:.2px;
  hyphens:none;
}

h1{font-size:3rem;line-height:1.18}
h2{font-size:2.25rem;line-height:1.22}
h3{font-size:1.45rem;line-height:1.28}

.container{
  width:min(1200px, calc(100% - (var(--padX) * 2)));
  margin:0 auto;
}

.section-head{
  max-width:900px;
}

.section,
.section-alt{
  padding:var(--padY) 0;
}

.section{ background:transparent; }
.section-alt{
  background:rgba(45,0,58,.22);
  border-top:1px solid rgba(232,224,255,.06);
  border-bottom:1px solid rgba(232,224,255,.06);
}

.features-section,
.how-section,
.faq-section,
.testimonials-section,
.risk-section{
  content-visibility:auto;
  contain-intrinsic-size:auto 500px;
}

.skip-link{
  position:absolute;
  top:-40px;
  left:0;
  background:var(--accent);
  color:var(--btnText);
  padding:8px;
  z-index:10001;
  font-size:14px;
}
.skip-link:focus{ top:0; }

:focus-visible{
  outline:2px solid rgba(253,52,233,.9);
  outline-offset:3px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(26,0,40,.88);
  border-bottom:1px solid rgba(232,224,255,.12);
  backdrop-filter:saturate(140%) blur(10px);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.5px;
  text-decoration:none;
  white-space:nowrap;
}

.brand-mark{
  width:28px;
  height:28px;
  display:inline-grid;
  place-items:center;
  border-radius:12px;
  border:1px dashed rgba(253,52,233,.55);
  box-shadow:var(--shadowGlow);
  color:var(--text);
}

nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

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

.nav-links a{
  font-size:.95rem;
  opacity:.9;
  padding:10px 10px;
  border-radius:8px;
}

.nav-links a.nav-cta{
  border:1px solid rgba(156,1,254,.75);
  padding:10px 14px;
  border-radius:14px;
  box-shadow:var(--shadowGlow);
}

.nav-links a:hover{ opacity:1; }

/* Mobile hamburger toggle - CSS only, no JavaScript */
.mobile-toggle-input{ display:none; }
.hamburger{
  display:none;
  background:transparent;
  border:1px solid currentColor;
  color:inherit;
  padding:10px 12px;
  cursor:pointer;
  opacity:.75;
  border-radius:10px;
}
.hamburger:hover{ opacity:1; }

.hamburger-lines{
  display:inline-block;
  width:22px;
  height:14px;
  position:relative;
}
.hamburger-lines::before,
.hamburger-lines::after,
.hamburger-lines{
  background:transparent;
}
.hamburger-lines::before,
.hamburger-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:currentColor;
}
.hamburger-lines::before{ top:1px; }
.hamburger-lines::after{ bottom:1px; }
.hamburger-lines{
  border-top:2px solid currentColor;
  border-bottom:2px solid transparent;
}

.mobile-menu{
  display:none;
  background:var(--bg, #111);
  border-top:1px solid rgba(255,255,255,.1);
  width:100%;
  border-radius:14px;
}
.mobile-menu a{
  display:block;
  padding:12px 20px;
  color:var(--text, #fff);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover{ background:rgba(255,255,255,.08); }
.mobile-menu a:last-child{ border-bottom:none; }

/* Language selector (required) */
.lang-menu{ position:relative; }
.lang-select{
  appearance:none;
  -webkit-appearance:none;
  background:transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='currentColor' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 0.5rem center;
  border:1px solid currentColor;
  border-radius:4px;
  padding:0.35rem 1.8rem 0.35rem 0.6rem;
  font-size:0.85rem;
  cursor:pointer;
  color:inherit;
  opacity:0.75;
}
.lang-select:hover{ opacity:1; }

/* Language Dropdown - ALWAYS BLACK TEXT on WHITE background (dropdown only, not the trigger button) */
.lang-dropdown,.lang-list{ background:#ffffff; }
.lang-option{ color:#000000 !important; background:#ffffff; }
.lang-option:hover{ background:rgba(0,0,0,.05); color:#000000 !important; }
.lang-select option{ color:#000000; background:#ffffff; }

/* Hero */
.hero-section{
  position:relative;
  min-height:600px;
  padding:calc(var(--padY) - 10px) 0 var(--padY);
;contain:layout style}

.hero-decor{
  position:absolute;
  inset:0;
  z-index:-1;
  contain:strict;
  overflow:hidden;
  pointer-events:none;
;will-change:transform}

.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(70px);
  opacity:.55;
  contain:strict;
;will-change:transform;backface-visibility:hidden}
.orb-a{
  width:520px;height:520px;
  top:-160px;left:-160px;
  background:rgba(156,1,254,.28);
;will-change:transform;backface-visibility:hidden}
.orb-b{
  width:460px;height:460px;
  right:-180px;bottom:-180px;
  background:rgba(253,52,233,.22);
}

.grid-glow{
  position:absolute;
  inset:-40px;
  opacity:.22;
  contain:strict;
  background-image:
    linear-gradient(rgba(232,224,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,224,255,.08) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:radial-gradient(circle at 40% 35%, #000 0 55%, transparent 75%);
}

.hero-inner{
  display:flex;
  align-items:flex-start;
  gap:40px;
}

.hero-left{ flex:1; min-width:0; }

.hero-kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:14px;
}

.kicker-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:14px;
  border:1px dashed rgba(253,52,233,.55);
  background:rgba(45,0,58,.22);
  box-shadow:var(--shadowGlow);
  color:var(--text);
  font-size:.9rem;
}

.hero-lead{
  font-size:1.05rem;
  max-width:64ch;
}

.hero-quicklist{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.quick-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border-radius:var(--rMd);
  border:1px solid rgba(232,224,255,.12);
  background:rgba(45,0,58,.18);
  box-shadow:var(--shadowGlow);
}

.trust-row{
  contain:content;
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.trust-badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:var(--rSm);
  border:1px dashed rgba(156,1,254,.55);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  color:var(--text);
}

/* Icon CLS reservation */
.trust-badge i,
[class*="fa-"]{
  display:inline-block;
  width:1em;
  height:1em;
  aspect-ratio:1/1;
  vertical-align:middle;
  line-height:1;
}

/* Form shell */
.hero-form{
  width:100%;
  max-width:460px;
  flex-shrink:0;
}

.form-shell{
  border-radius:var(--rLg);
  border:1px dashed rgba(253,52,233,.5);
  background:linear-gradient(180deg, rgba(45,0,58,.34), rgba(26,0,40,.55));
  box-shadow:var(--shadowGlow);
  padding:22px;
}

.form-title{
  font-size:1.35rem;
  line-height:1.25;
  margin-bottom:6px;
}

.form-subtitle{
  margin-bottom:14px;
  color:var(--muted2);
}

/* Lead form styles (MANDATORY in styles.css) */
.lead-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-group label{
  font-size:.9rem;
  color:var(--text);
  opacity:.92;
}

.form-group input{
  height:46px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(232,224,255,.16);
  background:rgba(26,0,40,.55);
  color:var(--text);
  font-family:var(--fontBody);
  font-size:1rem;
}

.form-group input::placeholder{ color:rgba(232,224,255,.55); }

.form-group input:focus{
  outline:2px solid rgba(156,1,254,.55);
  outline-offset:2px;
}

.form-message{
  padding:10px 12px;
  border-radius:14px;
  font-size:.9rem;
  display:none;
  border:1px solid rgba(232,224,255,.16);
  background:rgba(45,0,58,.22);
}
.form-message.error{ display:block; border-color:rgba(255,80,120,.5); }
.form-message.success{ display:block; border-color:rgba(80,255,170,.45); }

.phone-input-wrapper{
  display:flex;
  align-items:center;
  border:1px solid rgba(232,224,255,.16);
  border-radius:14px;
  background:rgba(26,0,40,.55);
  box-shadow:var(--shadowGlow);
}

.phone-input-wrapper:focus-within{
  outline:2px solid rgba(253,52,233,.5);
  outline-offset:2px;
}

.phone-prefix{
  padding:12px 12px;
  color:var(--text);
  font-weight:700;
  font-size:1rem;
  white-space:nowrap;
  min-width:64px;
  text-align:center;
  border-right:1px solid rgba(232,224,255,.12);
  background:rgba(45,0,58,.28);
}

.phone-input-wrapper input{
  flex:1;
  border:none !important;
  height:46px;
  padding:12px 12px;
  font-size:1rem;
  outline:none;
  background:transparent;
  color:var(--text);
}

.form-disclaimer{
  font-size:0.85rem;
  color:inherit;
  line-height:1.4;
  margin-top:0.5rem;
}

.form-disclaimer a{
  color:var(--text);
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}
.form-disclaimer a:hover{ color:rgba(232,224,255,.95); }

.terms-read-more{
  font-weight:700;
}

.submit-btn{
  min-height:54px;
  border-radius:18px;
  border:2px solid rgba(156,1,254,.9);
  background:transparent;
  color:var(--btnText);
  font-family:var(--fontHead);
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:var(--shadowGlow);
  transition:transform .25s ease;
}
.submit-btn:hover{ transform:translateY(-2px); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:18px;
  font-family:var(--fontHead);
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  border:2px solid rgba(156,1,254,.9);
  background:transparent;
  color:var(--btnText);
  box-shadow:var(--shadowGlow);
  transition:transform .25s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-ghost{
  border:1px solid rgba(232,224,255,.18);
  opacity:.92;
}
.btn-outline{ }

.btn-pulse{
  animation:btnPulse 1.8s ease-in-out infinite;
}
@keyframes btnPulse{0%{transform:scale(1);opacity:1}50%{transform:scale(1.03);opacity:0.9}100%{transform:scale(1);opacity:1}}
  50%{ transform:translateZ(0) scale(1.03); }
}

/* Cards & grids */
.card{
  border-radius:var(--rMd);
  border:1px dashed rgba(232,224,255,.22);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  padding:22px;
  contain:content;
  transition:transform .25s ease;
}
.card:hover{ transform:translateY(-2px); }

.bento-grid{
  contain:layout;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--gap);
  margin-top:28px;
}

.bento-item{ min-height:160px; }
.bento-item.large{ grid-column:span 2; }
.bento-item.wide{ grid-column:span 2; }
.bento-item.tall{ grid-row:span 2; }

.bento-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.bento-icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(253,52,233,.45);
  background:rgba(45,0,58,.22);
  box-shadow:var(--shadowGlow);
  flex-shrink:0;
}

.mini-list{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.mini-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
}

.chip-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:14px;
  border:1px dashed rgba(156,1,254,.55);
  background:rgba(45,0,58,.18);
  box-shadow:var(--shadowGlow);
  font-size:.9rem;
}

/* Timeline vertical */
.timeline-vertical{
  contain:layout;
  position:relative;
  padding-left:40px;
  max-width:780px;
  margin:28px auto 0;
}
.timeline-vertical::before{
  content:"";
  position:absolute;
  left:15px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom, rgba(156,1,254,.9), rgba(253,52,233,.75));
}
.timeline-item{ position:relative; padding-bottom:26px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute;
  left:-40px;
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(26,0,40,.6);
  border:2px solid rgba(156,1,254,.9);
  box-shadow:var(--shadowGlow);
  font-weight:900;
}
.timeline-content{
  border-radius:var(--rMd);
  border:1px dashed rgba(232,224,255,.22);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  padding:18px 18px;
  contain:content;
}

/* FAQ two column */
.faq-two-col{
  contain:layout;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap);
  margin-top:24px;
}
.faq-column{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-card{
  border-radius:var(--rMd);
  border:1px dashed rgba(232,224,255,.22);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  padding:0;
  contain:content;
}
.faq-card summary{
  cursor:pointer;
  padding:16px 18px;
  list-style:none;
  font-weight:800;
}
.faq-card summary::-webkit-details-marker{ display:none; }
.faq-card .faq-answer{ padding:0 18px 16px; }

/* CTA */
.cta-section{
  position:relative;
  padding:var(--padY) 0;
  overflow:hidden;
}
.cta-bg{
  position:absolute;
  inset:0;
  z-index:-1;
  contain:strict;
  pointer-events:none;
  background:linear-gradient(120deg, rgba(156,1,254,.9), rgba(253,52,233,.75), rgba(156,1,254,.9));
  background-size:200% 200%;
  animation:ctaShift 10s linear infinite;
  transform:translateZ(0);
}
@keyframes ctaShift{0%{transform:translateX(0)}50%{transform:translateX(3px)}100%{transform:translateX(0)}}
  50%{ transform:translateZ(0) translateX(-2%); }
  100%{ transform:translateZ(0) translateX(0); }
}
.cta-floating-card{
  max-width:900px;
  margin:0 auto;
  border-radius:28px;
  border:1px dashed rgba(26,0,40,.35);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
  padding:46px 42px;
  text-align:center;
  contain:content;
}
.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Testimonials carousel (CSS scroll snap) */
.carousel{
  margin-top:24px;
  position:relative;
  contain:layout;
}
.carousel-track{
  display:flex;
  gap:var(--gap);
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding:6px 2px 18px;
  scrollbar-width:thin;
}
.carousel-slide{
  min-width:calc((1200px - (var(--padX) * 2) - (var(--gap) * 2)) / 3);
  max-width:420px;
  flex:0 0 auto;
  scroll-snap-align:start;
}
.testimonial-card{
  border-radius:var(--rLg);
  border:1px dashed rgba(232,224,255,.22);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  padding:22px;
  contain:content;
  transition:transform .25s ease;
}
.testimonial-card:hover{ transform:translateY(-2px); }
.testimonial-top{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}
.avatar{
  width:44px;height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(156,1,254,.7);
  background:rgba(45,0,58,.22);
  box-shadow:var(--shadowGlow);
}
.t-meta{ margin:0; font-size:.9rem; color:var(--muted2); }
.t-quote{ margin:0; }
.carousel-hint{
  position:absolute;
  right:0;
  bottom:0;
  padding:8px 0;
}
.hint-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid rgba(232,224,255,.18);
  background:rgba(26,0,40,.35);
}

/* Risk accordion */
.risk-accordion{
  contain:layout;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap);
  margin-top:24px;
}
.risk-item{
  border-radius:var(--rLg);
  border:1px dashed rgba(232,224,255,.22);
  background:rgba(26,0,40,.35);
  box-shadow:var(--shadowGlow);
  padding:0;
  contain:content;
}
.risk-item summary{
  cursor:pointer;
  padding:18px 18px;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:900;
}
.risk-item summary::-webkit-details-marker{ display:none; }
.risk-sum{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.risk-plus{ font-weight:900; }
.risk-body{ padding:0 18px 18px; }
.risk-cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
  border-radius:var(--rMd);
  border:1px solid rgba(232,224,255,.14);
  background:rgba(45,0,58,.18);
  padding:14px;
}
.risk-cta-text h3{ margin-bottom:6px; font-size:1.15rem; }
.risk-cta-text p{ margin:0; }

/* Footer */
.site-footer{
  padding:60px 0 24px;
  background:rgba(45,0,58,.22);
  border-top:1px solid rgba(232,224,255,.08);
}
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
  align-items:start;
  contain:layout;
}
.footer-title{ margin-bottom:10px; }
.footer-h{ font-size:1.1rem; margin-bottom:10px; }
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{ opacity:.9; }
.footer-links a:hover{ opacity:1; }

.footer-disclaimer-wrap{
  margin-top:26px;
  padding:26px 0;
  border-top:1px solid rgba(232,224,255,.08);
  border-bottom:1px solid rgba(232,224,255,.08);
  background:transparent;
}
.footer-bottom{
  margin-top:18px;
  text-align:center;
  color:var(--muted2);
  font-size:.95rem;
}

/* Desktop/Mobile visibility - CRITICAL: These rules must NOT be overridden! */
.desktop-only{ display:block !important; }
.mobile-only{ display:none !important; }
@media (max-width:640px){
  .desktop-only{ display:none !important; }
  .mobile-only{ display:block !important; }
}

/* Cookie Consent - fixed bottom banner with BLACK text */
.cookie-consent{ display:none; position:fixed; bottom:0; left:0; right:0; background:#ffffff; border-top:1px solid rgba(0,0,0,.1); padding:16px 24px; z-index:9999; box-shadow:0 -2px 10px rgba(0,0,0,.1); }
.cookie-content{ max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; color:#000000; }
.cookie-content p{ color:#000000; margin:0; }
.cookie-content a{ color:#0066cc !important; text-decoration:underline; font-weight:600; }
.cookie-content a:hover{ color:#004499 !important; }
.cookie-btn{ padding:10px 24px; background:var(--accent); color:#000; border:none; border-radius:4px; font-weight:700; cursor:pointer; }

/* Disclaimer Popup - Full width bottom banner with Read More */
.disclaimer-popup-overlay{ position:fixed; bottom:0; left:0; width:100%; z-index:10000; pointer-events:none; opacity:0; visibility:hidden; transition:opacity 0.3s ease, visibility 0.3s ease; }
.disclaimer-popup-overlay.active{ opacity:1; visibility:visible; }
.disclaimer-popup{ background:#ffffff; color:#333; width:100%; box-shadow:0 -2px 15px rgba(0,0,0,.1); border-top:1px solid #e5e5e5; transform:translateY(100%); transition:transform 0.3s ease; pointer-events:auto; }
.disclaimer-popup-overlay.active .disclaimer-popup{ transform:translateY(0); }
.disclaimer-popup-header{ display:flex; justify-content:flex-start; align-items:center; padding:10px 30px; border-bottom:1px solid #eee; }
.disclaimer-popup-header h4{ margin:0; font-size:13px; font-weight:600; color:#1a1a1a; flex:1; }
.disclaimer-close-btn{ background:none; border:none; font-size:18px; color:#999; cursor:pointer; padding:0; line-height:1; }
.disclaimer-close-btn:hover{ color:#333; }
.disclaimer-popup-body{ padding:12px 30px; }
.disclaimer-popup-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.disclaimer-popup-content{ flex:1; }
.disclaimer-main-text{ font-size:12px; line-height:1.5; color:#555; margin:0 0 6px 0; }
.disclaimer-main-text a,.disclaimer-popup-body a{ color:#0066cc !important; text-decoration:underline; font-weight:600; }
.disclaimer-main-text a:hover,.disclaimer-popup-body a:hover{ color:#004499 !important; }
.disclaimer-read-more{ font-size:12px; color:#0066cc; text-decoration:underline; cursor:pointer; }
.disclaimer-read-more:hover{ color:#004499; }
.disclaimer-more-text{ max-height:0; overflow:hidden; transition:max-height 0.4s ease, margin 0.3s ease, padding 0.3s ease; margin-top:0; padding-top:0; border-top:none; }
.disclaimer-more-text.expanded{ max-height:400px; margin-top:12px; padding-top:12px; border-top:1px solid #eee; overflow-y:auto; }
.popup-svg{ width:100%; height:auto; max-width:540px; display:block; margin:0 auto; }
.popup-svg-mobile{ display:none; }
.disclaimer-popup-footer{ flex-shrink:0; }
.disclaimer-understand-btn{ padding:10px 24px; background:var(--accent); color:#000; border:none; border-radius:4px; font-weight:600; cursor:pointer; font-size:13px; }
.disclaimer-understand-btn:hover{ opacity:0.9; }
@media (max-width:768px){ .disclaimer-popup-header{ padding:8px 16px; } .disclaimer-popup-body{ padding:10px 16px; } .disclaimer-popup-row{ flex-direction:column; gap:12px; } .disclaimer-popup-footer{ width:100%; } .popup-svg{ display:none; } .popup-svg-mobile{ display:block; width:100%; height:auto; } }

/* Terms Popup - centered overlay */
.terms-popup-overlay{ display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:10000; align-items:center; justify-content:center; padding:20px; }
.terms-popup-content{ background:#fff; color:#333; border-radius:8px; max-width:700px; width:100%; max-height:90vh; overflow:auto; position:relative; padding:20px; }
.terms-popup-content .close-btn{ position:absolute; top:12px; right:12px; background:none; border:none; font-size:28px; color:#333; cursor:pointer; }
.terms-img{ width:100%; height:auto; }

/* Mobile hamburger toggle - CSS only, no JavaScript (required) */
@media (max-width:768px){
  :root{ --padX:16px; --padY:40px; --gap:16px; }

  .nav-links{ display:none; }
  .hamburger{ display:flex; align-items:center; justify-content:center; }
  .mobile-menu{ display:none; }
  .mobile-toggle-input:checked ~ .mobile-menu{ display:block; }

  .section-head{ text-align:center; }

  .hero-inner{ flex-direction:column; align-items:flex-start; padding:0; gap:24px; }
  .hero-left{ text-align:center; }
  .hero-form{ width:100%; max-width:520px; }
  .trust-row{ grid-template-columns:1fr; justify-items:center; }
  .hero-kicker{ justify-content:center; }
  h1{ font-size:1.8rem; }

  .cards-grid, .features-grid, .steps-grid, .pricing-grid, .warning-grid, .testimonials-grid, .risk-accordion, .bento-grid, .checklist-grid{ grid-template-columns:1fr !important; }
  .bento-item.large, .bento-item.wide{ grid-column:span 1 !important; }
  .bento-item.tall{ grid-row:span 1 !important; }
  .faq-two-col{ grid-template-columns:1fr; }

  .footer-top{ grid-template-columns:1fr; text-align:center; }
  .footer-links{ align-items:center; }
  .site-footer{ padding:40px 16px 20px; }

  .cta-floating-card{ padding:28px 18px; border-radius:22px; }
  .cta-actions{ flex-direction:column; align-items:center; }
  .cta-actions .btn{ width:100%; max-width:320px; }
  .risk-cta-card{ flex-direction:column; text-align:center; align-items:center; padding:16px; }

  .timeline-vertical{ padding-left:22px; }
  .timeline-vertical::before{ left:8px; }
  .timeline-dot{ left:-3px; width:18px; height:18px; font-size:12px; }
  .timeline-content{ margin-left:14px; }

  .orb{ opacity:.3; filter:blur(40px); }
  .grid-glow{ display:none; }
  .site-header{ backdrop-filter:none; -webkit-backdrop-filter:none; background:rgba(26,0,40,.97); }

  body{ overflow-x:hidden; }
  section, .section, .section-alt{ padding:30px 16px; }
}

@media (max-width:1024px){
  :root{ --padX:30px; --padY:60px; }
  .hero-inner{ gap:28px; }
  .hero-form{ max-width:400px; }
  .bento-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; gap:20px; }
  .risk-accordion{ grid-template-columns:1fr; }
}

@media (max-width:480px){
  h1{ font-size:1.5rem; }
  h2{ font-size:1.3rem; }
  h3{ font-size:1.1rem; }
  .hero-kicker{ flex-direction:column; align-items:center; }
  .kicker-pill{ font-size:.85rem; padding:6px 12px; }
  .form-shell{ padding:16px; border-radius:20px; }
  .quick-item{ min-width:100%; }
  .card{ padding:16px; border-radius:18px; }
  .submit-btn{ height:52px; font-size:.95rem; }
  .btn{ padding:14px 18px; }
  .cta-actions{ justify-content:center; }
  .risk-cta-card{ flex-direction:column; text-align:center; align-items:center; }
}

@media (max-width:360px){
  h1{ font-size:1.3rem; }
  h2{ font-size:1.15rem; }
  .container{ width:calc(100% - 20px); }
  section, .section, .section-alt{ padding:24px 10px; }
  .form-shell{ padding:12px; }
  .form-group input{ height:44px; padding:10px 12px; font-size:.95rem; }
  .timeline-vertical{ padding-left:16px; }
  .timeline-vertical::before{ left:5px; }
  .timeline-dot{ left:-5px; width:16px; height:16px; }
  .timeline-content{ margin-left:10px; padding:12px; }
}

@media (max-height:500px) and (orientation:landscape){
  .hero-section{ min-height:auto; padding:20px 16px; }
  .hero-inner{ gap:16px; }
}

/* Touch targets */
@media (pointer:coarse){
  a,button,summary,select,input,label{ min-height:44px; min-width:44px; }
  input{ font-size:16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .orb,.grid-glow,.hero-decor{ display:none; }
}
/* === translation-safe: prevent text overflow with longer languages (DE, FR, etc.) === */
body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1, h2, h3, h4, p, span, a, li, label, button, .btn, .submit-btn,
.kicker, .kicker-pill, .kicker-chip, .kicker-text,
.chip, .tag, .badge, .pill, .pill-text,
.circular-label, .progress-label,
.stat-title, .stat-desc, .stat-kicker, .stat-label,
.metric-label, .metric-value,
.glow-stat-card, .feature-card, .step-card,
.faq-question, .faq-q,
.card h3, .card p,
.form-disclaimer,
.terms-read-more,
.nav-links a, .mobile-menu a,
.footer-links a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* translation-safe: kicker pills and mobile overflow */
.kicker-pill, .kicker-chip, .kicker-text {
  hyphens: auto;
  -webkit-hyphens: auto;
}
.terms-read-more {
  white-space: normal;
}
@media (max-width: 480px) {
  .kicker-pill, .kicker-chip {
    font-size: 0.8rem;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
  }
  .phone-prefix {
    min-width: auto;
    padding: 0 6px;
    font-size: 12px;
  }
}

/* translation-safe: mobile layout */
@media (max-width: 768px) {
  .step-card { max-width: 100%; width: 100%; min-width: 0; }
  .steps-arrows, .steps-grid { align-items: stretch; }
  .numbered-card, .feature-card { min-height: auto; overflow: visible; }
  .logo-item { min-width: 0; width: 100%; }
  .logos-grid { flex-direction: column; align-items: stretch; }
  .mini-trust-item { min-width: 0; flex-basis: 100%; }
  .chip { max-width: 100%; }
  .hero-metrics { flex-direction: column; }
  .metric { min-width: 0; width: 100%; }
}
@media (max-width: 480px) {
  .step-card h3 { font-size: 1.15rem; }
  .numbered-card h3, .feature-card h3 { font-size: 1.15rem; }
  .chip { font-size: 0.85rem; padding: 8px 12px; }
  .check-item { font-size: 0.9rem; padding: 12px; }
  .trust-badge { padding: 12px; }
  .trust-badge strong { font-size: 12px; }
  .trust-badge span { font-size:12px; }
}
