/* ============================================================
   BounceEngine - Main Stylesheet
   Based on ZeroBounce.net extracted CSS (Sheet 15-31)
   Fonts: Montserrat + Nunito Sans (identical to ZeroBounce)
   Colors: ZeroBounce's exact CSS variables from Sheet 26
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700;6..12,800&display=swap');

/* ── ZeroBounce CSS Variables (Sheet 26 / f9626cf9) ───────── */
:root {
  --backgroundColor:           #f8f9fd;
  --baseTextColor:              #6d7c91;
  --baseTextPlaceholderColor:   #abb6c1;
  --highContrastColor:          #171e25;
  --middleContrastColor:        #606e7b;
  --middleLowContrastColor:     #6d7c91;
  --lowerContrastColor:         #e6ebf1;
  --lowestContrastColor:        #fafbfc;
  --lowContrastColor:           #fff;
  --grayColor:                  #ecf0f5;
  --darkerGrayColor:            #d8d8d8;
  --darkGrayColor:              #b6bcc4;

  /* ZeroBounce brand palette */
  --purpleColor:                #330d49;
  --dimPurpleColor:             #9255b7;
  --lightPurpleColor:           #5f2781;
  --lighterPurpleColor:         #cdb7e7;
  --lighterPurpleColor2:        #efe7fc;
  --lightestPurpleColor:        #f0e7fc;
  --lightestPurpleColor2:       #f6f2fc;

  --greenColor:                 #006361;
  --lightGreen:                 #44b8b5;
  --lighterGreenColor:          #ade0d8;
  --lightestGreenColor:         #ddeeeb;

  --blueColor:                  #014b70;
  --lightBlueColor:             #1e8bc2;
  --lighterBlueColor:           #9adbfc;
  --lightestBlueColor:          #e0f0f8;

  --orangeColor:                #e65849;
  --lighterOrangeColor:         #ffcbc4;
  --lightestOrangeColor:        #fff3f1;

  --lightYellowColor:           #fbdd46;
  --lighterYellowColor:         #fdeeaa;

  --errorColor:                 #e65849;
  --successColor:               #3ecf8f;

  --borderColor:                #e6ebf1;
  --borderHoverColor:           #cdb7e7;
  --inputBorderColor:           #edf6fb;
  --disabledInput:              #e9ecef;

  --validColor:                 #006361;
  --invalidColor:               #ff978a;
  --unknownColor:               #5f2781;

  /* Typography — same as ZeroBounce */
  --font-montserrat:            'Montserrat','Montserrat Fallback',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  --font-nunito:                'Nunito Sans',sans-serif;

  /* Layout */
  --max-width:     1208px;
  --header-h:      72px;
  --transition:    0.25s ease;
  --radius:        0.5rem;
  --radius-lg:     1.875rem;
  --radius-full:   9999px;

  /* Light theme surfaces */
  --bg:            #fff;
  --bg-alt:        #fafbfc;
  --bg-card:       #fff;
  --text-primary:  #171e25;
  --text-secondary:#606e7b;
  --text-muted:    #6d7c91;
  --border:        #e6ebf1;
  --shadow-sm:     0 2px 8px rgba(51,13,73,.08);
  --shadow:        0 4px 20px rgba(51,13,73,.12);
  --shadow-lg:     0 8px 40px rgba(51,13,73,.18);
}

/* Dark mode */
[data-theme="dark"] {
  --bg:            #130d1a;
  --bg-alt:        #1a1025;
  --bg-card:       #211530;
  --text-primary:  #f0eaf8;
  --text-secondary:#c4b3d9;
  --text-muted:    #8b7aaa;
  --border:        #3a2550;
  --borderHoverColor: #9255b7;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.4);
  --shadow:        0 4px 20px rgba(0,0,0,.5);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.6);
  --lightestPurpleColor: rgba(95,39,129,.25);
  --lightestPurpleColor2: rgba(95,39,129,.15);
  --lighterPurpleColor2: rgba(95,39,129,.3);
}

/* ── Reset ───────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:var(--font-montserrat);
  background:var(--bg);
  color:var(--text-primary);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  transition:background var(--transition),color var(--transition);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,select,textarea{font-family:inherit}

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6{font-family:var(--font-montserrat);font-weight:700;line-height:1.2}
h1{font-size:clamp(2rem,5vw,3.625rem);letter-spacing:-0.03em}
h2{font-size:clamp(1.75rem,3vw,2.25rem)}
h3{font-size:1.25rem}
p{color:var(--text-secondary);line-height:1.6}

/* ── Layout ─────────────────────────────────────────────────── */
/* ZeroBounce uses max-width:1208px, padding:0 3rem */
.container{max-width:var(--max-width);margin:0 auto;padding:0 3rem}
@media(max-width:1024px){.container{margin:0 1rem;padding:0}}
@media(max-width:767px){.container{margin:0;padding:0 2rem;overflow:hidden}}

