@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:       #ffffff;
  --bg2:      #f8f9fc;
  --bg3:      #f1f3f9;
  --card:     #ffffff;
  --border:   #e4e7ef;
  --border2:  #d0d5e8;
  --text:     #0f1629;
  --text2:    #3d4764;
  --dim:      #7b85a8;
  --primary:  #4f46e5;
  --primary2: #6366f1;
  --accent:   #06d6a0;
  --coral:    #f43f5e;
  --orange:   #f97316;
  --yellow:   #f59e0b;
  --green:    #10b981;
  --red:      #ef4444;
  --shadow:   0 1px 3px rgba(15,22,41,0.08), 0 4px 12px rgba(15,22,41,0.06);
  --shadow2:  0 4px 16px rgba(15,22,41,0.1), 0 12px 40px rgba(15,22,41,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text2); transition: color .2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: .48rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--primary2) !important; transform: translateY(-1px); text-decoration: none !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  border-radius: 10px;
  padding: .85rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.28);
}
.btn-primary:hover { background: var(--primary2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.36); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(79,70,229,.04); transform: translateY(-2px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  background: var(--bg2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}
.footer-brand p { font-size: .85rem; color: var(--dim); max-width: 220px; margin-top: .5rem; line-height: 1.6; }
.footer-links h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin-bottom: .75rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-links ul a { font-size: .875rem; color: var(--text2); transition: color .2s; }
.footer-links ul a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--dim);
}

/* ── Legal ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 6rem; }
.legal-wrap h1 { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; letter-spacing: -.02em; }
.legal-meta { font-size: .83rem; color: var(--dim); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.legal-wrap h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 2.2rem 0 .65rem; }
.legal-wrap p { font-size: .95rem; color: var(--text2); margin-bottom: 1rem; line-height: 1.75; }
.legal-wrap ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-wrap ul li { font-size: .95rem; color: var(--text2); margin-bottom: .45rem; line-height: 1.65; }
.legal-wrap a { color: var(--primary); }

@media (max-width: 640px) {
  nav { padding: .9rem 1.2rem; }
  .nav-links { gap: .75rem; }
}

/* ══════════════════════════════════════════════════
   WORDPRESS OVERRIDES
══════════════════════════════════════════════════ */
html, body, #page, #content, #main, .site, main,
body.home, body.single-software, body.archive {
  background: #fff !important;
  background-color: #fff !important;
}

/* ── Site Header (WordPress sticky nav) ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-weight: 800; font-size: 1.2rem;
  color: var(--primary); letter-spacing: -.02em;
  text-decoration: none;
}
.site-logo span { color: var(--text); }
.site-nav { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a { font-size: .9rem; font-weight: 500; color: var(--text2); text-decoration: none; transition: color .2s; }
.site-nav a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: .48rem 1.1rem; border-radius: 8px;
  font-weight: 600; font-size: .85rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--primary2) !important; text-decoration: none !important; }

/* ══════════════════════════════════════════════════
   SOFTWARE PRODUCT PAGES
   (only visible via direct URL from Google)
══════════════════════════════════════════════════ */
.breadcrumb { max-width: 1100px; margin: 0 auto; padding: 14px 24px; font-size: .8rem; color: var(--dim); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .4; }

