* { 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; }
    }
    
    
    /* Register and Login */
    
    
button { user-select: none; }

/* ---------- AUTH CONTAINER & CARD ---------- */
.auth-container {
    width: 100%;
    max-width: 420px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-card {
    background: var(--card);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
    border-radius: 24px 24px 0 0;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark i { color: white; font-size: 18px; }

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo-text span { color: var(--teal); }

/* ---------- TABS ---------- */
.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: var(--surface);
    padding: 4px;
    border-radius: 12px;
}

.auth-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab i { margin-right: 6px; font-size: 0.8rem; }

.auth-tab.active {
    background: #269245;
    color: white;
    box-shadow: 0 2px 6px rgba(16,185,129,0.3);
}

.auth-tab:not(.active):hover {
    background: rgba(16,185,129,0.1);
    color: var(--teal);
}

/* ---------- ALERTS ---------- */
.alert {
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.alert-error { background: #FEF2F2; color: #DC2626; border-left: 3px solid #DC2626; }
.alert-success { background: #ECFDF5; color: #059669; border-left: 3px solid #059669; }
.alert-info { background: #E0F2FE; color: #0284C7; border-left: 3px solid #0284C7; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 12px; }

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label i { margin-right: 4px; color: var(--teal); }

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-input::placeholder { color: var(--text3); }

.password-wrapper { position: relative; }

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    padding: 4px;
    font-size: 12px;
}

.password-toggle:hover { color: var(--teal); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text2);
    margin: 12px 0;
}

.form-check input {
    width: 14px;
    height: 14px;
    accent-color: var(--teal);
    cursor: pointer;
}

.form-check label { cursor: pointer; }

.form-check a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
}

.form-check a:hover { text-decoration: underline; }

.btn-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* Divider & Social */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0 12px;
    color: var(--text3);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span { padding: 0 10px; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 2px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text2);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    transform: translateY(-1px);
    border-color: var(--teal);
    color: var(--teal);
}

.auth-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.65rem;
    color: var(--text3);
}

.hidden { display: none !important; }

.phone-helper {
    font-size: 0.6rem;
    color: var(--text3);
    display: block;
    margin-top: 3px;
}

/* ---------- TOAST NOTIFICATION ---------- */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
}

