
    /* =========================================================
       BRAND COLOUR SYSTEM
    ========================================================= */
    :root {
      --dark:        #13544E;
      --heading:     #095D40;
      --accent:      #6C9A40;
      --cta:         #008060;
      --lime:        #D3E162;
      --lime-light:  #E4F577;
      --bg:          #FBF7ED;
      --alt:         #E0EDD4;
      --text:        #212B36;
      --muted:       #5a6a75;
      --white:       #ffffff;
      --error:       #ef4444;
      --success:     #22c55e;
      --radius:      12px;
      --radius-lg:   20px;
      --shadow:      0 4px 24px rgba(9,93,64,0.09);
      --shadow-lg:   0 8px 40px rgba(9,93,64,0.14);
      --shadow-xl:   0 16px 64px rgba(9,93,64,0.18);
      --transition:  all 0.25s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
    .container-xs { max-width: 520px;  margin: 0 auto; padding: 0 24px; }

    /* =========================================================
       SHARED UTILITIES
    ========================================================= */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--lime); color: var(--heading);
      font-size: 0.78rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
    }
    .section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
    .section-header h2 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 900; color: var(--heading);
      letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2;
    }
    .section-header p { font-size: 0.97rem; color: var(--muted); line-height: 1.7; }

    /* =========================================================
       ANNOUNCEMENT BAR
    ========================================================= */
    .announcement-bar {
      background: var(--heading);
      color: var(--white);
      text-align: center;
      padding: 10px 16px;
      font-size: 0.85rem; font-weight: 600;
    }
    .announcement-bar i  { color: var(--lime); margin-right: 5px; }
    .announcement-bar a  { color: var(--lime); text-decoration: underline; font-weight: 800; }

    /* =========================================================
       NAVIGATION
    ========================================================= */
    .main-nav {
      background: var(--white);
      border-bottom: 1px solid rgba(9,93,64,0.10);
      box-shadow: 0 2px 12px rgba(9,93,64,0.07);
      position: sticky; top: 0; z-index: 1000;
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; height: 70px; gap: 16px;
    }
    .nav-logo { font-size: 1.2rem; font-weight: 900; color: var(--heading); }
    .nav-logo .acc { color: var(--accent); }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links > li > a {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.88rem; font-weight: 600; color: var(--text);
      padding: 8px 12px; border-radius: 8px; transition: var(--transition);
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active { background: var(--alt); color: var(--heading); }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .nav-portal-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--alt); color: var(--heading);
      font-size: 0.84rem; font-weight: 800;
      padding: 9px 16px; border-radius: 9px; transition: var(--transition);
      border: 1.5px solid rgba(9,93,64,0.15);
    }
    .nav-portal-btn:hover { background: var(--cta); color: var(--white); border-color: var(--cta); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--cta); color: var(--white);
      font-size: 0.85rem; font-weight: 800;
      padding: 10px 20px; border-radius: 9px;
      white-space: nowrap; transition: var(--transition);
    }
    .nav-cta:hover { background: var(--heading); }

    /* Breadcrumb */
    .breadcrumb-bar { background: var(--alt); padding: 10px 0; border-bottom: 1px solid rgba(9,93,64,0.08); }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
    .breadcrumb a { color: var(--cta); font-weight: 600; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb i { font-size: 0.65rem; }
    .breadcrumb span { font-weight: 700; color: var(--heading); }

    /* =========================================================
       SECTION 1 — HERO + LOGIN
    ========================================================= */
    .portal-hero {
      background: linear-gradient(135deg, var(--dark) 0%, #0d6b62 50%, var(--heading) 100%);
      padding: 64px 0 80px;
      position: relative; overflow: hidden;
    }
    .portal-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    /* Floating decorative circles */
    .portal-hero::after {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(211,225,98,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px; align-items: center;
      position: relative; z-index: 1;
    }

    /* Left — Intro copy */
    .hero-left { color: var(--white); }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,0.15); border: 1px solid rgba(211,225,98,0.35);
      color: var(--lime); font-size: 0.78rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
    }
    .hero-left h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      font-weight: 900; line-height: 1.15;
      letter-spacing: -0.025em; margin-bottom: 16px;
    }
    .hero-left h1 span { color: var(--lime); }
    .hero-left p {
      font-size: 1.03rem; opacity: 0.84; line-height: 1.72;
      margin-bottom: 28px; max-width: 500px;
    }
    .hero-feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
    .hero-feature-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.91rem; opacity: 0.88;
    }
    .hfl-check {
      width: 22px; height: 22px; border-radius: 6px;
      background: rgba(211,225,98,0.20); border: 1px solid rgba(211,225,98,0.35);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--lime); font-size: 0.60rem;
    }
    .hero-not-client {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--radius); padding: 14px 16px;
      font-size: 0.86rem; color: rgba(255,255,255,0.80);
    }
    .hero-not-client i { color: var(--lime); font-size: 1rem; flex-shrink: 0; }
    .hero-not-client a { color: var(--lime); font-weight: 800; text-decoration: underline; }

    /* Right — Login Card */
    .login-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      position: relative;
    }
    .login-card-header {
      background: var(--heading);
      padding: 24px 28px;
      display: flex; align-items: center; gap: 14px;
    }
    .lch-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(211,225,98,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--lime); flex-shrink: 0;
    }
    .lch-text h3 { font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 2px; }
    .lch-text span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

    .login-card-body { padding: 28px; }

    /* Social / SSO login buttons */
    .sso-row { display: flex; gap: 10px; margin-bottom: 20px; }
    .sso-btn {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
      background: var(--bg); border: 1.5px solid rgba(9,93,64,0.14);
      color: var(--text); font-size: 0.82rem; font-weight: 700;
      padding: 10px 8px; border-radius: 9px;
      cursor: pointer; font-family: inherit; transition: var(--transition);
    }
    .sso-btn:hover { border-color: var(--cta); color: var(--cta); background: rgba(0,128,96,0.05); }
    .sso-btn i { font-size: 0.96rem; }

    .divider-row {
      display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
    }
    .divider-row::before,
    .divider-row::after { content: ''; flex: 1; height: 1px; background: rgba(9,93,64,0.12); }
    .divider-row span { font-size: 0.76rem; color: var(--muted); font-weight: 700; white-space: nowrap; }

    /* Form fields */
    .login-form { display: flex; flex-direction: column; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 0.82rem; font-weight: 800; color: var(--heading);
    }
    .form-group .input-wrap { position: relative; }
    .form-group .input-wrap > i {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      color: var(--muted); font-size: 0.82rem; pointer-events: none;
    }
    .form-group input {
      width: 100%; padding: 12px 12px 12px 38px;
      border: 1.5px solid rgba(9,93,64,0.15); border-radius: 9px;
      background: var(--bg); color: var(--text);
      font-family: inherit; font-size: 0.93rem; outline: none;
      transition: var(--transition);
    }
    /* Password field — extra right padding to keep text clear of the eye icon */
    #loginPassword { padding-right: 42px; }
    .form-group input:focus {
      border-color: var(--cta); background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,128,96,0.10);
    }
    .form-group input::placeholder { color: #aab3bb; }
    .input-toggle {
      position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      color: var(--muted); font-size: 0.95rem; padding: 6px;
      line-height: 1; display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .input-toggle:hover { color: var(--cta); }

    .form-options {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.80rem;
    }
    .remember-me { display: flex; align-items: center; gap: 7px; cursor: pointer; font-weight: 600; color: var(--muted); }
    .remember-me input[type="checkbox"] { accent-color: var(--cta); width: 14px; height: 14px; }
    .forgot-link { color: var(--cta); font-weight: 700; transition: var(--transition); }
    .forgot-link:hover { text-decoration: underline; }

    .login-submit {
      display: flex; align-items: center; justify-content: center; gap: 9px;
      width: 100%; background: var(--cta); color: var(--white);
      border: none; font-family: inherit;
      font-size: 0.96rem; font-weight: 900;
      padding: 14px; border-radius: 10px;
      cursor: pointer; transition: var(--transition);
      margin-top: 4px;
    }
    .login-submit:hover { background: var(--heading); transform: translateY(-2px); }
    .login-submit:active { transform: translateY(0); }

    .login-footer-row {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: 16px; padding-top: 16px;
      border-top: 1px solid var(--alt);
      font-size: 0.82rem; color: var(--muted);
    }
    .login-footer-row a { color: var(--cta); font-weight: 800; }
    .login-footer-row a:hover { text-decoration: underline; }

    .login-security-note {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: 12px; font-size: 0.76rem; color: var(--muted);
    }
    .login-security-note i { color: var(--cta); font-size: 0.70rem; }

    /* Error state */
    .form-error {
      display: none; align-items: center; gap: 8px;
      background: #fef2f2; border: 1.5px solid #fca5a5;
      border-radius: 8px; padding: 10px 14px;
      font-size: 0.84rem; color: var(--error); font-weight: 600;
    }
    .form-error.show { display: flex; }
    .form-error i { flex-shrink: 0; }

    /* =========================================================
       SECTION 2 — PORTAL FEATURES OVERVIEW
    ========================================================= */
    .portal-features { background: var(--bg); padding: 56px 0; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .feature-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 28px; border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow); transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .feature-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--cta), var(--accent));
      opacity: 0; transition: var(--transition);
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(9,93,64,0.18); }
    .feature-card:hover::before { opacity: 1; }

    .fc-icon {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: 16px; flex-shrink: 0;
    }
    .feature-card h3 { font-size: 1rem; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.70; margin-bottom: 14px; }
    .fc-tag {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--alt); color: var(--heading);
      font-size: 0.70rem; font-weight: 800;
      padding: 3px 10px; border-radius: 100px;
    }
    .fc-tag.new { background: var(--lime); }
    .fc-tag i { font-size: 0.65rem; }

    /* =========================================================
       SECTION 3 — DASHBOARD PREVIEW MOCKUP
    ========================================================= */
    .dashboard-preview { background: var(--alt); padding: 56px 0; }
    .dashboard-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }

    .dp-left h2 {
      font-size: clamp(1.5rem, 2.8vw, 2.1rem);
      font-weight: 900; color: var(--heading);
      letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2;
    }
    .dp-left h2 span { color: var(--cta); }
    .dp-left p { font-size: 0.96rem; color: var(--muted); line-height: 1.72; margin-bottom: 24px; }
    .dp-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
    .dp-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.91rem; line-height: 1.55; }
    .dp-ico {
      width: 32px; height: 32px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 0.80rem; margin-top: 1px;
    }
    .dp-text strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--heading); margin-bottom: 2px; }
    .dp-text span { font-size: 0.82rem; color: var(--muted); }
    .dp-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--cta); color: var(--white);
      font-size: 0.92rem; font-weight: 800;
      padding: 12px 22px; border-radius: 10px; transition: var(--transition);
    }
    .dp-cta:hover { background: var(--heading); transform: translateY(-2px); }

    /* Dashboard mock UI */
    .dash-mockup {
      background: #1a2332;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }
    .dash-topbar {
      background: #111c2d;
      padding: 12px 18px;
      display: flex; align-items: center; gap: 10px;
    }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dash-dot.r { background: #ef4444; }
    .dash-dot.a { background: #f59e0b; }
    .dash-dot.g { background: #22c55e; }
    .dash-title-bar { flex: 1; text-align: center; font-size: 0.74rem; color: rgba(255,255,255,0.35); font-family: monospace; }

    .dash-layout { display: grid; grid-template-columns: 56px 1fr; }

    /* Sidebar */
    .dash-sidebar {
      background: #111c2d;
      padding: 14px 0;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .dash-nav-ico {
      width: 36px; height: 36px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem; cursor: pointer; transition: var(--transition);
    }
    .dash-nav-ico.active { background: var(--cta); color: var(--white); }
    .dash-nav-ico:not(.active) { color: rgba(255,255,255,0.30); }
    .dash-nav-ico:not(.active):hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.60); }

    /* Main dashboard content */
    .dash-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

    /* KPI row */
    .dash-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .dash-kpi {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 12px;
    }
    .dash-kpi-label { font-size: 0.60rem; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
    .dash-kpi-val { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 2px; }
    .dash-kpi-trend { font-size: 0.58rem; font-weight: 700; display: flex; align-items: center; gap: 3px; }
    .dash-kpi-trend.up   { color: #4ade80; }
    .dash-kpi-trend.down { color: #f87171; }

    /* Progress section */
    .dash-progress-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 14px;
    }
    .dash-prog-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 12px;
    }
    .dash-prog-title { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.75); }
    .dash-prog-badge {
      font-size: 0.58rem; font-weight: 800; padding: 2px 8px;
      border-radius: 100px; background: rgba(211,225,98,0.18); color: var(--lime);
    }
    .dash-task-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .dash-task-row:last-child { margin-bottom: 0; }
    .dash-task-check {
      width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 0.55rem;
    }
    .dash-task-check.done { background: #22c55e; color: var(--white); }
    .dash-task-check.prog { background: var(--cta); color: var(--white); }
    .dash-task-check.todo { background: rgba(255,255,255,0.10); color: transparent; border: 1px solid rgba(255,255,255,0.20); }
    .dash-task-name { font-size: 0.68rem; color: rgba(255,255,255,0.65); flex: 1; }
    .dash-task-name.done { text-decoration: line-through; opacity: 0.45; }
    .dash-task-pct { font-size: 0.60rem; font-weight: 800; color: rgba(255,255,255,0.45); }

    /* Chart bar mock */
    .dash-chart-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 14px;
    }
    .dash-chart-title { font-size: 0.68rem; font-weight: 800; color: rgba(255,255,255,0.60); margin-bottom: 12px; }
    .dash-bars { display: flex; align-items: flex-end; gap: 4px; height: 52px; }
    .dash-bar {
      flex: 1; border-radius: 3px 3px 0 0;
      background: rgba(0,128,96,0.40); transition: var(--transition);
    }
    .dash-bar.active { background: var(--cta); }
    .dash-bar.lime { background: rgba(211,225,98,0.50); }

    /* =========================================================
       SECTION 4 — WHAT'S IN THE PORTAL
    ========================================================= */
    .portal-content-section { background: var(--bg); padding: 56px 0; }
    .portal-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
    .ptab {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--white); border: 1.5px solid rgba(9,93,64,0.14);
      color: var(--muted); font-size: 0.84rem; font-weight: 700;
      padding: 9px 18px; border-radius: 100px;
      cursor: pointer; font-family: inherit; transition: var(--transition);
    }
    .ptab:hover { border-color: var(--cta); color: var(--cta); }
    .ptab.active { background: var(--cta); color: var(--white); border-color: var(--cta); }

    .portal-tab-panel { display: none; }
    .portal-tab-panel.active { display: block; }

    .ptab-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
      background: var(--white); border-radius: var(--radius-lg);
      padding: 40px; border: 1.5px solid rgba(9,93,64,0.09); box-shadow: var(--shadow);
    }
    .ptab-content h3 { font-size: 1.2rem; font-weight: 900; color: var(--heading); margin-bottom: 10px; }
    .ptab-content p  { font-size: 0.93rem; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
    .ptab-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .ptab-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.90rem; line-height: 1.55; }
    .ptab-check {
      width: 20px; height: 20px; border-radius: 5px;
      background: var(--lime); color: var(--heading);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 0.55rem; margin-top: 2px;
    }

    /* Panel screen mock */
    .ptab-screen {
      background: var(--bg); border-radius: var(--radius-lg);
      border: 1.5px solid rgba(9,93,64,0.12);
      overflow: hidden; box-shadow: var(--shadow);
    }
    .pts-header {
      background: var(--heading); padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 800; color: var(--lime);
    }
    .pts-header i { font-size: 0.80rem; }
    .pts-body { padding: 16px; }
    .pts-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 12px; background: var(--white);
      border-radius: 8px; margin-bottom: 8px;
      font-size: 0.82rem; border: 1px solid rgba(9,93,64,0.07);
    }
    .pts-row:last-child { margin-bottom: 0; }
    .pts-row-left { display: flex; align-items: center; gap: 8px; }
    .pts-row-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; }
    .pts-row-label { font-weight: 700; color: var(--heading); }
    .pts-row-sub { font-size: 0.72rem; color: var(--muted); }
    .pts-status {
      font-size: 0.68rem; font-weight: 800; padding: 3px 9px; border-radius: 100px;
    }
    .pts-status.live    { background: #dcfce7; color: #14532d; }
    .pts-status.prog    { background: #fef3c7; color: #92400e; }
    .pts-status.review  { background: #dbeafe; color: #1e40af; }
    .pts-status.done    { background: var(--alt); color: var(--heading); }

    /* =========================================================
       SECTION 5 — HOW TO ACCESS
    ========================================================= */
    .access-section { background: var(--alt); padding: 56px 0; }
    .access-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .access-step {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 26px 22px; text-align: center;
      border: 1.5px solid rgba(9,93,64,0.09); box-shadow: var(--shadow);
      transition: var(--transition); position: relative;
    }
    .access-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .access-step:not(:last-child)::after {
      content: '→';
      position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
      font-size: 1.1rem; color: var(--cta); font-weight: 900; z-index: 1;
    }
    .as-num {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--heading); color: var(--lime);
      font-size: 0.88rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .as-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .access-step h4 { font-size: 0.92rem; font-weight: 900; color: var(--heading); margin-bottom: 7px; }
    .access-step p { font-size: 0.83rem; color: var(--muted); line-height: 1.60; }

    /* =========================================================
       SECTION 6 — SECURITY & TRUST
    ========================================================= */
    .security-section { background: var(--bg); padding: 56px 0; }
    .security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

    .sec-left h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: var(--heading); letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2; }
    .sec-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.72; margin-bottom: 24px; }

    .security-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .sec-badge {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 18px; border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 12px;
      transition: var(--transition);
    }
    .sec-badge:hover { border-color: var(--cta); }
    .sec-badge-icon {
      width: 38px; height: 38px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.90rem; flex-shrink: 0;
    }
    .sec-badge-text h5 { font-size: 0.84rem; font-weight: 800; color: var(--heading); margin-bottom: 3px; }
    .sec-badge-text p  { font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin: 0; }

    /* Security visual */
    .sec-visual {
      background: var(--heading);
      border-radius: var(--radius-lg);
      padding: 32px; text-align: center;
      box-shadow: var(--shadow-lg); color: var(--white);
    }
    .sec-shield {
      width: 90px; height: 90px; border-radius: 50%;
      background: rgba(211,225,98,0.15); border: 2px solid rgba(211,225,98,0.30);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem; margin: 0 auto 18px; color: var(--lime);
    }
    .sec-visual h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 8px; }
    .sec-visual p { font-size: 0.86rem; opacity: 0.75; line-height: 1.65; margin-bottom: 20px; }
    .sec-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .sec-stat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; text-align: center; }
    .sec-stat strong { display: block; font-size: 1.2rem; font-weight: 900; color: var(--lime); }
    .sec-stat span   { font-size: 0.70rem; opacity: 0.65; }

    /* =========================================================
       SECTION 7 — SUPPORT / HELP
    ========================================================= */
    .support-section { background: var(--alt); padding: 48px 0; }
    .support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .support-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 28px 24px; border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow); transition: var(--transition); text-align: center;
    }
    .support-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .support-icon { font-size: 2rem; margin-bottom: 14px; }
    .support-card h4 { font-size: 0.96rem; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .support-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
    .support-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--cta); color: var(--white);
      font-size: 0.84rem; font-weight: 800;
      padding: 10px 18px; border-radius: 9px; transition: var(--transition);
    }
    .support-btn:hover { background: var(--heading); }
    .support-btn.ghost {
      background: var(--alt); color: var(--heading);
    }
    .support-btn.ghost:hover { background: var(--cta); color: var(--white); }
    .support-hours { font-size: 0.76rem; color: var(--muted); margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 5px; }
    .support-hours i { color: var(--cta); font-size: 0.68rem; }

    /* =========================================================
       SECTION 8 — FAQ
    ========================================================= */
    .portal-faq-section { background: var(--bg); padding: 48px 0; }
    .faq-grid { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }
    .faq-item {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1.5px solid rgba(9,93,64,0.09); box-shadow: var(--shadow); overflow: hidden;
    }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px; cursor: pointer;
      font-size: 0.93rem; font-weight: 800; color: var(--heading);
      transition: var(--transition); gap: 12px;
    }
    .faq-question:hover { background: rgba(0,128,96,0.04); }
    .faq-icon { font-size: 0.80rem; color: var(--cta); flex-shrink: 0; transition: var(--transition); }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      display: none; padding: 0 22px 18px;
      font-size: 0.92rem; color: var(--muted); line-height: 1.75;
    }
    .faq-answer a { color: var(--cta); font-weight: 700; }
    .faq-item.open .faq-answer { display: block; }

    /* =========================================================
       SECTION 9 — NOT A CLIENT YET CTA
    ========================================================= */
    .non-client-section { background: var(--alt); padding: 48px 0; }
    .nc-inner {
      background: linear-gradient(135deg, var(--dark) 0%, #0d6b62 55%, var(--heading) 100%);
      border-radius: 24px;
      padding: 56px 60px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 48px; align-items: center;
      position: relative; overflow: hidden;
    }
    .nc-inner::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(211,225,98,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .nc-left { position: relative; z-index: 1; color: var(--white); }
    .nc-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,0.18); border: 1px solid rgba(211,225,98,0.35);
      color: var(--lime); font-size: 0.76rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
    }
    .nc-left h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2; }
    .nc-left h2 span { color: var(--lime); }
    .nc-left p { font-size: 0.95rem; opacity: 0.82; line-height: 1.70; }
    .nc-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
    .nc-btn-primary {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--lime); color: var(--heading);
      font-size: 0.92rem; font-weight: 900;
      padding: 14px 22px; border-radius: 10px; transition: var(--transition); white-space: nowrap;
    }
    .nc-btn-primary:hover { background: var(--lime-light); transform: translateY(-2px); }
    .nc-btn-secondary {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.22);
      color: var(--white); font-size: 0.90rem; font-weight: 800;
      padding: 13px 22px; border-radius: 10px; transition: var(--transition);
    }
    .nc-btn-secondary:hover { background: rgba(255,255,255,0.20); }
    .nc-trust-row {
      display: flex; align-items: center; gap: 14px; margin-top: 4px; flex-wrap: wrap;
    }
    .nc-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; opacity: 0.75; color: var(--white); }
    .nc-trust-item i { color: var(--lime); font-size: 0.68rem; }

    /* =========================================================
       FOOTER
    ========================================================= */
    .site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-brand-logo { font-size: 1.25rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
    .footer-brand-logo .acc { color: var(--lime); }
    .footer-col p { font-size: 0.86rem; line-height: 1.7; margin-bottom: 20px; }
    .footer-col h4 { font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
    .footer-links a:hover { color: var(--lime); }
    .footer-links a i { font-size: 0.70rem; color: rgba(255,255,255,0.30); }
    .footer-nl-input { display: flex; margin-bottom: 10px; border-radius: 9px; overflow: hidden; }
    .footer-nl-input input { flex: 1; padding: 11px 14px; border: none; background: rgba(255,255,255,0.10); color: var(--white); font-family: inherit; font-size: 0.86rem; outline: none; }
    .footer-nl-input input::placeholder { color: rgba(255,255,255,0.40); }
    .footer-nl-input button { background: var(--cta); color: var(--white); border: none; padding: 0 16px; font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: var(--transition); }
    .footer-nl-input button:hover { background: var(--heading); }
    .footer-socials { display: flex; gap: 10px; margin-top: 18px; }
    .footer-social { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.86rem; transition: var(--transition); }
    .footer-social:hover { background: var(--cta); color: var(--white); }
    .footer-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
    .footer-stat { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 12px; text-align: center; }
    .footer-stat strong { display: block; font-size: 1.2rem; font-weight: 900; color: var(--lime); }
    .footer-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
    .footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.50); }
    .footer-legal { display: flex; gap: 18px; list-style: none; }
    .footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.50); transition: var(--transition); }
    .footer-legal a:hover { color: var(--lime); }

    /* =========================================================
       MODAL — Forgot Password
    ========================================================= */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(9,93,64,0.40); backdrop-filter: blur(4px);
      display: none; align-items: center; justify-content: center; padding: 24px;
    }
    .modal-overlay.show { display: flex; }
    .modal-box {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 32px; width: 100%; max-width: 420px;
      box-shadow: var(--shadow-xl); position: relative;
      animation: slideUp 0.3s ease;
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .modal-close {
      position: absolute; top: 16px; right: 16px;
      background: var(--alt); border: none; border-radius: 8px;
      width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 0.80rem; color: var(--muted); transition: var(--transition);
    }
    .modal-close:hover { background: var(--cta); color: var(--white); }
    .modal-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--alt); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--cta); margin-bottom: 16px; }
    .modal-box h3 { font-size: 1.05rem; font-weight: 900; color: var(--heading); margin-bottom: 7px; }
    .modal-box p  { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
    .modal-form { display: flex; flex-direction: column; gap: 12px; }
    .modal-submit {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; background: var(--cta); color: var(--white);
      border: none; font-family: inherit; font-size: 0.92rem; font-weight: 900;
      padding: 13px; border-radius: 9px; cursor: pointer; transition: var(--transition);
    }
    .modal-submit:hover { background: var(--heading); }

    /* =========================================================
       RESPONSIVE
    ========================================================= */
    @media (max-width: 1024px) {
      .hero-layout     { grid-template-columns: 1fr; gap: 40px; }
      .hero-left h1    { font-size: clamp(1.7rem, 4vw, 2.3rem); }
      .login-card      { max-width: 480px; margin: 0 auto; }
      .features-grid   { grid-template-columns: repeat(2, 1fr); }
      .dashboard-layout { grid-template-columns: 1fr; }
      .access-steps    { grid-template-columns: repeat(2, 1fr); }
      .access-step:not(:last-child)::after { display: none; }
      .security-grid   { grid-template-columns: 1fr; }
      .footer-grid     { grid-template-columns: repeat(2, 1fr); }
      .nc-inner        { grid-template-columns: 1fr; padding: 36px 28px; }
    }
    @media (max-width: 768px) {
      .features-grid   { grid-template-columns: 1fr; }
      .ptab-inner      { grid-template-columns: 1fr; }
      .access-steps    { grid-template-columns: 1fr; }
      .support-grid    { grid-template-columns: 1fr; }
      .security-badges { grid-template-columns: 1fr; }
      .footer-grid     { grid-template-columns: 1fr; }
      .footer-bottom   { flex-direction: column; text-align: center; }
      .nav-links       { display: none; }
      .sso-row         { flex-direction: column; }
    }
    @media (max-width: 540px) {
      .portal-tabs     { gap: 6px; }
      .ptab            { font-size: 0.78rem; padding: 7px 13px; }
    }
  


/* ============================================================
   NAV + FOOTER SYSTEM (final-index.html match)
============================================================ */
:root { --muted: #637381; --bg-alt: #E0EDD4; --navy: #212B36; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --shadow-sm: 0 2px 12px rgba(9,93,64,0.06); --ease: all 0.25s ease; --font-display: 'Nunito', sans-serif; --font-body: 'Inter', sans-serif; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.announcement-bar { background: var(--lime) !important; color: var(--heading) !important; font-size: 13px; font-weight: 600; position: fixed !important; top: 0; left: 0; right: 0; z-index: 1001; transition: all 0.25s ease; }
.announcement-bar.hidden { transform: translateY(-100%); pointer-events: none; }
.announcement-bar__inner { display: flex; align-items: center; justify-content: center; gap: 12px; height: 40px; position: relative; }
.announcement-bar__text { display: flex; align-items: center; gap: 8px; text-align: center; }
.announcement-bar__text i { color: var(--heading); font-size: 12px; flex-shrink: 0; }
.announcement-bar__text a { color: var(--heading); text-decoration: underline; font-weight: 700; transition: all 0.25s ease; }
.announcement-bar__text a:hover { color: var(--dark); }
.announcement-bar__close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--heading); cursor: pointer; border: none; transition: all 0.25s ease; }
.announcement-bar__close:hover { background: rgba(0,0,0,0.2); }
body { padding-top: 115px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: all 0.25s ease; white-space: nowrap; }
.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--heading); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,128,96,0.35); }
.btn--outline { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
.btn--outline:hover { background: var(--cta); color: #fff; transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--heading); }
.btn--lime:hover { background: var(--lime-light); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.nav { position: fixed !important; top: 40px; left: 0; right: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(9,93,64,0.06); transition: all 0.25s ease; }
.nav.bar-hidden { top: 0; }
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 75px; gap: 32px; }
.nav__logo { flex-shrink: 0; }
.nav__logo img { width: 190px; height: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; padding: 0; margin: 0; }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 15px; font-weight: 600; color: #212B36; border-radius: 8px; transition: all 0.25s ease; }
.nav__link:hover, .nav__link.active { color: var(--cta); background: #E0EDD4; }
.nav__link i { font-size: 11px; transition: all 0.25s ease; }
.nav__item:hover .nav__link i { transform: rotate(180deg); }
.nav__dropdown { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border-radius: 12px; box-shadow: 0 8px 40px rgba(9,93,64,0.14); padding: 28px; opacity: 0; visibility: hidden; transition: all 0.25s ease; min-width: 580px; border: 1px solid #E0EDD4; }
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown--sm { min-width: 320px; }
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dropdown__col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #637381; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.dropdown__link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #212B36; transition: all 0.25s ease; margin-bottom: 2px; }
.dropdown__link:hover { background: #E0EDD4; color: var(--cta); transform: translateX(4px); }
.dropdown__link i { width: 32px; height: 32px; background: #E0EDD4; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--cta); flex-shrink: 0; transition: all 0.25s ease; }
.dropdown__link:hover i { background: var(--cta); color: #fff; }
.dropdown__footer { border-top: 1px solid #E0EDD4; margin-top: 20px; padding-top: 16px; display: flex; gap: 12px; }
.dropdown__footer a { font-size: 13px; font-weight: 600; color: var(--cta); display: flex; align-items: center; gap: 4px; transition: all 0.25s ease; }
.dropdown__footer a:hover { color: var(--heading); gap: 8px; }
.dropdown__featured { background: #E0EDD4; border-radius: 8px; padding: 14px; margin-top: 16px; }
.dropdown__featured-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.dropdown__featured-title { font-size: 13px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.dropdown__featured a { font-size: 12px; font-weight: 700; color: var(--cta); display: flex; align-items: center; gap: 4px; }
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #212B36; border-radius: 2px; transition: all 0.25s ease; }
.nav__mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1002; overflow-y: auto; padding: 80px 24px 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.nav__mobile.open { transform: translateX(0); }
.nav__mobile ul, .nav__menu, .footer__links, .footer__legal, .mobile-nav__sub { list-style: none; padding-left: 0; margin: 0; }
.mobile-nav__item { border-bottom: 1px solid #E0EDD4; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: 16px; font-weight: 600; color: #212B36; }
.mobile-nav__sub { padding-bottom: 12px; display: none; }
.mobile-nav__sub.open { display: block; }
.mobile-nav__sub a { display: block; padding: 10px 0 10px 16px; font-size: 14px; color: #637381; border-left: 2px solid #E0EDD4; margin-bottom: 4px; transition: all 0.25s ease; }
.mobile-nav__sub a:hover { color: var(--cta); border-color: var(--cta); }
.mobile-nav__ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__ctas .btn { justify-content: center; width: 100%; }
.nav__mobile-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; background: #E0EDD4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #212B36; cursor: pointer; }
.footer-cta-band { background: var(--heading); padding: 44px 0; border-top: 4px solid var(--lime); }
.footer-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-cta-band__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(211,225,98,0.15); border: 1px solid rgba(211,225,98,0.3); color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.footer-cta-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.footer-cta-band__title { font-family: 'Nunito', sans-serif; font-size: clamp(24px,3vw,38px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.footer-cta-band__title span { color: var(--lime); }
.footer-cta-band__sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.6; }
.footer-cta-band__right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.footer-cta-band__trust { display: flex; align-items: center; gap: 8px; }
.footer-cta-band__trust .stars { font-size: 15px; }
.footer-cta-band__trust span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.footer__body { background: var(--dark); padding: 72px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; align-items: start; }
.footer__logo img { width: 170px; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.footer__lead { margin-bottom: 24px; }
.footer__lead-label { font-size: 12px; font-weight: 700; color: var(--lime); letter-spacing: 0.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.footer__lead-form { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.15); }
.footer__lead-input { flex: 1; background: rgba(255,255,255,0.06); border: none; outline: none; padding: 11px 14px; font-size: 13px; color: #fff; font-family: 'Inter', sans-serif; }
.footer__lead-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__lead-btn { background: var(--lime); color: var(--heading); border: none; padding: 0 16px; font-size: 14px; cursor: pointer; transition: all 0.25s ease; }
.footer__lead-btn:hover { background: var(--lime-light); }
.footer__lead-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 7px; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; transition: all 0.25s ease; }
.footer__social-link:hover { background: var(--lime); border-color: var(--lime); color: var(--heading); transform: translateY(-2px); }
.footer__col-title { font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.footer__links li a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.6); padding: 5px 0; transition: all 0.25s ease; border-radius: 4px; }
.footer__links li a i { font-size: 11px; color: rgba(255,255,255,0.3); width: 14px; text-align: center; flex-shrink: 0; transition: all 0.25s ease; }
.footer__links li a:hover { color: #fff; padding-left: 4px; }
.footer__links li a:hover i { color: var(--lime); }
.footer__link--cta { color: var(--lime) !important; font-weight: 700 !important; }
.footer__link--cta i { color: var(--lime) !important; }
.footer__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.footer__stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 12px; text-align: center; }
.footer__stat-num { display: block; font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--lime); line-height: 1; }
.footer__stat-label { display: block; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 5px; line-height: 1.4; }
.footer__badges { display: flex; flex-direction: column; gap: 10px; }
.footer__badge { display: flex; align-items: center; gap: 12px; background: rgba(211,225,98,0.07); border: 1px solid rgba(211,225,98,0.15); border-radius: 8px; padding: 10px 14px; }
.footer__badge > i { font-size: 20px; color: var(--lime); flex-shrink: 0; }
.footer__badge strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }
.footer__badge span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.footer__bottom { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copyright { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer__legal li a { font-size: 12px; color: rgba(255,255,255,0.45); transition: all 0.25s ease; }
.footer__legal li a:hover { color: var(--lime); }
footer.footer { display: block; }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer-cta-band__right { align-items: flex-start; } }
@media (max-width: 1100px) { .nav__menu, .nav__cta { display: none; } .nav__toggle { display: flex; } .nav__mobile { display: block; } .footer__grid { grid-template-columns: 1fr; } .footer__grid > :first-child { grid-column: span 1; } .footer__bottom-inner { flex-direction: column; text-align: center; } .footer__legal { justify-content: center; } }
@media (max-width: 640px) { .footer-cta-band__inner { flex-direction: column; } .footer-cta-band__right { align-items: flex-start; width: 100%; } }



.announcement-bar { padding: 0 !important; margin: 0 !important; }
.announcement-bar__inner { height: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }

/* ── Portal Login Dropdown ─────────────────────────────────── */
.nav__login { position: relative; }
.nav__login-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid var(--bg-alt, #E0EDD4);
  color: var(--navy, #212B36);
  padding: 14px 20px; border-radius: 8px;
  font-size: 15px; font-family: inherit; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap; line-height: 1;
}
.nav__login-btn:hover {
  background: var(--bg-alt, #E0EDD4);
  color: var(--cta, #1a7a4a);
  border-color: var(--bg-alt, #E0EDD4);
}
.nav__login-chevron { font-size: 0.65rem; transition: transform 0.25s ease; }
.nav__login.open .nav__login-chevron { transform: rotate(180deg); }
.nav__login-menu {
  visibility: hidden; opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(9,93,64,0.14);
  border: 1px solid var(--bg-alt, #E0EDD4);
  padding: 6px;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav__login.open .nav__login-menu {
  visibility: visible; opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__login-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--navy, #212B36); text-decoration: none;
  transition: all 0.25s ease;
}
.nav__login-item:hover {
  background: var(--bg-alt, #E0EDD4);
  color: var(--cta, #1a7a4a);
  transform: translateX(4px);
}
.nav__login-item > i {
  width: 26px; height: 26px;
  background: var(--bg-alt, #E0EDD4); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--cta, #1a7a4a);
  flex-shrink: 0; transition: all 0.25s ease;
}
.nav__login-item:hover > i { background: var(--cta, #1a7a4a); color: #fff; }
.nav__login-item span { font-size: 14px; font-weight: 600; color: inherit; }

/* Mobile portal links */
.mobile-nav__portals {
  display: flex; gap: 10px;
  padding: 12px 0 0;
  border-top: 1px solid var(--bg-alt, #E0EDD4);
  margin-top: 8px;
}
.mobile-nav__portal-link {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 12px;
  background: var(--bg-alt, #E0EDD4);
  border: 1.5px solid var(--bg-alt, #E0EDD4);
  border-radius: 8px;
  color: var(--navy, #212B36);
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.25s ease;
}
.mobile-nav__portal-link:hover { background: var(--cta, #1a7a4a); border-color: var(--cta, #1a7a4a); color: #fff; }
.mobile-nav__portal-link i { color: var(--cta, #1a7a4a); transition: color 0.25s ease; }
.mobile-nav__portal-link:hover i { color: #fff; }
