/* HalaCap — Finance & Investment Theme */

:root {
    --navy-900: #0a1628;
    --navy-800: #0f2140;
    --navy-700: #1a3358;
    --navy-600: #234876;
    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --gold-500: #c9a227;
    --gold-400: #d4b545;
    --gold-300: #e8cc6a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --white: #ffffff;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);
    --radius: 12px;
    --radius-lg: 16px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--slate-700);
    background: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html[lang="ml"] body {
    font-family: 'Noto Sans Malayalam', var(--font-sans);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.2;
}

.lang-btn:hover { color: var(--gold-400); }
.lang-btn.active {
    background: var(--gold-500);
    color: var(--navy-900);
}

.mobile-lang {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-lang a {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-lang a.active {
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 700;
}

/* Google login */
.social-login { margin-bottom: 1.5rem; }
.social-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--slate-500);
    font-size: 0.85rem;
}
.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 8px;
    background: var(--white);
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-google:hover {
    border-color: var(--slate-400);
    box-shadow: var(--shadow-sm);
    color: var(--navy-900);
}

/* Plan enable/disable toggle */
.toggle-switch {
    width: 48px;
    height: 26px;
    border: none;
    border-radius: 50px;
    background: var(--slate-300);
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.toggle-switch.on { background: var(--teal-600); }
.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch.on .toggle-knob { transform: translateX(22px); }

/* UPI & Bank payment */
.upi-qr-image {
    max-width: 220px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
    padding: 0.75rem;
    background: var(--white);
}
.upi-id-box {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.upi-id-box label {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-transform: uppercase;
}
.upi-id-box strong {
    font-size: 1.1rem;
    color: var(--navy-900);
    font-family: monospace;
}
.bank-details-card .info-list strong code {
    font-size: 1rem;
    color: var(--navy-800);
}
.payment-upi-card {
    border: 2px solid var(--teal-600);
}

/* Team */
.team-card .card-body {
    padding: 1.75rem 1.25rem;
}
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid var(--teal-600);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    background: var(--slate-100);
}
.btn-upi-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    padding: 0.85rem 1.75rem;
    margin-bottom: 0.5rem;
}
.upi-app-hint {
    margin-bottom: 1.25rem;
}
.upi-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--slate-500);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.upi-divider::before,
.upi-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-500); }

h1, h2, h3, h4 {
    color: var(--navy-900);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    background: var(--navy-900);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy-900);
    font-weight: 700;
}

.logo span { color: var(--gold-400); }

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.925rem;
    font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold-400); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: var(--navy-800);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 0.925rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    border-color: var(--gold-500);
}

.btn-primary:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.btn-teal {
    background: var(--teal-600);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--teal-500);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-400);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-400);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--gold-400);
    font-weight: 700;
}

.stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    color: var(--teal-600);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.section-header p { color: var(--slate-600); }

.section-alt { background: var(--white); }

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body { padding: 1.75rem; }

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Plan cards */
.plan-card { display: flex; flex-direction: column; height: 100%; }

.plan-card-header {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: var(--white);
    padding: 1.5rem 1.75rem;
}

.plan-card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.plan-category {
    font-size: 0.8rem;
    color: var(--gold-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.plan-metric label {
    display: block;
    font-size: 0.7rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.plan-metric strong {
    font-size: 0.95rem;
    color: var(--navy-800);
}

.plan-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card .card-body p {
    flex: 1;
    font-size: 0.925rem;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-low { background: #d1fae5; color: #065f46; }
.badge-medium { background: #fef3c7; color: #92400e; }
.badge-high { background: #fee2e2; color: #991b1b; }
.badge-active { background: #d1fae5; color: #065f46; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-completed { background: #dbeafe; color: #1e40af; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-inactive { background: var(--slate-200); color: var(--slate-600); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

textarea.form-control { min-height: 130px; resize: vertical; }

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

.form-hint {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 0.35rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* Auth pages */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-card {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.auth-card .card-body { padding: 2.5rem; }

.auth-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--slate-500);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--slate-600);
}

/* Dashboard */
.page-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    padding: 2.5rem 0;
}

.page-header h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.page-header p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.stat-card label {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0.35rem 0;
}

.stat-card .change {
    font-size: 0.85rem;
    font-weight: 600;
}

.change-positive { color: var(--success); }
.change-negative { color: var(--danger); }

/* Tables */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
    background: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th, td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--slate-200);
}

th {
    background: var(--slate-50);
    font-weight: 600;
    color: var(--slate-700);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--slate-50); }

/* Admin */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 72px);
}

.admin-sidebar {
    background: var(--navy-900);
    padding: 1.5rem 0;
}

.admin-sidebar a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: var(--gold-400);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gold-500);
}

.admin-content {
    padding: 2rem;
    background: var(--slate-50);
}

.admin-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--gold-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Feature list */
.feature-list { list-style: none; }

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--slate-200);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-600);
    font-weight: 700;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* Investment detail */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.growth-chart {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
    min-height: 200px;
}

.growth-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 140px;
    padding-top: 1rem;
}

.growth-bar {
    flex: 1;
    background: linear-gradient(to top, var(--teal-600), var(--teal-400));
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    position: relative;
}

.growth-bar span {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--slate-500);
    white-space: nowrap;
}

.info-list { list-style: none; }

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.925rem;
}

.info-list li:last-child { border-bottom: none; }
.info-list li span:first-child { color: var(--slate-500); }

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--slate-500);
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: var(--slate-700);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4, .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: flex; flex-wrap: wrap; padding: 0.5rem; }
    .admin-sidebar a { padding: 0.5rem 1rem; border-left: none; border-bottom: 2px solid transparent; }
}

@media (max-width: 900px) {
    .lang-switcher { display: none; }
}

@media (max-width: 768px) {
    .nav-desktop, .header-actions .btn-secondary { display: none; }
    .mobile-toggle { display: block; }
    .grid-2, .grid-3, .grid-4, .detail-grid, .form-row { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
    .hero { padding: 3.5rem 0 4rem; }
    .section { padding: 3.5rem 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .plan-metrics { grid-template-columns: 1fr; }
}