.toast-notification.toast-hide { animation: slideOutRight 0.3s ease forwards; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

.toast-success {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: white;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    animation: gentleBounce 0.6s ease infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.toast-message { flex: 1; }
.toast-message h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.toast-message p {
    font-size: 0.7rem;
    opacity: 0.9;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
}

.toast-progress {
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.toast-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: progressBar 3.5s linear forwards;
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

@media (max-width: 640px) {
    .toast-notification {
        top: auto;
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        width: calc(100% - 32px);
        border-radius: 10px;
    }
    .toast-content { padding: 10px 12px; gap: 8px; }
    .toast-icon { width: 28px; height: 28px; font-size: 14px; }
    .toast-message h4 { font-size: 0.75rem; }
    .toast-message p { font-size: 0.65rem; white-space: normal; word-break: break-word; }
    .toast-close { width: 28px; height: 28px; }
}

@media (min-width: 641px) {
    .toast-notification { top: 24px; right: 24px; }
}

@media (max-width: 480px) {
    .auth-card { padding: 20px 16px; }
    .logo { margin-bottom: 16px; }
    .logo-mark { width: 32px; height: 32px; }
    .logo-text { font-size: 1.2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

.btn-submit.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-submit.loading i { animation: spin 0.6s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ACTIVATION MODAL BUTTONS */
.activation-btn-resend {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.activation-btn-resend:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #047857, #059669);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.activation-btn-enter {
    flex: 1;
    padding: 8px 12px;
    background: #F59E0B;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-enter:hover {
    background: #D97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.activation-btn-close {
    flex: 1;
    padding: 8px 12px;
    background: var(--aqua);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-close:hover {
    background: var(--aqua-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.activation-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ULTRA COMPACT MODAL */
.activation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.activation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.activation-modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 340px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.25s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Modal Header */
.activation-modal-header {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #FDE68A;
}

.activation-modal-icon {
    width: 32px;
    height: 32px;
    background: #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activation-modal-icon i { font-size: 16px; color: white; }

.activation-modal-header h3 {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400E;
    margin: 0;
}

.activation-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--aqua);
    font-size: 14px;
}

.activation-modal-close:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--aqua-dark);
}

/* Modal Body */
.activation-modal-body { padding: 16px; }

.activation-error-message {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.activation-error-message i { font-size: 14px; flex-shrink: 0; }
.activation-error-message p { margin: 0; line-height: 1.4; }

.error-primary {
    background: #FEF2F2;
    color: #DC2626;
    border-left: 3px solid #DC2626;
}
.error-primary i { color: #DC2626; }

.error-secondary {
    background: #E0F2FE;
    color: #0284C7;
    border-left: 3px solid #0284C7;
}
.error-secondary i { color: #0284C7; }

.activation-phone-display {
    background: var(--surface);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    border: 1px solid var(--border);
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
}

.activation-phone-display i { color: var(--teal); font-size: 12px; }

/* Disabled button styling */
.activation-btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Footer */
.activation-modal-footer { padding: 12px 16px 16px; }

.activation-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
}

.activation-btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

/* Modal Logo & Footer */
.activation-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.activation-modal-logo .logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.activation-modal-logo .logo-mark i { font-size: 10px; }

.activation-modal-logo .logo-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
}

.activation-modal-footer .auth-footer {
    margin-top: 8px;
    padding-top: 6px;
    font-size: 0.55rem;
}

/* PASSWORD VALIDATION */
.form-input.password-match {
    border-color: #059669 !important;
    border-width: 2px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23059669" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.form-input.password-mismatch {
    border-color: #DC2626 !important;
    border-width: 2px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23DC2626" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

/* Password Requirements Card */
.password-requirements-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.password-requirements-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text);
}

.password-requirements-header i {
    color: var(--teal);
    font-size: 0.75rem;
}

.password-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.password-requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    transition: all 0.2s ease;
}

.password-requirement-item i {
    width: 14px;
    font-size: 0.7rem;
}

.password-requirement-item.valid { color: #059669; }
.password-requirement-item.invalid { color: #DC2626; }
.password-requirement-item.valid i { color: #059669; }
.password-requirement-item.invalid i { color: #DC2626; }

.password-info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
    font-size: 0.65rem;
    color: var(--text2);
}

.password-info-note i {
    color: var(--aqua);
    font-size: 0.7rem;
}

.password-info-note strong {
    color: var(--text);
    font-weight: 600;
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
}

.success-modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 300px;
    width: 85%;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.25s ease;
}

.success-modal-header {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #6EE7B7;
}

.success-modal-icon {
    width: 28px;
    height: 28px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-icon i { font-size: 14px; color: white; }

.success-modal-header h3 {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 700;
    color: #065F46;
    margin: 0;
}

.success-modal-body { padding: 14px 16px; text-align: center; }

.success-modal-body p {
    font-size: 0.75rem;
    color: var(--text2);
    margin-bottom: 8px;
}

.success-phone {
    background: var(--surface);
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin: 6px 0;
}

.success-modal-footer { padding: 10px 14px 14px; }

.success-btn {
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.success-btn:hover { transform: translateY(-1px); }

.success-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.success-modal-logo .logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.success-modal-logo .logo-mark i { font-size: 10px; }

.success-modal-logo .logo-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
}
:root {
    --navy: #1E293B;
    --navy-dark: #0F172A;
    --teal: #10B981;
    --teal-light: #34D399;
    --teal-dark: #059669;
    --teal-glow: rgba(16, 185, 129, 0.2);
    --aqua: #06B6D4;
    --aqua-dark: #0891B2;
    --card: #FFFFFF;
    --surface: #F8FAFC;
    --border: #E2E8F0;
    --text: #0F172A;
    --text2: #475569;
    --text3: #94A3B8;
}

body {
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

button { user-select: none; }

/* ---------- AUTH CONTAINER & CARD ---------- */
.auth-container {
    width: 100%;
    max-width: 420px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-card {
    background: var(--card);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
    border-radius: 24px 24px 0 0;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark i { color: white; font-size: 18px; }

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo-text span { color: #15803d); }

/* ---------- TABS ---------- */
.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: var(--surface);
    padding: 4px;
    border-radius: 12px;
}

.auth-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab i { margin-right: 6px; font-size: 0.8rem; }

.auth-tab.active {
    background: #fffff;
    color: white;
    box-shadow: 0 2px 6px rgba(16,185,129,0.3);
}

.auth-tab:not(.active):hover {
    background: rgba(16,185,129,0.1);
    color: var(--teal);
}

/* ---------- ALERTS ---------- */
.alert {
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.alert-error { background: #FEF2F2; color: #DC2626; border-left: 3px solid #DC2626; }
.alert-success { background: #ECFDF5; color: #059669; border-left: 3px solid #059669; }
.alert-info { background: #E0F2FE; color: #0284C7; border-left: 3px solid #0284C7; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 12px; }

.form-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label i { margin-right: 4px; color: var(--teal); }

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text);
    transition: all 0.2s;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-input::placeholder { color: var(--text3); }

.password-wrapper { position: relative; }

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    padding: 4px;
    font-size: 12px;
}

.password-toggle:hover { color: var(--teal); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text2);
    margin: 12px 0;
}

.form-check input {
    width: 14px;
    height: 14px;
    accent-color: var(--teal);
    cursor: pointer;
}

.form-check label { cursor: pointer; }

.form-check a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
}

.form-check a:hover { text-decoration: underline; }

.btn-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* Divider & Social */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0 12px;
    color: var(--text3);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span { padding: 0 10px; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 2px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text2);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    transform: translateY(-1px);
    border-color: var(--teal);
    color: var(--teal);
}

.auth-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.65rem;
    color: var(--text3);
}

.hidden { display: none !important; }

.phone-helper {
    font-size: 0.6rem;
    color: var(--text3);
    display: block;
    margin-top: 3px;
}

/* ---------- TOAST NOTIFICATION ---------- */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
}

.toast-notification.toast-hide { animation: slideOutRight 0.3s ease forwards; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

.toast-success {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: white;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    animation: gentleBounce 0.6s ease infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.toast-message { flex: 1; }
.toast-message h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.toast-message p {
    font-size: 0.7rem;
    opacity: 0.9;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.1);
}

.toast-progress {
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.toast-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: progressBar 3.5s linear forwards;
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

@media (max-width: 640px) {
    .toast-notification {
        top: auto;
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        width: calc(100% - 32px);
        border-radius: 10px;
    }
    .toast-content { padding: 10px 12px; gap: 8px; }
    .toast-icon { width: 28px; height: 28px; font-size: 14px; }
    .toast-message h4 { font-size: 0.75rem; }
    .toast-message p { font-size: 0.65rem; white-space: normal; word-break: break-word; }
    .toast-close { width: 28px; height: 28px; }
}

@media (min-width: 641px) {
    .toast-notification { top: 24px; right: 24px; }
}

@media (max-width: 480px) {
    .auth-card { padding: 20px 16px; }
    .logo { margin-bottom: 16px; }
    .logo-mark { width: 32px; height: 32px; }
    .logo-text { font-size: 1.2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

.btn-submit.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-submit.loading i { animation: spin 0.6s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ACTIVATION MODAL BUTTONS */
.activation-btn-resend {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.activation-btn-resend:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #047857, #059669);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.activation-btn-enter {
    flex: 1;
    padding: 8px 12px;
    background: #F59E0B;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-enter:hover {
    background: #D97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.activation-btn-close {
    flex: 1;
    padding: 8px 12px;
    background: var(--aqua);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-close:hover {
    background: var(--aqua-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.activation-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ULTRA COMPACT MODAL */
.activation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.activation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.activation-modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 340px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.25s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Modal Header */
.activation-modal-header {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #FDE68A;
}

.activation-modal-icon {
    width: 32px;
    height: 32px;
    background: #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activation-modal-icon i { font-size: 16px; color: white; }

.activation-modal-header h3 {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400E;
    margin: 0;
}

.activation-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--aqua);
    font-size: 14px;
}

.activation-modal-close:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--aqua-dark);
}

/* Modal Body */
.activation-modal-body { padding: 16px; }

.activation-error-message {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.activation-error-message i { font-size: 14px; flex-shrink: 0; }
.activation-error-message p { margin: 0; line-height: 1.4; }

.error-primary {
    background: #FEF2F2;
    color: #DC2626;
    border-left: 3px solid #DC2626;
}
.error-primary i { color: #DC2626; }

.error-secondary {
    background: #E0F2FE;
    color: #0284C7;
    border-left: 3px solid #0284C7;
}
.error-secondary i { color: #0284C7; }

.activation-phone-display {
    background: var(--surface);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    border: 1px solid var(--border);
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
}

.activation-phone-display i { color: var(--teal); font-size: 12px; }

/* Disabled button styling */
.activation-btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal Footer */
.activation-modal-footer { padding: 12px 16px 16px; }

.activation-btn {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.activation-btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
}

.activation-btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

/* Modal Logo & Footer */
.activation-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.activation-modal-logo .logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.activation-modal-logo .logo-mark i { font-size: 10px; }

.activation-modal-logo .logo-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
}

.activation-modal-footer .auth-footer {
    margin-top: 8px;
    padding-top: 6px;
    font-size: 0.55rem;
}

/* PASSWORD VALIDATION */
.form-input.password-match {
    border-color: #059669 !important;
    border-width: 2px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23059669" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.form-input.password-mismatch {
    border-color: #DC2626 !important;
    border-width: 2px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23DC2626" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

/* Password Requirements Card */
.password-requirements-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.password-requirements-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text);
}

.password-requirements-header i {
    color: var(--teal);
    font-size: 0.75rem;
}

.password-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.password-requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    transition: all 0.2s ease;
}

.password-requirement-item i {
    width: 14px;
    font-size: 0.7rem;
}

.password-requirement-item.valid { color: #059669; }
.password-requirement-item.invalid { color: #DC2626; }
.password-requirement-item.valid i { color: #059669; }
.password-requirement-item.invalid i { color: #DC2626; }

.password-info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
    font-size: 0.65rem;
    color: var(--text2);
}

.password-info-note i {
    color: var(--aqua);
    font-size: 0.7rem;
}

.password-info-note strong {
    color: var(--text);
    font-weight: 600;
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
}

.success-modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 300px;
    width: 85%;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.25s ease;
}

.success-modal-header {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #6EE7B7;
}

.success-modal-icon {
    width: 28px;
    height: 28px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-icon i { font-size: 14px; color: white; }

.success-modal-header h3 {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 700;
    color: #065F46;
    margin: 0;
}

.success-modal-body { padding: 14px 16px; text-align: center; }

.success-modal-body p {
    font-size: 0.75rem;
    color: var(--text2);
    margin-bottom: 8px;
}

.success-phone {
    background: var(--surface);
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    margin: 6px 0;
}

.success-modal-footer { padding: 10px 14px 14px; }

.success-btn {
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.success-btn:hover { transform: translateY(-1px); }

.success-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.success-modal-logo .logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.success-modal-logo .logo-mark i { font-size: 10px; }

.success-modal-logo .logo-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
}

.footer .brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer .logo-mar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .logo-mar img {
  height: 36px;
  width: auto;
  display: block;
}

.footer .brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  gap: 4px;
}

.footer .brand-name span {
  color: var(--teal, #269245);
}