        /* ── ROOT ─────────────────────────────────────────────── */
        :root {
            --ink: #1a1a2e;
            --soft: #f7f4f0;
            --sage: #7c9e8f;
            --sage-light: #a8c5b7;
            --sage-dark: #4f7265;
            --warm: #e8a87c;
            --warm-dark: #c47a46;
            --muted: #6b7280;
            --border: #e2ddd8;
            --white: #ffffff;
            --school: #5b6fa6;
            --school-light: #8fa0cc;
            --school-dark: #3a4d84;
            --danger: #e05c5c;
            --success: #4caf7d;
            --card-bg: #ffffff;
            --overlay: rgba(26, 26, 46, 0.85);
            --radius: 14px;
            --radius-sm: 8px;
            --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
            --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.14);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--soft);
            color: var(--ink);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ── NAV ─────────────────────────────────────────────── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(247, 244, 240, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .nav-logo {
            width: 38px;
            height: 38px;
            background: var(--sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-logo svg {
            width: 20px;
            height: 20px;
            fill: white;
        }
        .nav-brand-text {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-link {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all .2s;
            color: var(--muted);
            border: none;
            background: none;
        }
        .nav-link:hover {
            background: var(--sage-light);
            color: var(--white);
        }
        .nav-link.active {
            background: var(--sage);
            color: var(--white);
        }
        .nav-cta {
            padding: 9px 18px;
            background: var(--sage);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s;
        }
        .nav-cta:hover {
            background: var(--sage-dark);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: .3s;
        }
        .nav-mobile {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: var(--soft);
            border-bottom: 1px solid var(--border);
            padding: 16px;
            z-index: 99;
            flex-direction: column;
            gap: 4px;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile .nav-link {
            width: 100%;
            text-align: left;
            padding: 12px 16px;
        }

        /* ── PAGES ───────────────────────────────────────────── */
        .page {
            display: none;
            padding-top: 64px;
            min-height: 100vh;
        }
        .page.active {
            display: block;
        }

        /* ── HERO ────────────────────────────────────────────── */
        .hero {
            padding: 80px 24px 60px;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .hero-tagline {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--sage);
            margin-bottom: 20px;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 7vw, 72px);
            font-weight: 900;
            line-height: 1.05;
            color: var(--ink);
            margin-bottom: 24px;
        }
        .hero-title em {
            font-style: italic;
            color: var(--sage);
        }
        .hero-sub {
            font-size: 17px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all .22s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: var(--sage);
            color: white;
        }
        .btn-primary:hover {
            background: var(--sage-dark);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--sage);
            border: 2px solid var(--sage);
        }
        .btn-outline:hover {
            background: var(--sage);
            color: white;
        }
        .btn-warm {
            background: var(--warm);
            color: white;
        }
        .btn-warm:hover {
            background: var(--warm-dark);
        }
        .btn-school {
            background: var(--school);
            color: white;
        }
        .btn-school:hover {
            background: var(--school-dark);
        }
        .btn-danger {
            background: var(--danger);
            color: white;
        }
        .btn-danger:hover {
            background: #c94b4b;
        }
        .btn-ghost {
            background: transparent;
            color: var(--muted);
            border: 1.5px solid var(--border);
        }
        .btn-ghost:hover {
            border-color: var(--sage);
            color: var(--sage);
        }
        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
        }
        .btn-lg {
            padding: 16px 36px;
            font-size: 16px;
        }
        .btn-full {
            width: 100%;
            justify-content: center;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 600px;
            margin: 56px auto 0;
            padding: 36px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .stat {
            text-align: center;
        }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--sage);
        }
        .stat-label {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ── SECTION ─────────────────────────────────────────── */
        .section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 56px 24px;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }
        .section-sub {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* ── CARDS ───────────────────────────────────────────── */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all .25s;
            position: relative;
        }
        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .card-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 16px;
        }
        .badge-mini {
            background: #e8f5f1;
            color: var(--sage-dark);
        }
        .badge-lite {
            background: #fef3e8;
            color: var(--warm-dark);
        }
        .badge-vip {
            background: #f0eefa;
            color: #7c5cbf;
        }
        .badge-express {
            background: #e8f0fe;
            color: var(--school-dark);
        }
        .badge-corporate {
            background: #fce8e8;
            color: var(--danger);
        }
        .badge-school {
            background: #e3e8f8;
            color: var(--school-dark);
        }
        .badge-revoke {
            background: #fce8e8;
            color: #b33c3c;
        }
        .badge-agent {
            background: #e0f2f1;
            color: #00695c;
        }
        .card-price {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 4px;
        }
        .card-price span {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: var(--muted);
        }
        .card-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--ink);
        }
        .card-desc {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .card-action {
            margin-top: auto;
        }

        /* ── DISCLAIMER ──────────────────────────────────────── */
        .disclaimer-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--warm);
        }
        .disclaimer-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--ink);
        }
        .disclaimer-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--muted);
            margin-bottom: 24px;
        }
        .disclaimer-quotes {
            background: var(--soft);
            border-radius: var(--radius-sm);
            padding: 16px;
            margin-bottom: 24px;
        }
        .disclaimer-quotes p {
            font-size: 13px;
            color: var(--sage-dark);
            font-weight: 500;
            padding: 4px 0;
        }
        .disclaimer-quotes p::before {
            content: '"';
            color: var(--sage);
            font-size: 18px;
        }
        .disclaimer-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ── NOTICES ─────────────────────────────────────────── */
        .notices-box {
            max-width: 580px;
            margin: 40px auto;
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .notice-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }
        .notice-item:last-child {
            border-bottom: none;
        }
        .notice-num {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: var(--sage);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }
        .notice-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted);
        }

        /* ── TESTIMONIALS ────────────────────────────────────── */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .testi-card {
            background: white;
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .testi-quote {
            font-size: 32px;
            color: var(--sage-light);
            line-height: 1;
            margin-bottom: 12px;
        }
        .testi-text {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testi-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--sage-dark);
        }
        .testi-role {
            font-size: 12px;
            color: var(--muted);
        }
        .testi-stars {
            color: var(--warm);
            font-size: 14px;
            margin-bottom: 12px;
        }

        /* ── CONTACTS ────────────────────────────────────────── */
        .contact-card {
            background: white;
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            max-width: 520px;
            margin: 40px auto;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
        }
        .contact-item:last-child {
            border-bottom: none;
        }
        .contact-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .contact-info {
            flex: 1;
        }
        .contact-label {
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .contact-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
        }
        .contact-btn {
            padding: 10px 20px;
            background: var(--sage);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        /* ── FORM ────────────────────────────────────────────── */
        .form-box {
            max-width: 560px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
        }
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            background: white;
            color: var(--ink);
            transition: border-color .2s;
        }
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--sage);
        }
        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-hint {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-divider {
            border: none;
            border-top: 1px solid var(--border);
            margin: 24px 0;
        }

        /* ── SCHOOL PORTAL ───────────────────────────────────── */
        .school-hero {
            background: linear-gradient(135deg, var(--school-dark), var(--school));
            color: white;
            padding: 60px 24px;
            text-align: center;
        }
        .school-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 900;
            margin-bottom: 12px;
        }
        .school-hero p {
            font-size: 16px;
            opacity: .85;
            max-width: 480px;
            margin: 0 auto 28px;
        }
        .school-badge-hero {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .15);
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .portal-login {
            max-width: 420px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .portal-login-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            margin-top: -24px;
            position: relative;
        }
        .portal-tabs {
            display: flex;
            gap: 4px;
            background: var(--soft);
            border-radius: var(--radius-sm);
            padding: 4px;
            margin-bottom: 28px;
        }
        .portal-tab {
            flex: 1;
            padding: 10px;
            text-align: center;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: .2s;
            border: none;
            background: none;
            color: var(--muted);
        }
        .portal-tab.active {
            background: white;
            color: var(--school);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
        }

        .student-dashboard {
            max-width: 900px;
            margin: 0 auto;
            padding: 24px;
        }
        .dash-header {
            background: linear-gradient(135deg, var(--school), var(--school-light));
            color: white;
            border-radius: var(--radius);
            padding: 28px 32px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .dash-welcome h2 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
        }
        .dash-welcome p {
            font-size: 13px;
            opacity: .85;
            margin-top: 4px;
        }
        .dash-avatar {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, .25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        .dash-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }
        .dash-grid-wide {
            grid-template-columns: 2fr 1fr;
        }
        .dash-card {
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .dash-card-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 16px;
        }
        .dash-stat {
            text-align: center;
            padding: 12px;
        }
        .dash-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--school);
        }
        .dash-stat-label {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
        }

        .session-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .session-item:last-child {
            border-bottom: none;
        }
        .session-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--sage);
        }
        .session-dot.pending {
            background: var(--warm);
        }
        .session-dot.cancelled {
            background: var(--danger);
        }
        .session-info {
            flex: 1;
        }
        .session-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
        }
        .session-type {
            font-size: 12px;
            color: var(--muted);
        }
        .session-status {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
        }
        .status-confirmed {
            background: #e8f5f1;
            color: var(--sage-dark);
        }
        .status-pending {
            background: #fef3e8;
            color: var(--warm-dark);
        }
        .status-cancelled {
            background: #fce8e8;
            color: var(--danger);
        }

        .mood-tracker {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            margin: 16px 0;
        }
        .mood-btn {
            padding: 10px 4px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            text-align: center;
            cursor: pointer;
            transition: .2s;
            background: none;
            font-size: 22px;
        }
        .mood-btn:hover,
        .mood-btn.selected {
            border-color: var(--school);
            background: var(--soft);
        }
        .mood-label {
            font-size: 10px;
            color: var(--muted);
            margin-top: 4px;
            display: block;
        }

        .progress-bar {
            height: 8px;
            background: var(--border);
            border-radius: 4px;
            overflow: hidden;
            margin: 8px 0;
        }
        .progress-fill {
            height: 100%;
            background: var(--sage);
            border-radius: 4px;
            transition: width .6s;
        }

        /* ── ADMIN SIDEBAR ───────────────────────────────────── */
        .admin-sidebar {
            width: 220px;
            min-height: calc(100vh - 64px);
            background: var(--school-dark);
            color: white;
            padding: 24px 0;
            position: fixed;
            top: 64px;
            left: 0;
            z-index: 50;
        }
        .admin-sidebar.hidden {
            display: none;
        }
        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: .2s;
            border: none;
            background: none;
            color: rgba(255, 255, 255, .8);
            width: 100%;
            text-align: left;
        }
        .sidebar-item:hover,
        .sidebar-item.active {
            background: rgba(255, 255, 255, .1);
            color: white;
        }
        .sidebar-icon {
            font-size: 16px;
            width: 20px;
            text-align: center;
        }
        .sidebar-section {
            padding: 8px 20px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: .5;
            margin-top: 16px;
        }
        .admin-content {
            margin-left: 220px;
            padding: 24px;
        }
        .admin-content.full {
            margin-left: 0;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th {
            background: var(--soft);
            padding: 12px 16px;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: var(--muted);
            border-bottom: 1px solid var(--border);
        }
        .data-table td {
            padding: 14px 16px;
            font-size: 14px;
            color: var(--ink);
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: var(--soft);
        }

        /* ── MODAL ───────────────────────────────────────────── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--overlay);
            z-index: 200;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .modal-overlay.open {
            display: flex;
        }
        .modal {
            background: white;
            border-radius: var(--radius);
            padding: 36px;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-lg);
        }
        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .modal-sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 24px;
        }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: var(--soft);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ── TOAST ───────────────────────────────────────────── */
        .toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 300;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .toast {
            background: var(--ink);
            color: white;
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 320px;
            animation: slideIn .3s ease;
        }
        .toast.success {
            background: var(--success);
        }
        .toast.error {
            background: var(--danger);
        }
        .toast.warning {
            background: var(--warm-dark);
        }
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ── NEWS ────────────────────────────────────────────── */
        .news-item {
            background: white;
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 16px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .news-icon {
            font-size: 32px;
            min-width: 48px;
        }
        .news-content h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 6px;
        }
        .news-content p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        /* ── FOOTER ──────────────────────────────────────────── */
        .footer {
            background: var(--ink);
            color: rgba(255, 255, 255, .7);
            padding: 48px 24px;
            margin-top: 80px;
        }
        .footer-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        .footer-tag {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            color: var(--sage-light);
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 13px;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            text-decoration: none;
            margin-bottom: 8px;
            cursor: pointer;
            transition: .2s;
        }
        .footer-col a:hover {
            color: var(--sage-light);
        }
        .footer-bottom {
            max-width: 900px;
            margin: 32px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            text-align: center;
            font-size: 12px;
        }

        /* ── PRICING CARDS ───────────────────────────────────── */
        .pricing-card {
            background: white;
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
            transition: .25s;
        }
        .pricing-card:hover,
        .pricing-card.featured {
            border-color: var(--school);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.featured {
            position: relative;
        }
        .pricing-featured-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--school);
            color: white;
            padding: 4px 16px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .pricing-tier {
            font-family: 'DM Mono', monospace;
            font-size: 12px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }
        .pricing-price {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--school);
        }
        .pricing-period {
            font-size: 14px;
            color: var(--muted);
        }
        .pricing-features {
            list-style: none;
            margin: 20px 0 24px;
        }
        .pricing-features li {
            font-size: 14px;
            color: var(--muted);
            padding: 7px 0;
            display: flex;
            gap: 8px;
            align-items: flex-start;
            border-bottom: 1px solid var(--soft);
        }
        .pricing-features li::before {
            content: '✓';
            color: var(--school);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ── BOOTH UI ────────────────────────────────────────── */
        .booth-ui {
            max-width: 380px;
            margin: 40px auto;
            background: white;
            border-radius: 24px;
            padding: 40px 32px;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--school-light);
        }
        .booth-ui h2 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            text-align: center;
            margin-bottom: 6px;
        }
        .booth-ui p {
            font-size: 14px;
            color: var(--muted);
            text-align: center;
            margin-bottom: 28px;
        }
        .call-action-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--school), var(--school-dark));
            color: white;
            border: none;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 12px;
            transition: .2s;
            text-decoration: none;
        }
        .call-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(91, 111, 166, .3);
        }
        .call-action-btn.schedule {
            background: var(--soft);
            color: var(--school);
            border: 2px solid var(--school-light);
        }
        .calling-ring {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--school);
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(91, 111, 166, .4);
            }
            50% {
                box-shadow: 0 0 0 20px rgba(91, 111, 166, 0);
            }
        }

        /* ── JOURNAL ─────────────────────────────────────────── */
        .journal-entry {
            background: var(--soft);
            border-radius: var(--radius-sm);
            padding: 16px;
            margin-bottom: 12px;
            border-left: 3px solid var(--sage);
        }
        .journal-date {
            font-size: 11px;
            color: var(--muted);
            margin-bottom: 6px;
            font-family: 'DM Mono', monospace;
        }
        .journal-mood {
            font-size: 18px;
            margin-bottom: 4px;
        }
        .journal-text {
            font-size: 13px;
            color: var(--ink);
            line-height: 1.6;
        }

        /* ── AFFILIATE ───────────────────────────────────────── */
        .affiliate-code {
            background: linear-gradient(135deg, var(--warm), var(--warm-dark));
            color: white;
            border-radius: var(--radius);
            padding: 28px;
            text-align: center;
            margin: 20px 0;
        }
        .affiliate-code-display {
            font-family: 'DM Mono', monospace;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 4px;
            margin: 12px 0;
        }
        .affiliate-code small {
            font-size: 12px;
            opacity: .8;
        }

        /* ── REVOKE ──────────────────────────────────────────── */
        .revoke-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--danger);
        }

        /* ── AGENT / ADMIN LOGIN ────────────────────────────── */
        .login-box {
            max-width: 420px;
            margin: 60px auto;
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }
        .login-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 8px;
            text-align: center;
        }
        .login-box p {
            text-align: center;
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 28px;
        }


        /* ── AGORA CALL UI ───────────────────────────────────── */
        #agoraCallOverlay.active { display: flex !important; }
        @keyframes pulseCall {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.15); }
            50% { box-shadow: 0 0 0 28px rgba(255,255,255,0); }
        }
        .agora-call-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #4caf7d, #2e7d52);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 12px;
            transition: .2s;
        }
        .agora-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(76,175,125,.3);
        }
        .agora-notice {
            background: linear-gradient(135deg,#e8f5f1,#d0ede4);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            font-size: 13px;
            color: var(--sage-dark);
            margin-bottom: 16px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }
        .call-quality-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--muted);
            font-family: 'DM Mono', monospace;
        }

        /* ── RESPONSIVE ──────────────────────────────────────── */
        @media(max-width:768px) {
            .nav-links,
            .nav-cta {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .dash-grid,
            .dash-grid-wide {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .admin-sidebar {
                width: 100%;
                min-height: auto;
                position: relative;
                top: 0;
                padding: 12px 0;
            }
            .admin-content {
                margin-left: 0;
            }
            .admin-sidebar.hidden {
                display: none;
            }
            .stats-row {
                grid-template-columns: 1fr;
            }
            .cards-grid {
                grid-template-columns: 1fr;
            }
            .nav-mobile.open {
                display: flex;
            }
        }
