/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #056ddd;
    --primary-dark: #0455b3;
    --primary-light: #80b5f1;
    --accent: #0ea5e9;
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --green: #10b981;
    --green-dark: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ==================== FLOATING PILL NAVBAR ==================== */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper.hidden {
    transform: translateX(-50%) translateY(-150%);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 12px 8px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
}

.nav-logo {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-700);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    display: block;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-md);
}

.mobile-menu-links a:hover {
    background: var(--gray-100);
}

.mobile-menu-buttons {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-ghost {
    color: var(--gray-700);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

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

.btn-dark:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.btn-outline-light {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

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

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-lg {
    font-size: 16px;
    padding: 14px 28px;
}

/* ==================== PAGE HEADER (for underpages) ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #38bdf8 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.page-header-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.page-header-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.page-header-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-50);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-dark .section-label {
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-dark .section-description {
    color: var(--gray-400);
}

/* ==================== CARDS ==================== */
.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Card in dark section */
.section-dark .card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.section-dark .card h3 {
    color: var(--white);
}

.section-dark .card p {
    color: var(--gray-400);
}

/* Contact card variant */
.contact-card {
    text-align: center;
    padding: 40px 32px;
}

.contact-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

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

/* Value card variant */
.value-card {
    padding: 40px 32px;
    height: 100%;
}

.value-card .card-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
}

/* Team card variant */
.team-card {
    text-align: center;
    padding: 40px 32px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 15px;
    color: var(--gray-600);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-size: 30px 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== TIMELINE/MILESTONES ==================== */
.milestone {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

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

.milestone-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.milestone-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 600px) {
    .milestone {
        flex-direction: column;
        text-align: center;
    }
    .milestone-icon {
        margin: 0 auto;
    }
}

/* ==================== GRIDS ==================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==================== CONTENT STYLES (for privacy/terms) ==================== */
.content-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .content-card {
        padding: 32px 24px;
    }
}

.content-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-card p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-card ul, .content-card ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-card li {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-card a {
    color: var(--primary);
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

/* ==================== HIGHLIGHT BOXES ==================== */
.highlight-box {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.highlight-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.highlight-box p {
    margin-bottom: 8px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Warning box */
.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--warning);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 32px 0;
}

.warning-box i {
    font-size: 2.5rem;
    color: var(--warning);
    margin-bottom: 16px;
}

.warning-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.warning-box p {
    color: #92400e;
    margin: 0;
}

/* Info box */
.info-box {
    background: linear-gradient(135deg, rgba(5, 109, 221, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 2px solid var(--primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 32px 0;
}

.info-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

/* Success box */
.success-box {
    background: #d1fae5;
    border-left: 4px solid var(--green);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
}

.success-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
}

.success-box p {
    color: #065f46;
    margin: 0;
}

/* Last updated banner */
.last-updated {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.last-updated i {
    font-size: 1.25rem;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question[aria-expanded="true"] {
    background: var(--primary);
    color: var(--white);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 109, 221, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

.form-text {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-check-label {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ==================== DATA LIST (for delete account) ==================== */
.data-list {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.data-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.data-list-item:last-child {
    margin-bottom: 0;
}

.data-list-item i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.data-list-item span {
    font-size: 15px;
    color: var(--gray-700);
}

.data-list-item strong {
    color: var(--dark);
}

/* ==================== SUPPORT HOURS BOX ==================== */
.support-hours {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.support-hours h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-hours p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.support-hours small {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.8;
}

/* ==================== TWO COLUMN LAYOUT ==================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.two-col-visual {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.two-col-visual i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.two-col-visual h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.two-col-visual p {
    color: var(--gray-600);
    margin: 0;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    height: 28px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--gray-400);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-contact {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 16px;
}

.footer-contact p {
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

/* App buttons */
.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.app-btn i {
    font-size: 20px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-small {
    font-size: 10px;
    opacity: 0.8;
}

.app-btn-large {
    font-size: 13px;
    font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== EMERGENCY SECTION ==================== */
.emergency-section {
    background: var(--dark-secondary);
    padding: 80px 0;
}

.emergency-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.emergency-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.emergency-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.emergency-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.emergency-card p {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.emergency-card a {
    color: var(--white);
    font-weight: 600;
}

.emergency-card a:hover {
    color: var(--primary-light);
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-600 {
    max-width: 600px;
}