.section{padding:5rem 0}
.section-sm{padding:3rem 0}

/* ── Buttons ────────────────────────────────────────────────── */
/* ZeroBounce: border-radius 0.5rem, Montserrat 700 */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:.875rem 2rem;border-radius:var(--radius);
  font-family:var(--font-montserrat);font-size:.9375rem;font-weight:700;
  transition:all var(--transition);white-space:nowrap;cursor:pointer;
  border:none;
}
.btn-primary{background:var(--lightPurpleColor);color:#fff;box-shadow:0 4px 14px rgba(95,39,129,.35)}
.btn-primary:hover{background:var(--purpleColor);transform:translateY(-2px);box-shadow:0 8px 24px rgba(95,39,129,.45)}
.btn-green{background:var(--lightGreen);color:#fff;box-shadow:0 4px 14px rgba(68,184,181,.3)}
.btn-green:hover{background:var(--greenColor);transform:translateY(-2px)}
.btn-outline{border:2px solid var(--lightPurpleColor);color:var(--lightPurpleColor);background:transparent}
.btn-outline:hover{background:var(--lightestPurpleColor);transform:translateY(-1px)}
.btn-ghost{color:var(--text-secondary);background:transparent;padding:.875rem 1.25rem}
.btn-ghost:hover{color:var(--lightPurpleColor)}
.btn-white{background:#fff;color:var(--lightPurpleColor);font-weight:700}
.btn-white:hover{background:var(--lightestPurpleColor);transform:translateY(-2px)}
.btn-ghost-white{border:2px solid rgba(255,255,255,.5);color:#fff;padding:.875rem 2rem;border-radius:var(--radius);font-weight:700;font-family:var(--font-montserrat);font-size:.9375rem;transition:all var(--transition);cursor:pointer}
.btn-ghost-white:hover{border-color:#fff;background:rgba(255,255,255,.1)}
.btn-lg{padding:1rem 2.25rem;font-size:1rem}
.btn-sm{padding:.5rem 1.125rem;font-size:.875rem}

.btn-google{
  display:flex;align-items:center;justify-content:center;gap:12px;
  width:100%;padding:.875rem 1.25rem;border-radius:var(--radius);
  border:1px solid var(--border);background:var(--bg-card);
  color:var(--text-primary);font-size:.9375rem;font-weight:600;
  font-family:var(--font-montserrat);cursor:pointer;
  transition:all var(--transition);
}
.btn-google:hover{border-color:#4285F4;box-shadow:var(--shadow-sm);transform:translateY(-1px)}

/* ── HEADER ─────────────────────────────────────────────────── */
/* ZeroBounce .header-container: font-family Montserrat 700, max-width 1208px, padding 1rem 3rem */
#site-header{
  position:sticky;top:0;z-index:1000;
  height:var(--header-h);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:background var(--transition),box-shadow var(--transition);
  font-family:var(--font-montserrat);font-weight:700;
}
[data-theme="dark"] #site-header{background:rgba(19,13,26,.96)}
#site-header.scrolled{box-shadow:var(--shadow)}

.header-inner{
  display:flex;align-items:stretch;justify-content:space-between;
  max-width:var(--max-width);margin:0 auto;padding:1rem 3rem;gap:3%;
  height:var(--header-h);
}
@media(max-width:1200px){.header-inner{gap:3%}}
@media(max-width:1024px){.header-inner{gap:5%;padding:1rem 2rem}}

.header-logo{display:flex;align-items:center;flex-shrink:0}
.header-logo img{height:36px;width:auto}

.header-nav{display:flex;align-items:center;gap:2px;flex:1}
.header-nav a{
  display:flex;align-items:center;padding:0 .875rem;height:100%;
  font-size:.875rem;font-weight:700;color:var(--text-secondary);
  border-bottom:3px solid transparent;
  transition:color var(--transition),border-color var(--transition);
  white-space:nowrap;
}
.header-nav a:hover,.header-nav a.active{color:var(--lightPurpleColor);border-bottom-color:var(--lightPurpleColor)}

.header-actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0}

/* Theme toggle */
.theme-toggle{
  width:38px;height:38px;border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  background:var(--lightestPurpleColor);
  border:1px solid var(--lighterPurpleColor);
  color:var(--lightPurpleColor);font-size:1.1rem;
  transition:all var(--transition);
}
.theme-toggle:hover{background:var(--lighterPurpleColor2);transform:scale(1.08)}

.burger{display:none;flex-direction:column;gap:5px;width:36px;height:36px;justify-content:center;align-items:center;padding:4px}
.burger span{display:block;height:2px;width:22px;background:var(--text-primary);border-radius:2px;transition:all var(--transition)}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;position:fixed;inset:var(--header-h) 0 0 0;
  background:var(--bg);z-index:999;overflow-y:auto;padding:1.5rem 2rem;
  flex-direction:column;gap:6px;border-top:1px solid var(--border);
}
.mobile-nav.open{display:flex}
.mobile-nav a{padding:.875rem 1rem;border-radius:var(--radius);font-weight:700;font-size:.95rem;color:var(--text-secondary);transition:all var(--transition)}
.mobile-nav a:hover{background:var(--lightestPurpleColor);color:var(--lightPurpleColor)}
.mobile-nav .divider{height:1px;background:var(--border);margin:8px 0}

/* ── HERO ────────────────────────────────────────────────────── */
.hero{
  background-color: #1e0a2e;
  background-image:
    /* Diagonal coloured bands */
    linear-gradient(135deg,
      #2d0d45 0%,
      #5f2781 35%,
      #3b1160 55%,
      #1e0a2e 100%
    ),
    /* Dot-grid overlay */
    radial-gradient(circle, rgba(205,183,231,.18) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  padding:2.5rem 0 3rem;overflow:hidden;position:relative;z-index:0;
  min-height:46.5625rem;
}
@media(max-width:1024px){.hero{min-height:45.5rem}}
@media(max-width:767px){.hero{min-height:calc(-15rem + 100vh)}}

/* Top-right accent glow */
.hero::before{
  content:'';position:absolute;
  width:52rem; height:52rem;
  top:-18rem; right:-14rem;
  border-radius:50%;
  background: radial-gradient(circle at center,
    rgba(146,85,183,.38) 0%,
    rgba(95,39,129,.18) 45%,
    transparent 70%);
  z-index:1; pointer-events:none;
}
/* Bottom-left accent glow */
.hero::after{
  content:'';position:absolute;
  width:40rem; height:40rem;
  bottom:-18rem; left:-12rem;
  border-radius:50%;
  background: radial-gradient(circle at center,
    rgba(68,184,181,.22) 0%,
    rgba(51,13,73,.12) 50%,
    transparent 70%);
  z-index:1; pointer-events:none;
}
/* Diagonal stripe accent (pseudo element on inner) */
.hero-inner::before{
  content:'';position:absolute;inset:0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.018) 60px,
    rgba(255,255,255,.018) 61px
  );
  pointer-events:none; z-index:0;
}
.hero-inner{max-width:var(--max-width);margin:0 auto;padding:0 3rem;position:relative;z-index:2;isolation:isolate}
@media(max-width:767px){.hero-inner{padding:0 2rem;overflow:hidden}}

.hero-content{display:flex;flex-direction:column;align-items:center;gap:1rem;max-width:56.25rem;margin:2rem auto 0}
.hero h1{font-size:3.625rem;line-height:1.21;text-align:center;color:#fff;letter-spacing:-1.16px}
@media(max-width:1024px){.hero h1{font-size:2rem}}
.hero h1 .purple{color:#cdb7e7}
.hero h1 .white{color:#fff}
.hero-subtitle{color:#fff;text-align:center;max-width:780px;margin:.5rem auto;font-size:1.125rem;opacity:.9}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;margin-top:.5rem}

/* Security bar */
.security-bar{
  background: linear-gradient(90deg, #160824 0%, #2d0d45 50%, #160824 100%);
  border-top: 1px solid rgba(205,183,231,.12);
  display:flex;justify-content:center;align-items:center;
  padding:1.5rem 1rem;min-height:72px;flex-wrap:wrap;gap:2rem;
}
@media(max-width:1024px){.security-bar{margin-top:-1px}}
.security-badge{display:flex;align-items:center;gap:7px;color:rgba(205,183,231,.8);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em}

/* Validator — ZeroBounce .whiteContainer */
.hero-validator{
  background:#fff;padding:1.25rem 2.5rem 2rem;max-width:800px;
  border-radius:1.5rem;
  box-shadow:rgba(0,0,0,.75) 1px 1px 22px 0;
  margin:1rem auto 2rem;
}
[data-theme="dark"] .hero-validator{background:#211530;box-shadow:rgba(0,0,0,.8) 1px 1px 22px 0}
.validator-title{color:var(--lightPurpleColor);font-size:1.5rem;font-weight:700;text-align:center;margin-bottom:1rem}
.validator-row{display:flex;align-items:center;gap:1rem;justify-content:center}
@media(max-width:1024px){.validator-row{flex-direction:column}}
/* ZeroBounce .light-validator-input */
.validator-input{
  appearance:none;height:3.75rem;
  background:#f7f8fd;border:1px solid var(--border);border-radius:.4375rem;
  font-size:1.125rem;color:var(--greenColor);text-align:center;
  flex-grow:1;width:70%;outline:none;font-family:var(--font-montserrat);
  transition:border-color var(--transition);
}
[data-theme="dark"] .validator-input{background:#2a1a3e;color:#c4b3d9}
@media(max-width:1024px){.validator-input{width:100%}}
.validator-input::placeholder{color:var(--baseTextPlaceholderColor)}
.validator-input:focus{border-color:var(--lightPurpleColor)}
.validator-notice{font-size:.875rem;color:var(--middleContrastColor);text-align:center;margin-top:.625rem}
.checker-result{min-height:2.75rem;margin-top:.875rem;text-align:center}
.result-tag{display:inline-flex;align-items:center;gap:7px;padding:.5rem 1rem;border-radius:var(--radius-full);font-size:.875rem;font-weight:700;animation:fadeUp .3s ease}
.result-valid{background:var(--lightestGreenColor);color:var(--greenColor);border:1px solid var(--lighterGreenColor)}
.result-invalid{background:var(--lightestOrangeColor);color:var(--orangeColor);border:1px solid var(--lighterOrangeColor)}
.result-risky{background:#fdfbe4;color:#cf9602;border:1px solid var(--lighterYellowColor)}

.trusted-section{margin-top:2.5rem;text-align:center}
.trusted-section p{color:rgba(255,255,255,.55);font-size:.875rem;margin-bottom:1rem}
.trusted-logos{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap}
.trusted-logos span{font-size:.875rem;font-weight:700;color:rgba(255,255,255,.35);letter-spacing:.05em;text-transform:uppercase;transition:color var(--transition)}
.trusted-logos span:hover{color:rgba(255,255,255,.7)}

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-header{text-align:center;max-width:730px;margin:0 auto 2.5rem}
.section-header h2{color:var(--highContrastColor);margin-bottom:1rem}
.section-header h2.purple{color:var(--lightPurpleColor)}
.section-header p{color:var(--middleContrastColor);font-size:1.125rem}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar{background:var(--bg-alt);border-bottom:1px solid var(--border)}
.stats-bar .container{display:flex;justify-content:space-around;flex-wrap:wrap}
.stat-item{padding:2rem 1.5rem;text-align:center;flex:1;min-width:160px;border-right:1px solid var(--border)}
.stat-item:last-child{border-right:none}
.stat-item .num{font-size:2.25rem;font-weight:800;color:var(--lightPurpleColor)}
.stat-item .lbl{font-size:.875rem;color:var(--middleLowContrastColor);margin-top:4px}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem;position:relative}
.how-steps::before{content:'';position:absolute;top:44px;left:calc(16.66% + 8px);right:calc(16.66% + 8px);height:2px;background:var(--lightGreen);z-index:0;opacity:.4}
.step-card{background:var(--bg-card);border:1px solid var(--border);border-radius:1.25rem;padding:2rem 1.5rem;text-align:center;box-shadow:var(--shadow-sm);position:relative;z-index:1;transition:all var(--transition)}
.step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
/* ZeroBounce .imageBackground: border-radius 50%, box-shadow rgba(0,0,0,.25) 0 .5rem .75rem .0625rem */
.step-num{
  width:4.875rem;height:4.875rem;border-radius:50%;
  background:var(--lightPurpleColor);color:#fff;
  font-size:1.5rem;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
  box-shadow:rgba(0,0,0,.25) 0 .5rem .75rem .0625rem;
}
.step-card h3{margin-bottom:.625rem;color:var(--highContrastColor)}
.step-card p{font-size:.9375rem}

/* ── FEATURES ────────────────────────────────────────────────── */
/* ZeroBounce .emailChecker_featureContainer: background rgba(205,183,231,.15), border-radius 15px */
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;margin-top:3rem}
.feature-card{
  background:rgba(205,183,231,.15);border-radius:15px;
  padding:2rem;text-align:center;transition:all var(--transition);
  display:flex;flex-direction:column;align-items:center;min-height:300px;
}
[data-theme="dark"] .feature-card{background:rgba(95,39,129,.15)}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);background:rgba(205,183,231,.25)}
.feature-icon{
  width:60px;height:60px;border-radius:50%;
  background:#fff;box-shadow:rgba(0,0,0,.25) 0 .5rem .75rem .0625rem;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:1rem;flex-shrink:0;
}
[data-theme="dark"] .feature-icon{background:#2a1a3e}
.feature-card h3{color:var(--highContrastColor);font-size:1.25rem;margin-bottom:.625rem}
.feature-card p{font-size:1rem;line-height:1.6;color:var(--middleContrastColor)}

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:1.5rem;margin-top:3rem;align-items:start}
.price-card{background:var(--bg-card);border:2px solid var(--border);border-radius:1.25rem;padding:2rem;transition:all var(--transition);position:relative}
.price-card.popular{border-color:var(--lightPurpleColor);box-shadow:0 0 0 4px rgba(95,39,129,.1)}
.popular-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--lightPurpleColor);color:#fff;padding:5px 18px;border-radius:var(--radius-full);font-size:.78rem;font-weight:700;white-space:nowrap}
.price-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.price-card h3{margin-bottom:.5rem;font-size:1.125rem;color:var(--highContrastColor)}
.price-amount{font-size:2.5rem;font-weight:800;color:var(--text-primary);margin:.5rem 0}
.price-amount sup{font-size:1.1rem;vertical-align:top;margin-top:8px;display:inline-block}
.price-amount .per{font-size:.9rem;color:var(--text-muted);font-weight:400}
.price-desc{font-size:.875rem;color:var(--text-muted);margin-bottom:1.25rem}
.price-features{margin:1.25rem 0 1.75rem;display:flex;flex-direction:column;gap:.75rem}
.price-features li{display:flex;align-items:center;gap:10px;font-size:.9rem;color:var(--text-secondary)}
.check{color:var(--lightGreen);font-weight:800;font-size:1rem}
.cross{color:var(--darkerGrayColor)}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:3rem}
.testimonial-card{background:var(--bg-card);border:1px solid var(--border);border-radius:1.25rem;padding:1.75rem;transition:all var(--transition)}
.testimonial-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.stars{color:var(--lightYellowColor);font-size:1rem;margin-bottom:.875rem}
.testimonial-text{font-size:.9375rem;color:var(--text-secondary);margin-bottom:1.125rem;font-style:italic;line-height:1.6}
.testimonial-author{display:flex;align-items:center;gap:.75rem}
.avatar{width:44px;height:44px;border-radius:50%;background:var(--lightPurpleColor);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:.95rem;flex-shrink:0}
.author-info .name{font-weight:700;font-size:.9rem;color:var(--highContrastColor)}
.author-info .role{font-size:.82rem;color:var(--text-muted)}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner{background:var(--lightestPurpleColor2);border-radius:var(--radius-lg);padding:3.75rem 5.375rem;position:relative;overflow:hidden}
[data-theme="dark"] .cta-banner{background:rgba(95,39,129,.2);border:1px solid var(--lighterPurpleColor)}
.cta-banner h2{color:var(--lightPurpleColor);margin-bottom:.875rem}
.cta-banner p{color:var(--middleContrastColor);font-size:1.0625rem;margin-bottom:1.75rem}
.cta-btns{display:flex;gap:1rem;flex-wrap:wrap}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
/* Exactly matching ZeroBounce Sheet 23 accordion styles */
.accordion-wrapper{padding:3rem 0}
.accordion-wrapper h2{margin:0 0 2rem;text-align:center;color:var(--highContrastColor)}
.accordion-container{margin:0 auto;max-width:730px}
@media(max-width:1024px){.accordion-container{max-width:100%}}
.accordion-item{margin-bottom:4px}
.accordion-btn{
  width:100%;display:flex;align-items:center;
  appearance:none;background:rgba(240,231,252,.8);
  border:none;border-radius:4px;
  color:var(--lightPurpleColor);
  font-family:var(--font-montserrat);font-size:1.125rem;font-weight:700;
  min-height:74px;padding:10px 56px 10px 26px;
  position:relative;text-align:left;cursor:pointer;
  transition:background var(--transition);
}
[data-theme="dark"] .accordion-btn{background:rgba(95,39,129,.25)}
.accordion-btn:hover{background:rgba(240,231,252,1)}
[data-theme="dark"] .accordion-btn:hover{background:rgba(95,39,129,.4)}
@media(max-width:1024px){.accordion-btn{font-size:1rem;gap:1em;line-height:1.5;padding:1.4375rem 3.5rem 1.375rem 1.4375rem}}
.accordion-icon{height:21px;margin-top:-11px;position:absolute;right:30px;top:50%;width:21px}
@media(max-width:1024px){.accordion-icon{right:14px}}
.accordion-icon::before{background:var(--lightPurpleColor);content:'';height:3px;left:0;position:absolute;top:9px;width:100%}
.accordion-icon::after{background:var(--lightPurpleColor);content:'';height:100%;left:9px;opacity:1;position:absolute;top:0;transition:opacity .3s;width:3px}
.accordion-icon.open::after{opacity:0}
.accordion-body{background:rgba(240,231,252,.8);height:0;opacity:0;overflow:hidden;transition:.4s ease-in-out}
[data-theme="dark"] .accordion-body{background:rgba(95,39,129,.15)}
.accordion-body.open{height:auto;opacity:1}
.accordion-content{padding:1.6875rem 2.625rem;color:var(--text-secondary);font-size:.9375rem;line-height:1.6}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer{background:var(--bg-alt);border-top:1px solid var(--border);padding:4rem 0 0;font-family:var(--font-montserrat)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand p{color:var(--text-muted);font-size:.875rem;margin:1rem 0 1.25rem;max-width:260px;line-height:1.6}
.footer-social{display:flex;gap:.5rem}
.social-btn{width:36px;height:36px;border-radius:var(--radius);background:var(--bg-card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:.9rem;font-weight:700;transition:all var(--transition)}
.social-btn:hover{color:var(--lightPurpleColor);border-color:var(--lightPurpleColor)}
.footer-col h4{font-size:.8rem;font-weight:700;margin-bottom:1rem;text-transform:uppercase;letter-spacing:.06em;color:var(--text-muted)}
.footer-col ul{display:flex;flex-direction:column;gap:.625rem}
.footer-col ul a{font-size:.9rem;color:var(--text-secondary);transition:color var(--transition)}
.footer-col ul a:hover{color:var(--lightPurpleColor)}
.footer-bottom{border-top:1px solid var(--border);padding:1.25rem 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem}
.footer-bottom p{font-size:.85rem;color:var(--text-muted)}
.footer-bottom-links{display:flex;gap:1.25rem}
.footer-bottom-links a{font-size:.85rem;color:var(--text-muted);transition:color var(--transition)}
.footer-bottom-links a:hover{color:var(--lightPurpleColor)}

/* ── AUTH PAGES ──────────────────────────────────────────────── */
.auth-page{min-height:calc(100vh - var(--header-h));display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem;background:var(--lightestPurpleColor2);position:relative;overflow:hidden}
.auth-page::before{content:'';position:absolute;width:32rem;height:32rem;border-radius:50%;background:radial-gradient(circle,rgba(95,39,129,.1) 0%,transparent 70%);top:-10rem;right:-10rem;pointer-events:none}
.auth-card{background:var(--bg-card);border:1px solid var(--border);border-radius:1.25rem;padding:2.75rem 2.5rem;width:100%;max-width:460px;box-shadow:var(--shadow-lg);position:relative;z-index:1}
.auth-card .logo-wrap{text-align:center;margin-bottom:1.75rem}
.auth-card .logo-wrap img{height:40px;margin:0 auto}
.auth-card h1{font-size:1.75rem;text-align:center;margin-bottom:.375rem}
.auth-card .subtitle{text-align:center;font-size:.9375rem;color:var(--text-muted);margin-bottom:1.75rem}
.divider-or{display:flex;align-items:center;gap:.875rem;margin:1.375rem 0;color:var(--text-muted);font-size:.875rem;font-weight:600}
.divider-or::before,.divider-or::after{content:'';flex:1;height:1px;background:var(--border)}

/* Form elements — ZeroBounce affiliateLeadForm style */
.form-group{margin-bottom:1.125rem}
.form-group label{display:block;font-size:.875rem;font-weight:600;margin-bottom:.375rem;color:var(--text-secondary)}
.form-group input{
  width:100%;padding:.75rem 1rem;border-radius:var(--radius);
  background:var(--bg);border:1px solid var(--border);
  color:var(--text-primary);font-size:.9375rem;outline:none;
  font-family:var(--font-montserrat);
  transition:border-color var(--transition),box-shadow var(--transition);
}
[data-theme="dark"] .form-group input{background:#1a1025}
.form-group input:focus{border-color:var(--lightPurpleColor);box-shadow:0 0 0 3px rgba(95,39,129,.12)}
.form-group input.error{border-color:var(--errorColor)}
.form-error{font-size:.8rem;color:var(--errorColor);margin-top:4px;display:none}
.form-error.show{display:block}
.input-icon-wrap{position:relative}
.input-icon-wrap input{padding-right:44px}
.eye-toggle{position:absolute;right:14px;top:50%;transform:translateY(-50%);color:var(--text-muted);font-size:.95rem;cursor:pointer;transition:color var(--transition)}
.eye-toggle:hover{color:var(--lightPurpleColor)}
.form-check{display:flex;align-items:flex-start;gap:.75rem}
.form-check input[type="checkbox"]{width:17px;height:17px;accent-color:var(--lightPurpleColor);cursor:pointer;margin-top:2px;flex-shrink:0}
.form-check label{font-size:.875rem;color:var(--text-secondary);cursor:pointer;line-height:1.5}
.form-check label a{color:var(--lightPurpleColor)}
.btn-submit{
  width:100%;padding:.9375rem;font-size:1rem;margin-top:.25rem;
  border-radius:var(--radius);background:var(--lightPurpleColor);color:#fff;
  font-weight:700;font-family:var(--font-montserrat);cursor:pointer;
  border:none;transition:all var(--transition);
}
.btn-submit:hover{background:var(--purpleColor);transform:translateY(-2px)}
.auth-footer{text-align:center;margin-top:1.25rem;font-size:.9rem;color:var(--text-muted)}
.auth-footer a{color:var(--lightPurpleColor);font-weight:700}
.alert{padding:.75rem 1rem;border-radius:var(--radius);font-size:.9rem;margin-bottom:1.125rem;display:none;font-weight:500}
.alert.show{display:block}
.alert-error{background:var(--lightestOrangeColor);color:var(--errorColor);border:1px solid var(--lighterOrangeColor)}
.alert-success{background:var(--lightestGreenColor);color:var(--greenColor);border:1px solid var(--lighterGreenColor)}
.password-strength{margin-top:6px}
.strength-bar{display:flex;gap:4px;margin-bottom:4px}
.strength-bar span{flex:1;height:3px;border-radius:2px;background:var(--border);transition:background var(--transition)}
.strength-bar.s1 span:nth-child(1){background:var(--errorColor)}
.strength-bar.s2 span:nth-child(-n+2){background:var(--lightYellowColor)}
.strength-bar.s3 span:nth-child(-n+3){background:#ffc530}
.strength-bar.s4 span{background:var(--successColor)}
.strength-label{font-size:.78rem;color:var(--text-muted)}

/* ── Hero grid — two column ──────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 2rem 0 1rem;
}
@media(max-width:1024px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Hero badge pill */
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #e0cffa; padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.25rem; backdrop-filter: blur(8px);
}
.hero-text { max-width: 540px; }
@media(max-width:1024px) { .hero-text { max-width: 100%; } }

/* Social proof row */
.hero-proof { display: flex; align-items: center; gap: .875rem; margin-top: 1.75rem; }
.proof-avatars { display: flex; }
.pa {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  margin-right: -8px;
}
.pa1 { background: #9255b7; }
.pa2 { background: #44b8b5; }
.pa3 { background: #5f2781; }
.pa4 { background: rgba(255,255,255,.2); font-size: .65rem; }
.proof-text { color: rgba(255,255,255,.75); font-size: .875rem; padding-left: 16px; }
.proof-text strong { color: #fff; }

/* ── Hero card (right column) ────────────────────────────── */
.hero-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 4px 12px rgba(0,0,0,.15);
  overflow: hidden;
}
[data-theme="dark"] .hero-card { background: #1e1230; box-shadow: 0 24px 64px rgba(0,0,0,.6); }

.hcard-header {
  display: flex; align-items: center; gap: 6px;
  background: #f0e7fc; padding: .75rem 1.25rem;
  border-bottom: 1px solid #e6e0f5;
}
[data-theme="dark"] .hcard-header { background: #2a1a3e; border-bottom-color: #3a2550; }
.hcard-dot { width: 11px; height: 11px; border-radius: 50%; }
.hcard-dot.red    { background: #ff5f57; }
.hcard-dot.yellow { background: #ffbd2e; }
.hcard-dot.green  { background: #28c840; }
.hcard-title {
  margin-left: 6px; font-size: .8rem; font-weight: 700;
  color: var(--lightPurpleColor);
  display: flex; align-items: center; gap: 5px;
}

.hcard-body { padding: 1.5rem; }
.hcard-label { font-size: .875rem; font-weight: 600; color: var(--text-muted); margin-bottom: .75rem; }

.hcard-input-wrap {
  display: flex; align-items: center; gap: .625rem;
  position: relative;
}
.input-prefix-icon {
  position: absolute; left: .875rem; top: 50%; transform: translateY(-50%);
  color: var(--lighterPurpleColor); pointer-events: none;
}
.hcard-input-wrap .validator-input {
  padding-left: 2.75rem; text-align: left;
  height: 3rem; font-size: .9375rem;
}
.hcard-btn { height: 3rem; padding: 0 1.25rem; flex-shrink: 0; font-size: .875rem; }

/* Preview result rows */
.hcard-preview {
  background: var(--backgroundColor, #f8f9fd);
  border-radius: var(--radius); padding: .875rem 1rem;
  margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem;
}
[data-theme="dark"] .hcard-preview { background: #2a1a3e; }
.preview-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; }
.preview-label { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); font-weight: 500; }
.preview-val { font-weight: 700; font-size: .82rem; padding: 2px 10px; border-radius: var(--radius-full); }
.preview-val.valid   { background: var(--lightestGreenColor); color: var(--greenColor); }
.preview-val.invalid { background: var(--lightestGreenColor); color: var(--greenColor); }
.icon-valid   { color: var(--lightGreen); flex-shrink: 0; }
.icon-invalid { color: var(--lightGreen); flex-shrink: 0; }

.hcard-notice {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-muted);
  margin-top: .875rem;
}

/* ── CTA inner layout ────────────────────────────────────── */
.cta-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.cta-icon-wrap { flex-shrink: 0; padding-top: .25rem; }
@media(max-width:767px) { .cta-inner { flex-direction: column; } .cta-icon-wrap { display: none; } }

/* ── Lucide icon alignment helpers ──────────────────────── */
.btn i, .btn svg      { flex-shrink: 0; }
.header-nav a         { display: flex; align-items: center; gap: 6px; }
.mobile-nav a         { display: flex; align-items: center; gap: 10px; }
.security-badge i,
.security-badge svg   { flex-shrink: 0; opacity: .85; }
.footer-social .social-btn { display: flex; align-items: center; justify-content: center; }
.theme-toggle         { display: flex; align-items: center; justify-content: center; }

/* Stars row with Lucide */
.stars { display: flex; align-items: center; gap: 3px; margin-bottom: .875rem; }

/* ── Header: remove container wrapper (header-inner already has max-width) ── */
#site-header > .container { max-width: unset; padding: 0; margin: 0; }


@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp .5s ease both}
.fade-up-delay-1{animation-delay:.1s}
.fade-up-delay-2{animation-delay:.2s}
.fade-up-delay-3{animation-delay:.3s}
[data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
[data-reveal].revealed{opacity:1;transform:translateY(0)}

/* ── Utilities ───────────────────────────────────────────────── */
.text-center{text-align:center}
.text-purple{color:var(--lightPurpleColor)}
.text-green{color:var(--lightGreen)}
.fw-700{font-weight:700}
.fw-800{font-weight:800}
.mt-4{margin-top:1.5rem}
.mt-8{margin-top:3rem}
.mb-8{margin-bottom:3rem}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-banner{padding:2.5rem 2rem}
}
@media(max-width:767px){
  .header-nav{display:none}
  .header-actions .btn-ghost{display:none}
  .burger{display:flex}
  .hero{padding:2rem 0 2.5rem}
  .hero-cta{flex-direction:column;align-items:center}
  .hero-cta .btn{width:100%;justify-content:center}
  .hero-validator{padding:1.25rem 1.25rem 1.5rem}
  .how-steps{grid-template-columns:1fr}
  .how-steps::before{display:none}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin:2rem auto 0}
  .testimonials-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .auth-card{padding:2rem 1.5rem}
  .stats-bar .container{flex-direction:column}
  .stat-item{border-right:none;border-bottom:1px solid var(--border)}
  .stat-item:last-child{border-bottom:none}
}
@media(max-width:480px){
  .header-inner{padding:0 1rem}
  .trusted-logos{gap:1rem}
  .cta-banner{padding:2rem 1.5rem}
  .accordion-content{padding:1rem 1.25rem}
}