.single-section { max-width: 1100px; margin: 0 auto; padding: 0 24px 64px; }
.single-grid { display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: start; }
.image-panel { position: sticky; top: 80px; }
.product-img-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; aspect-ratio: 1; position: relative; box-shadow: var(--shadow); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sale-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.trust-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
.trust-pill { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 8px; text-align: center; font-size: .75rem; color: var(--text2); font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-pill svg { color: var(--primary); }
.cat-tag { display: inline-block; background: rgba(79,70,229,.08); color: var(--primary); font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.product-title { font-size: 1.7rem; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 16px; letter-spacing: -.02em; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.price-now { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.price-was { font-size: 1.1rem; color: var(--dim); text-decoration: line-through; }
.price-badge { background: rgba(79,70,229,.08); color: var(--primary); border: 1px solid rgba(79,70,229,.2); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.promise-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; padding: 16px 18px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; }
.promise-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 500; color: var(--text2); }
.p-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p-icon.g { background: rgba(6,214,160,.12); color: var(--accent); }
.p-icon.b { background: rgba(245,158,11,.1); color: var(--yellow); }
.btn-buy { width: 100%; padding: 15px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 800; font-family: 'Plus Jakarta Sans',sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; transition: background .2s, box-shadow .2s; box-shadow: 0 4px 14px rgba(79,70,229,.3); }
.btn-buy:hover { background: var(--primary2); box-shadow: 0 6px 20px rgba(79,70,229,.4); }
.btn-back { width: 100%; padding: 12px; background: none; color: var(--text2); border: 1.5px solid var(--border); border-radius: 10px; font-size: .88rem; font-weight: 600; font-family: 'Plus Jakarta Sans',sans-serif; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px; transition: border-color .2s, color .2s; margin-bottom: 0; }
.btn-back:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.share-row { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.share-label { font-size: .75rem; color: var(--dim); font-weight: 600; margin-right: 4px; }
.share-btn { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); background: var(--bg2); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dim); transition: all .2s; text-decoration: none; }
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Tabs */
.content-section { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }
.tabs-bar { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.tabs-bar::-webkit-scrollbar { display: none; }
.tab-btn { background: none; border: none; padding: 11px 20px; font-size: .88rem; font-weight: 700; color: var(--dim); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; font-family: 'Plus Jakarta Sans',sans-serif; transition: color .2s, border-color .2s; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn:hover:not(.active) { color: var(--text2); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.desc-intro { font-size: .97rem; line-height: 1.8; color: var(--text2); max-width: 720px; margin-bottom: 14px; padding: 20px 24px; background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; border-left: 4px solid var(--primary); }
.section-h { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -.02em; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 40px; }
.feature-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; line-height: 1.4; }
.f-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); margin-top: 5px; flex-shrink: 0; }
.sysreq-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.sysreq-table th { background: var(--bg2); color: var(--text); padding: 11px 14px; text-align: left; font-weight: 700; font-size: .75rem; border-bottom: 2px solid var(--primary); letter-spacing: .05em; text-transform: uppercase; }
.sysreq-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text2); }
.sysreq-table tr:last-child td { border-bottom: none; }
.sysreq-table tr:hover td { background: var(--bg2); }
.sysreq-table td:first-child { font-weight: 600; color: var(--text); width: 38%; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; margin-bottom: 10px; max-width: 720px; }
.faq-q { font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: .93rem; }
.faq-a { color: var(--text2); font-size: .86rem; line-height: 1.7; }

/* Scroll top */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--primary); border: none; border-radius: 10px; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 100; opacity: 0; transform: translateY(12px); transition: all .3s; box-shadow: 0 4px 14px rgba(79,70,229,.3); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* Responsive product page */
@media (max-width: 900px) { .single-grid { grid-template-columns: 1fr; } .image-panel { position: static; } .features-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .single-section, .content-section, .breadcrumb { padding-left: 16px; padding-right: 16px; } }

