/* =======================
   GLOBAL STYLES
======================= */
* {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    --bg: #f8fafc;
    --bg-card: #fff;
    --bg-input: #f3f4f6;
    --bg-secondary: #ffffff;
    --text: #111827;
    --text-muted: #64748b;
    --primary: #7c3aed;
    --border: #e5e7eb;
    --shadow: rgba(0,0,0,0.05);

    background: var(--bg);
    color: var(--text);
}


a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.trust-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    margin-top:80px;
}

/* =======================
   HEADER
======================= */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    height: 40px; /* ან რამდენიც ჰედერს გაქვს */
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}


/* NAVIGATION */
.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #1e293b; /* default text */
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #7C3AED; /* subtle purple underline */
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav a:hover {
    color: #7C3AED; /* subtle purple text */
}

.nav a:hover::after {
    width: 100%;
}


/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: #1e293b;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: start;
        padding: 80px 20px 20px;
        gap: 20px;
        box-shadow: -4px 0 12px rgba(0,0,0,0.05);
        transition: right 0.3s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
    }
}


/* =======================
   HERO
======================= */
/* --- HERO FIXED STRUCTURE --- */
.hero-fixed {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-container {
    max-width: 1200px; /* არ გაიწელება მთელ ეკრანზე */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
}

.hero-text-block {
    flex: 0 0 55%; /* იკავებს ზუსტად 55%-ს */
    text-align: left;
}

.hero-visual-fixed {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* Badge */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f3ff;
    color: #4f46e5;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.dot-blink {
    width: 8px; height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* Typography */
.hero-text-block h1 {
    font-size: 52px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

.typewriter { color: #4f46e5; border-right: 3px solid #4f46e5; }

.hero-text-block p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Buttons (Fixed) */
.hero-actions-fixed {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-indigo {
    background: #4f46e5;
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ghost {
    background: #f3f4f6;
    color: #374151;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-indigo:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2); }

/* --- VISUAL ELEMENTS --- */
.visual-card-main {
    width: 300px; height: 300px;
    background: #f9fafb;
    border-radius: 60px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border: 1px solid #f1f5f9;
}

.visual-circle {
    width: 80px; height: 80px;
    background: #4f46e5;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.floating-item {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #eee;
}

.fi-1 { top: -20px; right: -20px; animation: float 5s infinite ease-in-out; }
.fi-2 { bottom: 20px; left: -40px; animation: float 5s infinite ease-in-out reverse; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-block {
        flex: 0 0 100%;
        margin-bottom: 60px;
    }

    .hero-text-block h1 { font-size: 36px; }
    .hero-text-block p { margin: 0 auto 30px; }
    
    .hero-actions-fixed {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-indigo, .btn-ghost { width: 100%; text-align: center; }

    .hero-visual-fixed {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .visual-card-main { transform: scale(0.8); }
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }


/* =======================
   FLOWS SECTION
======================= */
/* --- FLOWS SECTION --- */
.flows {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.flows-title {
    margin-bottom: 50px;
    text-align: center;
}

.flows-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

/* Grid სისტემა */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* ქარდის დიზაინი */
.flow-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #edf0f3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex; /* მნიშვნელოვანია სიმეტრიისთვის */
}

.card-inner {
    padding: 35px;
    display: flex;
    flex-direction: column; /* ელემენტები ვერტიკალურად */
    width: 100%;
}

/* ჰოვერ ეფექტი */
.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #6366f1;
}

/* აიქონი */
.flow-icon {
    width: 60px;
    height: 60px;
    background: #f0f2ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.flow-icon img {
    width: 30px;
    height: 30px;
}

.flow-card:hover .flow-icon {
    background: #6366f1;
}

.flow-card:hover .flow-icon img {
    filter: brightness(0) invert(1);
}

/* ტექსტური ნაწილი */
.flow-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.flow-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px; /* დაშორება ღილაკამდე */
}

/* --- სტრუქტურის გასწორება --- */
.card-footer {
    margin-top: auto; /* აგდებს ღილაკს სულ ქვემოთ, მიუხედავად ტექსტის სიგრძისა */
}

.flow-btn {
    width: 100%;
    height: 54px;
    background: #f8f9fb;
    border: none;
    border-radius: 14px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.flow-card:hover .flow-btn {
    background: #6366f1;
    color: #ffffff;
}

.flow-btn svg {
    transition: transform 0.3s;
}

.flow-card:hover .flow-btn svg {
    transform: translateX(5px);
}

/* Coming Soon სტილი */
.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.flow-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fef3c7;
    color: #d97706;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =======================
   HOW IT WORKS
======================= */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hiw-step {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hiw-step:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(124, 58, 237,0.15);
}

.hiw-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ფერის კონტროლი CSS-ით */
    filter: none; /* თუ SVG-ში ფერი არაა */
}

/* ფერადი ეფექტის დამატება უნიკალური თითოეული იკონისთვის */
.hiw-step:nth-child(1) .hiw-icon img { filter: invert(42%) sepia(74%) saturate(400%) hue-rotate(270deg) brightness(90%) contrast(95%); } /* purple */
.hiw-step:nth-child(2) .hiw-icon img { filter: invert(50%) sepia(72%) saturate(400%) hue-rotate(180deg) brightness(95%) contrast(90%); } /* blue */
.hiw-step:nth-child(3) .hiw-icon img { filter: invert(52%) sepia(72%) saturate(400%) hue-rotate(90deg) brightness(95%) contrast(90%); } /* green */
.hiw-step:nth-child(4) .hiw-icon img { filter: invert(55%) sepia(65%) saturate(500%) hue-rotate(0deg) brightness(95%) contrast(90%); } /* orange */


.hiw-step h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #111;
}

.hiw-step p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
/* =======================
   TRUST / TESTIMONIALS
======================= */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.trust-card {
    background: #fff;
    padding: 30px 24px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(124, 58, 237,0.12);
}

.trust-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.trust-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-card p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.trust-card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}


/* =======================
   WIZARD & RESULT
======================= */
.wizard, .result {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard .container, .result .container {
    max-width: 600px;
    text-align: center;
}

.wizard h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1e293b;
}

.wizard .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.wizard .options button {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg,#7c3aed,#c084fc);
    color: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wizard .options button:hover {
    background: linear-gradient(135deg,#c084fc,#7c3aed);
    transform: translateY(-2px);
}

.result-card {
    background: linear-gradient(135deg, #ffffff, #f8f4ff); /* მსუბუქი gradient */
    padding: 28px 24px;
    margin-bottom: 20px;
    border-radius: 20px; /* უფრო რბილი კუთხეები */
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08); /* ფერი subtle purple */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(124, 58, 237, 0.12);
}

.result-card h3, .result-card h4 {
    margin: 0;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.result-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}


.result .primary-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed, #c084fc);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(124, 58, 237,0.15);
}

.result .primary-btn:hover {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(124, 58, 237,0.25);
}


/* =======================
   PROGRESS
======================= */
.progress-wrapper {
    margin-bottom: 24px;
}

.progress-bar {
    width: 100%;
    height: 12px; /* მეტი სიმაღლე human-friendly */
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #c084fc);
    transition: width 0.4s ease;
    border-radius: 999px;
}

.progress-text {
    margin-top: 8px;
    font-size: 13px;
    text-align: right;
    color: #6b7280;
    font-weight: 500;
}



/* =======================
   FOOTER
======================= */
.footer {
    background-color: #f8fafc;
    color: #333333;
    padding: 20px 0;
    margin-top:80px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
}

.footer-right a {
    color: #555555;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: #000000;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    min-height: 100vh;
}

/* HERO */
.contact-hero {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-subtitle {
    max-width: 600px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
}

/* CONTENT */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* CONTACT INFO */
.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 20px;
}

.contact-list .label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-list a {
    color: var(--primary);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-primary {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    font-size: 15px;
}

.form-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 50px 0 30px;
    }
}


@media (max-width: 600px) {
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        margin-top: 10px;
    }
    .footer-right a {
        margin-left: 0;
        margin-right: 15px;
    }
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .hero-inner h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .hero-inner h1 { font-size: 34px; }
    .flow-grid { grid-template-columns: 1fr; }
    .hiw-step h3 {
        font-size: 1.15rem;
    }
    .hiw-step p {
        font-size: 0.95rem;
    }
    .hiw-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 15px;
    }
    .hero-illustration {
        margin-top: 20px;
    }
    .flow-card {
        padding: 2rem 1.5rem;
    }

    .flow-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 1rem;
    }

    .flow-icon img {
        width: 20px;
        height: 20px;
    }

    .flow-card h3 {
        font-size: 1.2rem;
    }

    .flow-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .flows { padding: 3rem 1rem; }
    .hero { padding: 3rem 1rem; }
    .hiw-grid {
        gap: 20px;
    }
    .hiw-step {
        padding: 2rem 1.5rem;
    }
}
/* DARK MODE VARIABLES */
body.dark-mode {
    --bg: #0b0f19;
    --bg-card: #111827;
    --bg-input: #1f2937;
    --bg-secondary: #111827;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --primary: #7c3aed;
    --border: #1f2937;
    --shadow: rgba(0,0,0,0.6);
}


/* APPLY DARK MODE */
body {
    background: var(--bg);
    color: var(--text);
}

.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 6px var(--shadow);
}

.nav a {
    color: var(--text);
}

.nav a:hover {
    color: var(--primary);
}

.burger span {
    background: var(--text);
}

.hero-fixed {
    background: var(--bg);
}

.badge-new {
    background: rgba(124,58,237,0.15);
    color: var(--primary);
}

.dot-blink {
    background: var(--primary);
}

.hero-text-block h1 {
    color: var(--text);
}

.hero-text-block p {
    color: var(--text-muted);
}

.btn-indigo {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.visual-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.floating-item {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.flows {
    background-color: var(--bg-card);/* dark background */
}


.flow-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.flow-card h3 {
    color: var(--text);
}

.flow-card p {
    color: var(--text-muted);
}

.flow-icon {
    background: rgba(124,58,237,0.15);
}

.flow-btn {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

.flow-card:hover .flow-btn {
    background: var(--primary);
    color: #fff;
}

.hiw-step {
    background: var(--bg-card);
    box-shadow: 0 8px 20px var(--shadow);
}

.hiw-step h3 {
    color: var(--text);
}

.hiw-step p {
    color: var(--text-muted);
}

.trust-card {
    background: var(--bg-card);
    box-shadow: 0 8px 20px var(--shadow);
}

.trust-card p {
    color: var(--text-muted);
}

.trust-card span {
    color: var(--text);
}

.result-card {
    background: linear-gradient(135deg, #111827, #151c2f);
}

.result-card h3,
.result-card h4 {
    color: var(--text);
}

.result-card p {
    color: var(--text-muted);
}

.progress-bar {
    background: var(--border);
}

.progress-fill {
    background: linear-gradient(90deg, #7c3aed, #c084fc);
}

.progress-text {
    color: var(--text-muted);
}

.footer {
    background: var(--bg-card);
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.footer-right a {
    color: var(--text-muted);
}

.footer-right a:hover {
    color: var(--text);
}

.contact-hero,
.contact-form-wrapper {
    background: var(--bg-card);
}

.contact-subtitle,
.contact-info p,
.form-note {
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg-input);
    border-color: var(--border);
    color: var(--text);
}

.contact-list a {
    color: var(--primary);
}
#darkModeToggle {
    padding: 8px 16px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
