 * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal-dark);
      background: var(--teal-soft);
      border: 1px solid #d0ece3;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: .78rem;
      font-weight: 700;
    }

    .section-heading { max-width: 720px; }
    .section-heading.center { text-align: center; margin-inline: auto; }
    .section-heading h2 {
      margin-top: 14px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .section-heading p { margin-top: 14px; color: var(--muted); font-size: 1.04rem; }

    .btn {
      min-height: 50px;
      padding: 0 22px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 28px rgba(38, 146, 69, .24); }
    .btn-primary:hover { background: var(--teal-dark); }
    .btn-light { background: var(--white); border-color: var(--line); color: var(--navy); }
    .btn-light:hover { border-color: #C9D7CC; background: #FBFDFB; }
    .btn-dark { background: var(--navy); color: var(--white); }
    .btn-block { width: 100%; }

    /* NAV */
    .navbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(230,235,239,.9);
    }
    .nav-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand { display: flex; align-items: center; font-weight: 800; color: var(--navy); }
    .brand-logo { display: block; width: 158px; height: 58px; object-fit: contain; object-position: left center; }
    .brand-mark {
      width: 39px; height: 39px; border-radius: 12px;
      display: grid; place-items: center;
      color: white; background: var(--teal);
    }
    .brand-name { font-size: 1.24rem; letter-spacing: -.02em; }
    .brand-name span { color: var(--teal); }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { color: #405164; font-size: .92rem; font-weight: 600; }
    .nav-links a:hover { color: var(--teal); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-login { font-size: .9rem; font-weight: 700; color: var(--navy); padding: 10px 12px; }
    .nav-signup { min-height: 42px; padding-inline: 17px; font-size: .88rem; }
    .menu-toggle { display: none; border: 0; background: none; font-size: 1.3rem; color: var(--navy); }

    /* HERO */
    .hero {
      padding: 142px 0 86px;
      background:
        radial-gradient(circle at 85% 15%, rgba(38,146,69,.12), transparent 28%),
        linear-gradient(180deg, #F4F9F5 0%, #ffffff 100%);
    }
    .hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 66px; align-items: center; }
    .hero-copy h1 {
      margin-top: 18px;
      color: var(--navy);
      font-size: clamp(2.7rem, 5.6vw, 4.7rem);
      line-height: .98;
      letter-spacing: -.055em;
      max-width: 720px;
    }
    .hero-copy h1 span { color: var(--teal); }
    .hero-copy > p { margin-top: 22px; color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.18rem); max-width: 620px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
    .hero-note { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; color: #667689; font-size: .83rem; }
    .hero-note span { display: inline-flex; gap: 7px; align-items: center; }
    .hero-note i { color: var(--teal); }

    .dashboard-shell {
      background: var(--navy);
      border-radius: 28px;
      box-shadow: 0 30px 80px rgba(36,43,52,.18);
      padding: 14px;
      position: relative;
    }
    .dashboard-shell::before {
      content: '';
      position: absolute;
      width: 120px; height: 120px; border-radius: 50%;
      background: rgba(38,146,69,.15);
      right: -35px; top: -35px;
      z-index: -1;
    }
    .dashboard {
      border-radius: 19px;
      overflow: hidden;
      background: #F7F9F7;
      border: 1px solid rgba(255,255,255,.12);
    }
    .dash-top {
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 18px;
      border-bottom: 1px solid var(--line);
    }
    .mini-brand { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: .8rem; font-weight: 800; }
    .mini-brand b { color: var(--teal); }
    .dash-user { display: flex; gap: 8px; align-items: center; color: #667689; font-size: .72rem; }
    .avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); }
    .dash-body { padding: 20px; }
    .dash-welcome { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
    .dash-welcome h3 { color: var(--navy); font-size: 1rem; }
    .dash-welcome p { color: var(--muted); font-size: .72rem; }
    .status-pill { white-space: nowrap; background: #e9f8ef; color: #26724a; font-size: .65rem; border-radius: 999px; padding: 6px 9px; font-weight: 700; }
    .metric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
    .metric { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 13px; }
    .metric small { display: block; color: #7e8b99; font-size: .62rem; margin-bottom: 6px; }
    .metric strong { color: var(--navy); font-size: 1.02rem; }
    .metric .trend { display: inline-flex; gap: 4px; align-items: center; margin-top: 5px; font-size: .58rem; color: var(--teal); }
    .dash-lower { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; margin-top: 10px; }
    .panel { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 13px; }
    .panel-title { color: var(--navy); font-size: .7rem; font-weight: 800; margin-bottom: 12px; display: flex; justify-content: space-between; }
    .bar-chart { height: 100px; display: flex; align-items: end; gap: 8px; }
    .bar-chart span { flex: 1; border-radius: 5px 5px 2px 2px; background: #d9eee8; min-height: 15px; }
    .bar-chart span:nth-child(2), .bar-chart span:nth-child(5) { background: var(--teal); }
    .stock-list { list-style: none; display: grid; gap: 10px; }
    .stock-list li { font-size: .62rem; color: #5f7082; display: flex; justify-content: space-between; gap: 8px; }
    .stock-list b { color: var(--danger); }
    .human-card {
      position: absolute;
      left: -36px;
      bottom: 36px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 15px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 225px;
    }
    .human-card .icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #fff4df; color: #a56b00; }
    .human-card strong { display: block; color: var(--navy); font-size: .72rem; }
    .human-card span { display: block; color: var(--muted); font-size: .62rem; line-height: 1.4; }

    /* PROBLEM */
    .reality { padding: 90px 0; }
    .reality-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
    .reality-copy h2 { margin-top: 14px; color: var(--navy); font-size: clamp(2rem,4vw,3.15rem); line-height: 1.08; letter-spacing: -.04em; }
    .reality-copy p { color: var(--muted); margin-top: 18px; font-size: 1.04rem; }
    .quote-line { margin-top: 28px; padding-left: 18px; border-left: 3px solid var(--gold); color: #394b5d; font-weight: 600; }
    .problem-board { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
    .problem-board h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 16px; }
    .problem-list { display: grid; gap: 10px; }
    .problem-row { background: white; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; display: flex; align-items: center; gap: 12px; color: #435568; font-size: .91rem; }
    .problem-row i { color: var(--gold); width: 22px; text-align: center; }

    /* BENEFITS */
    .benefits { padding: 90px 0; background: #F4F9F5; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
    .benefit-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 25px; }
    .benefit-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); margin-bottom: 20px; }
    .benefit-card h3 { color: var(--navy); font-size: 1.04rem; margin-bottom: 8px; }
    .benefit-card p { color: var(--muted); font-size: .9rem; }

    /* FEATURES */
    .features { padding: 100px 0; }
    .feature-stack { margin-top: 48px; display: grid; gap: 22px; }
    .feature-row { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
    .feature-row:nth-child(even) .feature-copy { order: 2; }
    .feature-row:nth-child(even) .feature-visual { order: 1; }
    .feature-copy { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
    .feature-copy .number { color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .feature-copy h3 { margin-top: 10px; color: var(--navy); font-size: 1.55rem; letter-spacing: -.025em; }
    .feature-copy p { margin-top: 11px; color: var(--muted); }
    .feature-points { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
    .feature-points li { display: flex; gap: 10px; color: #425569; font-size: .9rem; }
    .feature-points i { color: var(--teal); margin-top: 4px; }
    .feature-visual { min-height: 330px; padding: 38px; background: var(--soft); display: grid; place-items: center; }
    .visual-card { width: min(100%, 390px); background: white; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(11,31,53,.08); padding: 20px; }
    .visual-title { font-size: .77rem; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; margin-bottom: 14px; }
    .visual-list { display: grid; gap: 9px; }
    .visual-list div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eef1f3; font-size: .72rem; color: #5c6c7e; }
    .visual-list div:last-child { border-bottom: 0; }
    .visual-list strong { color: var(--navy); }
    .low { color: var(--danger)!important; }

    /* HOW */
    .how { padding: 90px 0; background: var(--navy); color: white; }
    .how .section-heading h2 { color: white; }
    .how .section-heading p { color: rgba(255,255,255,.68); }
    .how .eyebrow { background: rgba(255,255,255,.08); color: #BFE8C9; border-color: rgba(255,255,255,.1); }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 45px; }
    .step { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 26px; background: rgba(255,255,255,.045); }
    .step-num { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: #BFE8C9; font-weight: 800; margin-bottom: 21px; }
    .step h3 { font-size: 1.05rem; margin-bottom: 8px; }
    .step p { color: rgba(255,255,255,.65); font-size: .9rem; }

    /* BUSINESS TYPES */
    .who { padding: 90px 0; }
    .business-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .business-type { border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 700; color: #405164; background: white; }
    .business-type i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); }

    /* PRICING */
    .pricing { padding: 100px 0; background: var(--soft); }
    .pricing-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
    .price-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; position: relative; }
    .price-card.featured { border: 2px solid var(--teal); box-shadow: 0 20px 55px rgba(38,146,69,.12); }
    .popular { position: absolute; right: 20px; top: 20px; border-radius: 999px; background: var(--teal-soft); color: var(--teal-dark); padding: 6px 9px; font-size: .68rem; font-weight: 800; }
    .plan-tag { font-size: .73rem; font-weight: 800; color: #7a8794; text-transform: uppercase; letter-spacing: .08em; }
    .price-card h3 { margin-top: 10px; color: var(--navy); font-size: 1.42rem; }
    .plan-sub { color: var(--muted); font-size: .87rem; margin-top: 3px; }
    .price { margin: 25px 0 8px; color: var(--navy); font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
    .price small { font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .price-note { min-height: 24px; color: var(--teal-dark); font-size: .72rem; font-weight: 700; }
    .plan-list { list-style: none; display: grid; gap: 11px; margin: 25px 0 28px; flex: 1; }
    .plan-list li { display: flex; align-items: flex-start; gap: 9px; color: #45576a; font-size: .86rem; }
    .plan-list i { color: var(--teal); margin-top: 4px; }
    .plan-list .disabled { color: #a3abb4; }
    .plan-list .disabled i { color: #b9c0c7; }

    /* CTA */
    .cta { padding: 90px 0; }
    .cta-box { border-radius: 28px; padding: 54px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
    .cta-copy { max-width: 650px; }
    .cta-copy h2 { font-size: clamp(2rem,4vw,3rem); line-height: 1.05; letter-spacing: -.04em; }
    .cta-copy p { color: rgba(255,255,255,.7); margin-top: 14px; }
    .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .cta .btn-light { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: white; }

    /* FOOTER */
    footer { background: #071827; color: white; padding: 58px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 42px; }
    .footer-desc { max-width: 320px; color: rgba(255,255,255,.58); font-size: .88rem; margin-top: 15px; }
    .footer-title { font-size: .86rem; margin-bottom: 14px; }
    .footer-links { list-style: none; display: grid; gap: 9px; }
    .footer-links a { color: rgba(255,255,255,.58); font-size: .83rem; }
    .footer-links a:hover { color: white; }
    .footer-bottom { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; color: rgba(255,255,255,.5); font-size: .77rem; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
    .footer-bottom a { color: #BFE8C9; }

    /* CONTACT */
    .floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 1200; }
    .contact-trigger { width: 54px; height: 54px; border-radius: 50%; border: 0; display: grid; place-items: center; background: var(--teal); color: white; box-shadow: 0 10px 26px rgba(38,146,69,.28); font-size: 1.1rem; }
    .contact-modal { position: absolute; right: 0; bottom: 66px; width: 290px; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
    .contact-modal.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .contact-header { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 800; font-size: .88rem; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
    .contact-header i { color: var(--teal); }
    .contact-list { display: grid; gap: 10px; margin-top: 12px; }
    .contact-item { border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: flex; align-items: center; gap: 10px; }
    .contact-avatar { width: 37px; height: 37px; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; flex: 0 0 auto; }
    .contact-info { flex: 1; min-width: 0; }
    .contact-name { color: var(--navy); font-weight: 800; font-size: .8rem; }
    .contact-phone { color: var(--muted); font-size: .69rem; }
    .contact-icons { display: flex; gap: 6px; }
    .contact-icons a { width: 29px; height: 29px; border-radius: 8px; display: grid; place-items: center; color: var(--teal); background: var(--teal-soft); font-size: .72rem; }

    @media (max-width: 1000px) {
      .hero-grid, .reality-grid { grid-template-columns: 1fr; }
      .hero-copy { text-align: center; }
      .hero-copy > p { margin-inline: auto; }
      .hero-actions, .hero-note { justify-content: center; }
      .dashboard-shell { max-width: 700px; margin: 0 auto; }
      .human-card { left: 16px; }
      .benefit-grid { grid-template-columns: repeat(2,1fr); }
      .business-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-grid > div:last-child { grid-column: 2 / 3; }
    }

    @media (max-width: 820px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 74px; left: 20px; right: 20px;
        padding: 16px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }
      .nav-links.active { display: flex; }
      .nav-links a { display: block; padding: 11px 8px; }
      .menu-toggle { display: block; }
      .nav-login { display: none; }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row:nth-child(even) .feature-copy, .feature-row:nth-child(even) .feature-visual { order: initial; }
      .steps, .pricing-grid { grid-template-columns: 1fr; }
      .price-card { max-width: 560px; width: 100%; margin-inline: auto; }
      .cta-box { padding: 42px 30px; align-items: flex-start; flex-direction: column; }
      .footer-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid > div:last-child { grid-column: auto; }
    }

    @media (max-width: 580px) {
      .container { width: min(100% - 28px, var(--container)); }
      .hero { padding: 118px 0 64px; }
      .hero-copy h1 { font-size: clamp(2.45rem, 13vw, 3.4rem); }
      .hero-actions .btn { width: 100%; }
      .hero-note { gap: 9px 14px; }
      .dashboard-shell { padding: 8px; border-radius: 22px; }
      .dash-body { padding: 13px; }
      .dash-lower { grid-template-columns: 1fr; }
      .human-card { position: static; margin-top: 12px; max-width: none; }
      .reality, .benefits, .features, .who, .pricing, .cta { padding: 70px 0; }
      .benefit-grid, .business-grid { grid-template-columns: 1fr; }
      .feature-copy, .feature-visual { padding: 27px 22px; }
      .feature-visual { min-height: 260px; }
      .cta-box { padding: 32px 22px; border-radius: 22px; }
      .cta-actions .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
      .nav-signup span { display: none; }
      .nav-signup { width: 42px; padding: 0; }
      .contact-modal { width: min(290px, calc(100vw - 28px)); }
      .floating-contact { right: 14px; bottom: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto!important; transition: none!important; }
    }
    
    
    /* ============================================================
   BITRISE BIZ — TERMS & CONDITIONS
   Scoped styles only — will not interfere with header/footer
   ============================================================ */

.terms-page {
    --terms-green: #15803d;
    --terms-green-dark: #166534;
    --terms-green-light: #edf8f0;

    --terms-navy: #0B1F35;
    --terms-text: #1f2937;
    --terms-muted: #64707d;
    --terms-border: #e5e9ec;
    --terms-bg: #f7f9f8;
    --terms-white: #ffffff;

    background: var(--terms-bg);
    color: var(--terms-text);
    width: 100%;
    min-height: 100vh;

    /* Your navbar is fixed */
    padding: 105px 20px 80px;
}


/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.terms-page .terms-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}


/* ============================================================
   HERO
   ============================================================ */

.terms-page .terms-hero {
    background: var(--terms-white);
    border: 1px solid var(--terms-border);
    border-top: 4px solid var(--terms-green);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;

    box-shadow: 0 6px 22px rgba(11, 31, 53, 0.05);
}

.terms-page .terms-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--terms-green-light);
    color: var(--terms-green-dark);

    font-size: 13px;
    font-weight: 700;

    padding: 7px 12px;
    border-radius: 50px;

    margin-bottom: 15px;
}

.terms-page .terms-kicker::before {
    content: "";
    width: 7px;
    height: 7px;

    background: var(--terms-green);
    border-radius: 50%;
}

.terms-page .terms-hero h1 {
    margin: 0 0 12px;

    color: var(--terms-navy);

    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;

    letter-spacing: -1px;
}

.terms-page .terms-hero p {
    max-width: 760px;

    margin: 0;

    color: var(--terms-muted);

    font-size: 16px;
    line-height: 1.75;
}

.terms-page .terms-date {
    margin-top: 18px;

    color: var(--terms-muted);

    font-size: 14px;
}

.terms-page .terms-date strong {
    color: var(--terms-text);
}


/* ============================================================
   CONTENT LAYOUT
   ============================================================ */

.terms-page .terms-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}


/* ============================================================
   SIDE NAVIGATION
   ============================================================ */

.terms-page .terms-nav {
    position: sticky;
    top: 90px;

    background: var(--terms-white);

    border: 1px solid var(--terms-border);
    border-radius: 14px;

    padding: 20px;
}

.terms-page .terms-nav h3 {
    margin: 0 0 13px;

    color: var(--terms-navy);

    font-size: 14px;
    font-weight: 700;
}

.terms-page .terms-nav a {
    display: block;

    padding: 6px 0;

    color: var(--terms-muted);

    font-size: 13px;
    line-height: 1.45;

    text-decoration: none;

    transition: color 0.2s ease;
}

.terms-page .terms-nav a:hover {
    color: var(--terms-green);
}


/* ============================================================
   TERMS CONTENT
   ============================================================ */

.terms-page .terms-content {
    background: var(--terms-white);

    border: 1px solid var(--terms-border);
    border-radius: 16px;

    padding: 40px;
}


/* ============================================================
   INDIVIDUAL SECTIONS
   ============================================================ */

.terms-page .terms-section {
    padding: 0 0 30px;
    margin: 0 0 30px;

    border-bottom: 1px solid var(--terms-border);

    scroll-margin-top: 100px;
}

.terms-page .terms-section:last-child {
    border-bottom: none;

    margin-bottom: 0;
    padding-bottom: 0;
}


/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.terms-page .terms-section h2 {
    display: flex;
    align-items: center;

    margin: 0 0 14px;

    color: var(--terms-navy);

    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
}

.terms-page .terms-section h2::before {
    content: "";

    display: inline-block;

    flex: 0 0 4px;

    width: 4px;
    height: 22px;

    margin-right: 11px;

    background: var(--terms-green);

    border-radius: 4px;
}

.terms-page .terms-section h3 {
    margin: 22px 0 8px;

    color: var(--terms-navy);

    font-size: 16px;
    font-weight: 700;
}


/* ============================================================
   TEXT
   ============================================================ */

.terms-page .terms-section p,
.terms-page .terms-section li {
    color: #52606b;

    font-size: 15px;
    line-height: 1.8;
}

.terms-page .terms-section p {
    margin: 0 0 12px;
}

.terms-page .terms-section ul {
    margin: 8px 0 15px;
    padding-left: 22px;
}

.terms-page .terms-section li {
    margin-bottom: 7px;
}

.terms-page .terms-section a {
    color: var(--terms-green);
    font-weight: 600;
}


/* ============================================================
   IMPORTANT NOTICE
   ============================================================ */

.terms-page .terms-highlight {
    background: var(--terms-green-light);

    border-left: 4px solid var(--terms-green);
    border-radius: 7px;

    padding: 15px 17px;
    margin: 18px 0;
}

.terms-page .terms-highlight p {
    margin: 0;

    color: var(--terms-navy);
}


/* ============================================================
   CONTACT BOX
   ============================================================ */

.terms-page .terms-contact {
    background: var(--terms-navy);

    color: #ffffff;

    border-radius: 12px;

    padding: 22px;
    margin-top: 18px;
}

.terms-page .terms-contact p {
    color: #ffffff;
}

.terms-page .terms-contact strong {
    color: #ffffff;
}

.terms-page .terms-contact a {
    color: #7bd49a;

    text-decoration: none;
}

.terms-page .terms-contact a:hover {
    text-decoration: underline;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 850px) {

    .terms-page {
        padding: 95px 16px 60px;
    }

    .terms-page .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-page .terms-nav {
        position: static;
    }

    .terms-page .terms-nav a {
        display: inline-block;

        margin-right: 14px;
    }

    .terms-page .terms-hero,
    .terms-page .terms-content {
        padding: 28px 22px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 520px) {

    .terms-page {
        padding: 85px 12px 50px;
    }

    .terms-page .terms-hero {
        padding: 26px 20px;
    }

    .terms-page .terms-content {
        padding: 25px 18px;
    }

    .terms-page .terms-hero h1 {
        font-size: 32px;
    }

    .terms-page .terms-section h2 {
        font-size: 19px;
    }

    .terms-page .terms-section p,
    .terms-page .terms-section li {
        font-size: 14px;
        line-height: 1.75;
    }
}








html {
    scroll-behavior: smooth;
}

.about-page {
    --about-green: #15803d;
    --about-green-dark: #166534;
    --about-green-light: #edf8f0;

    --about-navy: #0B1F35;
    --about-text: #1f2937;
    --about-muted: #64707d;
    --about-border: #e5e9ec;
    --about-bg: #f7f9f8;
    --about-white: #ffffff;

    background: var(--about-bg);
    color: var(--about-text);
    width: 100%;
    min-height: 100vh;
    padding: 105px 20px 80px;
}


.about-page .about-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}


.about-page .about-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14.5px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.about-page .about-alert-success {
    background: var(--about-green-light);
    color: var(--about-green-dark);
    border-color: rgba(21, 128, 61, 0.25);
}

.about-page .about-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.25);
}

.about-page .about-alert strong {
    font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */

.about-page .about-hero {
    background: var(--about-white);
    border: 1px solid var(--about-border);
    border-top: 4px solid var(--about-green);
    border-radius: 16px;
    padding: 48px 40px;
    margin-bottom: 32px;
    box-shadow: 0 6px 22px rgba(11, 31, 53, 0.05);
}

.about-page .about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--about-green-light);
    color: var(--about-green-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.about-page .about-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--about-green);
    border-radius: 50%;
}

.about-page .about-hero h1 {
    margin: 0 0 16px;
    color: var(--about-navy);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-page .about-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* ============================================================
   SECTIONS & GRID CARDS
   ============================================================ */

.about-page .about-section {
    background: var(--about-white);
    border: 1px solid var(--about-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: 0 6px 22px rgba(11, 31, 53, 0.03);
}

.about-page .about-section h2 {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
    color: var(--about-navy);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.35;
}

.about-page .about-section h2::before {
    content: "";
    display: inline-block;
    flex: 0 0 4px;
    width: 4px;
    height: 24px;
    margin-right: 11px;
    background: var(--about-green);
    border-radius: 4px;
}

.about-page .about-section p {
    color: #52606b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.about-page .about-card {
    background: var(--about-bg);
    border: 1px solid var(--about-border);
    border-radius: 12px;
    padding: 24px;
}

.about-page .about-card h3 {
    margin: 0 0 10px;
    color: var(--about-navy);
    font-size: 17px;
    font-weight: 700;
}

.about-page .about-card p {
    margin: 0;
    font-size: 14.5px;
    color: var(--about-muted);
    line-height: 1.65;
}


.about-page .about-highlight {
    background: var(--about-green-light);
    border-left: 4px solid var(--about-green);
    border-radius: 7px;
    padding: 20px 22px;
    margin: 20px 0;
}

.about-page .about-highlight p {
    margin: 0;
    color: var(--about-navy);
    font-weight: 500;
}


.about-page .about-trial-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
    margin-top: 32px;
}

.about-page .about-trial-info {
    background: var(--about-navy);
    color: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
}

.about-page .about-trial-info h2 {
    color: #ffffff;
    font-size: 26px;
    margin: 0 0 14px;
    line-height: 1.2;
}

.about-page .about-trial-info p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-page .about-trial-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-page .about-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-page .about-perk-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.about-page .about-perk-item strong {
    color: #ffffff;
    font-size: 14.5px;
    display: block;
    margin-bottom: 2px;
}

.about-page .about-trial-card {
    background: var(--about-white);
    border: 1px solid var(--about-border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 6px 22px rgba(11, 31, 53, 0.04);
}

.about-page .about-trial-card h3 {
    margin: 0 0 6px;
    color: var(--about-navy);
    font-size: 22px;
    font-weight: 750;
}

.about-page .about-trial-card > p {
    color: var(--about-muted);
    font-size: 14px;
    margin-bottom: 22px;
}

.about-page .biz-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-page .biz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.about-page .biz-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--about-navy);
}

.about-page .biz-form-group input,
.about-page .biz-form-group select {
    padding: 11px 14px;
    border: 1px solid var(--about-border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--about-white);
    color: var(--about-text);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-page .biz-form-group input:focus,
.about-page .biz-form-group select:focus {
    border-color: var(--about-green);
    box-shadow: 0 0 0 3px var(--about-green-light);
}

.about-page .biz-submit-btn {
    background: var(--about-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 6px;
}

.about-page .biz-submit-btn:hover {
    background: var(--about-green-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 850px) {
    .about-page {
        padding: 95px 16px 60px;
    }
    .about-page .about-hero,
    .about-page .about-section,
    .about-page .about-trial-card {
        padding: 32px 24px;
    }
    .about-page .about-trial-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-page {
        padding: 85px 12px 50px;
    }
    .about-page .about-hero,
    .about-page .about-section,
    .about-page .about-trial-card {
        padding: 26px 20px;
    }
    .about-page .about-hero h1 {
        font-size: 32px;
    }
    .about-page .biz-form-row {
        grid-template-columns: 1fr;
    }
}