/* ══════════════════════════════════════════════════
   HOMEPAGE SECTION STYLES (from licenseland)
══════════════════════════════════════════════════ */

    /* ── Hero ── */
    .hero-wrap {
      background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 40%, #e0f2fe 100%);
      padding: 5.5rem 1.5rem 5rem;
      text-align: center;
    }
    .hero-inner { max-width: 780px; margin: 0 auto; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: #fff;
      border: 1px solid var(--border2);
      border-radius: 100px;
      padding: .32rem 1rem;
      font-size: .75rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow);
    }
    .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
    .hero-wrap h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.03em;
      color: var(--text);
      margin-bottom: 1.4rem;
    }
    h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 60%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--text2);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      font-weight: 400;
    }
    .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .hero-note { margin-top: 1rem; font-size: .8rem; color: var(--dim); }

    /* ── Proof bar ── */
    .proof-bar {
      background: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .proof-item { display: flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 500; color: var(--text2); }
    .proof-check { color: var(--accent); font-weight: 700; }

    /* ── Section ── */
    .section { max-width: 1100px; margin: 0 auto; padding: 5rem 1.5rem; }
    .section-tag {
      display: inline-block;
      background: rgba(79,70,229,.08);
      color: var(--primary);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .28rem .75rem;
      border-radius: 100px;
      margin-bottom: .85rem;
    }
    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: .85rem;
    }
    .section-sub { font-size: 1rem; color: var(--text2); max-width: 500px; line-height: 1.7; }

    /* ── Steps ── */
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
    .step {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.8rem;
    }
    .step-num {
      width: 40px; height: 40px;
      background: var(--primary);
      color: #fff;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .9rem;
      margin-bottom: 1.1rem;
    }
    .step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
    .step p  { font-size: .88rem; color: var(--text2); line-height: 1.65; }

    /* ── Preview ── */
    .preview-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 3rem;
      box-shadow: var(--shadow2);
    }
    .preview-top {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .pdot { width: 10px; height: 10px; border-radius: 50%; }
    .preview-label { font-size: .78rem; color: var(--dim); margin-left: .3rem; }
    .preview-kw { color: var(--primary); font-weight: 600; }
    .tbl-scroll { overflow-x: auto; }
    table { width: 100%; border-collapse: collapse; min-width: 660px; background: #fff; }
    thead { background: var(--bg2); }
    th {
      padding: .75rem 1rem;
      text-align: left;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--dim);
      border-bottom: 1px solid var(--border);
    }
    tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: var(--bg2); }
    td { padding: .85rem 1rem; font-size: .875rem; vertical-align: middle; }
    .badge {
      display: inline-block;
      padding: .2rem .6rem;
      border-radius: 100px;
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    .badge-low    { background: rgba(16,185,129,.1); color: #059669; }
    .badge-medium { background: rgba(245,158,11,.1); color: #d97706; }
    .score { font-weight: 800; font-size: .95rem; }
    .s-green  { color: #059669; }
    .s-yellow { color: #d97706; }
    .preview-cta {
      padding: 1.5rem;
      text-align: center;
      background: linear-gradient(to top, #fff 60%, transparent);
      margin-top: -40px;
      padding-top: 50px;
    }

    /* ── Features ── */
    .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }
    .feature {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.6rem;
      transition: border-color .2s, box-shadow .2s;
    }
    .feature:hover { border-color: var(--border2); box-shadow: var(--shadow); }
    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(79,70,229,.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .feature h3 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
    .feature p  { font-size: .86rem; color: var(--text2); line-height: 1.65; }

    /* ── Testimonials ── */
    .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
    .testi {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.6rem;
      box-shadow: var(--shadow);
    }
    .testi-stars { color: var(--yellow); font-size: .95rem; margin-bottom: .8rem; }
    .testi-text { font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.1rem; }
    .testi-name { font-size: .85rem; font-weight: 700; color: var(--text); }
    .testi-role { font-size: .78rem; color: var(--dim); }

    /* ── CTA banner ── */
    .cta-wrap { padding: 0 1.5rem 5rem; max-width: 1100px; margin: 0 auto; }
    .cta-banner {
      background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
      border-radius: 24px;
      padding: 4rem 2rem;
      text-align: center;
      color: #fff;
    }
    .cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; letter-spacing: -.02em; }
    .cta-banner p  { opacity: .85; max-width: 400px; margin: 0 auto 2rem; font-size: 1rem; }
    .btn-white {
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      border-radius: 10px;
      padding: .9rem 1.8rem;
      font-size: .9rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: all .2s;
      box-shadow: 0 4px 14px rgba(0,0,0,.15);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); text-decoration: none; }
    .cta-note { margin-top: .9rem; font-size: .78rem; opacity: .7; }
  

/* ══════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES
══════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all pages */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }
* { min-width: 0; }

/* ── HEADER MOBILE ── */
.desktop-nav { display: flex; }
.mobile-nav  { display: none; align-items: center; gap: 10px; }

.hamburger {
  background: none; border: none; cursor: pointer;
  padding: 6px; display: flex; flex-direction: column;
  gap: 5px; border-radius: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 8px 0 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px; font-size: .95rem; font-weight: 500;
  color: var(--text2); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--bg2); color: var(--text); }

/* ── SECTION PADDING MOBILE ── */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-nav  { display: flex; }

  .section { padding: 3rem 1rem; }
  .hero-wrap { padding: 3rem 1rem 2.5rem; }
  .hero-wrap h1 { font-size: clamp(1.7rem, 8vw, 2.8rem); }
  .hero-sub { font-size: .95rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .features { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }

  .proof-bar { gap: 1rem; padding: 1rem; }
  .proof-item { font-size: .78rem; }

  .cta-banner { padding: 2.5rem 1.25rem; border-radius: 16px; }
  .cta-wrap { padding: 0 1rem 3rem; }

  /* Product page mobile */
  .single-section, .content-section, .breadcrumb {
    padding-left: 16px; padding-right: 16px;
  }
  .single-grid { grid-template-columns: 1fr; gap: 24px; }
  .image-panel { position: static; }
  .product-title { font-size: 1.4rem; }
  .price-now { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 8px; }
  .trust-pill { font-size: .7rem; padding: 8px 4px; }

  /* Table scroll on mobile */
  .tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tbl-scroll table { min-width: 560px; }

  /* Pricing page */
  .pricing-wrap { padding: 2.5rem 1rem 4rem; }
  .plan-curr { font-size: 3rem; }
  .plan-card { padding: 2rem 1.25rem; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; }

  /* Sysreq table scroll */
  .sysreq-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .site-logo { font-size: 1rem; }
  .nav-cta { font-size: .75rem !important; padding: .32rem .7rem !important; }
  .hero-badge { font-size: .68rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: .75rem 1.25rem; font-size: .85rem; }
  .price-row { flex-wrap: wrap; gap: 8px; }
}
