/* =========================
   Basic Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   Page Background + Base
========================= */
body {
    background: radial-gradient(circle at top, #1d2b55 0, #020617 45%, #000000 100%);
    color: #e5e7eb;
    min-height: 100vh;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

/* Let gradient show (no solid grey block) */
.section-soft {
    background: transparent;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #f9fafb;
    font-weight: 600;
}

.section-subtitle {
    color: #9ca3af;
    max-width: 640px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================
   Header & Navigation
========================= */
header {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

/* Theme-aware logo switching */
.logo-light { display: none; }
body.light .logo-dark { display: none; }
body.light .logo-light { display: block; }

/* Nav links */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-actions-mobile {
    display: none;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #e5e7eb;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(37, 99, 235, 0.25);
    color: #bfdbfe;
    border-color: #60a5fa;
    transform: scale(1.05);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(16px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.3);
        border-bottom: 1px solid rgba(148, 163, 184, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-out;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        z-index: 9999;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        color: #e5e7eb;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .nav-links a:hover {
        background: rgba(37, 99, 235, 0.3);
        color: #bfdbfe;
        padding-left: 28px;
    }

    .nav-links a.active {
        background: rgba(37, 99, 235, 0.4);
        color: #bfdbfe;
        border-left: 4px solid #2563eb;
        padding-left: 24px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        flex: 0;
        justify-content: flex-end;
    }

    .nav-actions {
        display: none !important;
    }

    .nav-divider {
        height: 1px;
        background: rgba(148, 163, 184, 0.2);
        margin: 8px 0;
        list-style: none;
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 16px 24px;
        list-style: none;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
    }

    .nav-actions-mobile .btn {
        flex: 1;
        padding: 10px 14px;
        font-size: 0.9rem;
        text-align: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    text-decoration: none;
    color: #e5e7eb;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #bfdbfe;
    transform: translateY(-1px);
}

.nav-links a.active {
    background: rgba(37, 99, 235, 0.3);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* =========================
   Buttons
========================= */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: #60a5fa;
    color: #e5e7eb;
}

.btn-outline:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #e5e7eb;
}

.btn-ghost:hover {
    background: rgba(148, 163, 184, 0.15);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-light {
    background: #e5e7eb;
    color: #020617;
}

.btn-light:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 231, 235, 0.4);
}

.full-width {
    width: 100%;
}

/* =========================
   Hero Section
========================= */
.hero {
    width: 1440px;
    height: 700px;
    padding-top: 80px;
    padding-bottom: 60px;
    background-image: linear-gradient(rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.5)), url('Dark.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f9fafb;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Hero card area */
.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 360px;
}

/* =========================
   Cards & Grids (Glassmorphism)
========================= */
.card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    transition: all 0.3s ease;
    color: #e5e7eb;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.9);
    border-color: #60a5fa;
    background: rgba(15, 23, 42, 0.95);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #f9fafb;
    font-weight: 600;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.card-main {
    border: 2px solid #60a5fa;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
}

.card-main:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.4);
}

/* Pricing text */
.price {
    font-size: 2rem;
    margin: 16px 0;
    color: #f9fafb;
    font-weight: 700;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    font-weight: 600;
}

.period {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-top: 12px;
    padding-left: 0;
}

.feature-list li {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

/* Hero file list */
.file-list {
    list-style: none;
    margin: 16px 0;
}

.file-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.2s ease;
}

.file-list li:last-child {
    border-bottom: none;
}

.file-list li:hover {
    padding-left: 8px;
    color: #bfdbfe;
}

.small {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 12px;
    display: block;
}

/* =========================
   Stats Section
========================= */
.stats-section {
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px;
    gap: 6px;
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(148, 163, 184, 0.2);
    flex-shrink: 0;
}

/* =========================
   Feature Cards
========================= */
.feature-card {
    text-align: left;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 8px;
}

/* =========================
   How It Works / Steps
========================= */
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #60a5fa;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.8);
    background: rgba(15, 23, 42, 0.95);
}

.step-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(96, 165, 250, 0.3);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
}

.step-arrow {
    font-size: 1.8rem;
    color: rgba(96, 165, 250, 0.4);
    padding: 0 20px;
    flex-shrink: 0;
}

/* =========================
   Testimonials
========================= */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #d1d5db;
    font-size: 0.97rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #f9fafb;
    font-weight: 600;
}

.author-role {
    font-size: 0.82rem;
    color: #6b7280;
}

/* =========================
   CTA Section
========================= */
.cta-section {
    padding-bottom: 20px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.1) 100%);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-box > p {
    color: #9ca3af;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-actions .btn {
    padding: 13px 28px;
    font-size: 1rem;
}

.cta-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* =========================
   Contact Section
========================= */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
}

.info-line {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-top: 16px;
    color: #e5e7eb;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    transition: all 0.3s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6b7280;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    background: rgba(15, 23, 42, 0.95);
}

.form-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* =========================
   Footer
========================= */
footer {
    background: transparent;
    color: #9ca3af;
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(55, 65, 81, 0.6);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-row p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #e5e7eb;
    transform: translateY(-1px);
}

/* =========================
   Animations
========================= */
.section,
.hero-card,
.card {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive Tweaks
========================= */

/* Tablet Devices */
@media (max-width: 992px) {
    .container {
        width: 92%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-layout,
    .contact-layout,
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 0;
    }

    .hero {
        width: 100%;
        height: auto;
        min-height: 420px;
        padding-top: 40px;
        padding-bottom: 40px;
        background-size: cover;
        background-position: center center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-panel {
        justify-content: center;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Stats responsive */
    .stats-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1px);
        padding: 24px 16px;
        min-width: 140px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Steps responsive */
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
        font-size: 1.4rem;
    }

    /* CTA responsive */
    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.7rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

/* =========================
   Theme Toggle Button
========================= */
.theme-toggle {
    padding: 8px 11px;
    font-size: 1.15rem;
    line-height: 1;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: inherit;
}

.theme-toggle:hover {
    background: rgba(37, 99, 235, 0.22);
    border-color: #60a5fa;
    transform: scale(1.12) rotate(18deg);
}

/* =========================
   Light Theme Overrides
========================= */
body.light {
    background: radial-gradient(circle at top, #dbeafe 0%, #f0f9ff 50%, #f8fafc 100%);
    color: #1e293b;
}

body.light .hero {
    background-image: linear-gradient(rgba(240, 249, 255, 0.45), rgba(240, 249, 255, 0.45)), url('Light.png');
}

body.light header {
    background: rgba(248, 250, 252, 0.97);
    border-bottom-color: rgba(100, 116, 139, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

body.light .menu-toggle {
    color: #1e293b;
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.2);
}

body.light .menu-toggle:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.14);
    border-color: #2563eb;
}

body.light .theme-toggle {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.2);
}

body.light .nav-links a {
    color: #1e293b;
}

body.light .nav-links a:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.09);
}

body.light .nav-links a.active {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.12);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

body.light .btn-ghost {
    color: #1e293b;
}

body.light .btn-ghost:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #0f172a;
}

body.light .btn-outline {
    border-color: #2563eb;
    color: #1e293b;
}

body.light .btn-outline:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

body.light .section-title {
    color: #0f172a;
}

body.light .section-subtitle {
    color: #64748b;
}

body.light .hero-text h1 {
    color: #0f172a;
}

body.light .hero-subtitle {
    color: #475569;
}

body.light .hero-note {
    color: #64748b;
}

body.light .card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(100, 116, 139, 0.22);
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

body.light .card:hover {
    background: rgba(255, 255, 255, 0.99);
    border-color: #3b82f6;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

body.light .card h3 {
    color: #0f172a;
}

body.light .card p {
    color: #475569;
}

body.light .card-main {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

body.light .card-main:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
}

body.light .file-list li {
    border-bottom-color: rgba(100, 116, 139, 0.18);
}

body.light .file-list li:hover {
    color: #1d4ed8;
}

body.light .small {
    color: #64748b;
}

body.light .price {
    color: #0f172a;
}

body.light .period {
    color: #64748b;
}

body.light .feature-list li {
    color: #374151;
}

body.light .feature-card p {
    color: #475569;
}

body.light .stats-grid {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(100, 116, 139, 0.18);
}

body.light .stat-item:hover {
    background: rgba(37, 99, 235, 0.05);
}

body.light .stat-label {
    color: #64748b;
}

body.light .stat-divider {
    background: rgba(100, 116, 139, 0.18);
}

body.light .step-card {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(100, 116, 139, 0.18);
}

body.light .step-card:hover {
    background: rgba(255, 255, 255, 0.99);
    border-color: #3b82f6;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

body.light .step-card h3 {
    color: #0f172a;
}

body.light .step-card p {
    color: #475569;
}

body.light .step-number {
    color: rgba(37, 99, 235, 0.25);
}

body.light .testimonial-text {
    color: #374151;
}

body.light .testimonial-author strong {
    color: #0f172a;
}

body.light .author-role {
    color: #64748b;
}

body.light .cta-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(29, 78, 216, 0.04) 100%);
    border-color: rgba(37, 99, 235, 0.22);
}

body.light .cta-box h2 {
    color: #0f172a;
}

body.light .cta-box > p {
    color: #64748b;
}

body.light .cta-note {
    color: #94a3b8;
}

body.light .info-line {
    color: #374151;
}

body.light .contact-form label {
    color: #1e293b;
}

body.light .contact-form input,
body.light .contact-form textarea {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(100, 116, 139, 0.3);
    color: #1e293b;
}

body.light .contact-form input::placeholder,
body.light .contact-form textarea::placeholder {
    color: #94a3b8;
}

body.light .contact-form input:focus,
body.light .contact-form textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

body.light .form-note {
    color: #64748b;
}

body.light footer {
    border-top-color: rgba(100, 116, 139, 0.18);
}

body.light .footer-row p {
    color: #64748b;
}

body.light .footer-links a {
    color: #64748b;
}

body.light .footer-links a:hover {
    color: #1e293b;
}

@media (max-width: 768px) {
    body.light .nav-links {
        background: rgba(248, 250, 252, 0.99);
        border-top-color: rgba(100, 116, 139, 0.18);
        border-bottom-color: rgba(100, 116, 139, 0.18);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    body.light .nav-links a {
        border-bottom-color: rgba(100, 116, 139, 0.14);
        color: #1e293b;
    }

    body.light .nav-links a:hover {
        background: rgba(37, 99, 235, 0.08);
        color: #1d4ed8;
    }

    body.light .nav-links a.active {
        background: rgba(37, 99, 235, 0.1);
        color: #1d4ed8;
        border-left-color: #2563eb;
    }

    body.light .nav-divider {
        background: rgba(100, 116, 139, 0.15);
    }

    body.light .nav-actions-mobile {
        border-top-color: rgba(100, 116, 139, 0.15);
    }
}

/* =========================
   Extra Utilities (Features / Pricing pages)
========================= */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 18px;
}
body.light .section-label {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Two-column alternating feature rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 56px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row-text { flex: 1; }
.feature-row-text h2 { font-size: 1.7rem; font-weight: 700; color: #f9fafb; margin-bottom: 14px; line-height: 1.3; }
.feature-row-text p  { color: #9ca3af; font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.feature-row-panel {
    flex: 1;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    padding: 28px 28px 24px;
    backdrop-filter: blur(12px);
}
.feature-row-panel .panel-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60a5fa;
    margin-bottom: 16px;
}
.feature-row-panel ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-row-panel ul li {
    font-size: 0.92rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-row-panel ul li::before {
    content: '✓';
    color: #34d399;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
body.light .feature-row-text h2 { color: #0f172a; }
body.light .feature-row-text p  { color: #475569; }
body.light .feature-row-panel { background: rgba(248, 250, 252, 0.9); border-color: rgba(100, 116, 139, 0.18); }
body.light .feature-row-panel ul li { color: #334155; }

@media (max-width: 768px) {
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 28px; padding: 36px 0; }
}

/* Platform grid */
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}
.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 24px 32px;
    min-width: 110px;
    transition: all 0.3s ease;
}
.platform-item:hover { border-color: #60a5fa; transform: translateY(-3px); }
.platform-item .p-icon { font-size: 2rem; }
.platform-item span { font-size: 0.85rem; color: #9ca3af; font-weight: 500; }
body.light .platform-item { background: rgba(248, 250, 252, 0.9); border-color: rgba(100, 116, 139, 0.18); }
body.light .platform-item span { color: #64748b; }

/* File type tags */
.file-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;
}
.file-tag {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #93c5fd;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
body.light .file-tag { background: rgba(37, 99, 235, 0.07); border-color: rgba(37, 99, 235, 0.2); color: #1d4ed8; }

/* Feature comparison table */
.compare-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}
.compare-table th, .compare-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th {
    font-weight: 700;
    font-size: 0.9rem;
    color: #f9fafb;
    background: rgba(15, 23, 42, 0.9);
    padding-top: 18px;
    padding-bottom: 18px;
}
.compare-table thead th.highlight { color: #60a5fa; }
.compare-table tbody tr:hover td { background: rgba(96, 165, 250, 0.04); }
.compare-table td { color: #9ca3af; }
.compare-table td:first-child { color: #d1d5db; font-weight: 500; }
.check-yes { color: #34d399; font-size: 1.1rem; font-weight: 700; }
.check-no  { color: #374151; font-size: 1.1rem; }
body.light .compare-table thead th { background: rgba(241, 245, 249, 0.95); color: #0f172a; }
body.light .compare-table thead th.highlight { color: #1d4ed8; }
body.light .compare-table td { color: #64748b; }
body.light .compare-table td:first-child { color: #334155; }
body.light .compare-table tbody tr:hover td { background: rgba(37, 99, 235, 0.04); }

/* Guarantee box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(52, 211, 153, 0.07);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 48px;
}
.guarantee-badge {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    border: 2px solid rgba(52, 211, 153, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.guarantee-box h3 { font-size: 1.1rem; font-weight: 700; color: #f9fafb; margin-bottom: 6px; }
.guarantee-box p  { font-size: 0.9rem; color: #9ca3af; line-height: 1.6; }
body.light .guarantee-box h3 { color: #0f172a; }
body.light .guarantee-box p  { color: #475569; }

/* Billing toggle visual */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    padding: 4px;
    margin: 20px auto 8px;
}
.billing-option {
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
}
.billing-option.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}
.billing-save {
    display: inline-block;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
}
body.light .billing-toggle { background: rgba(241, 245, 249, 0.9); }
body.light .billing-option { color: #64748b; }
body.light .billing-option.active { color: #ffffff; }

/* Value testimonials */
.value-testimonial {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.value-testimonial .quote { font-size: 0.95rem; color: #d1d5db; line-height: 1.75; font-style: italic; }
.value-testimonial .reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.value-testimonial .reviewer strong { font-size: 0.9rem; color: #f9fafb; display: block; }
.value-testimonial .reviewer span { font-size: 0.8rem; color: #6b7280; }
.plan-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #60a5fa;
    margin-left: 8px;
}
body.light .value-testimonial { background: rgba(248, 250, 252, 0.9); border-color: rgba(100, 116, 139, 0.18); }
body.light .value-testimonial .quote { color: #334155; }
body.light .value-testimonial .reviewer strong { color: #0f172a; }
body.light .value-testimonial .reviewer span { color: #64748b; }

/* =========================
   Sign Up Modal
========================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 20px;
    padding: 40px 36px 32px;
    width: 100%;
    max-width: 460px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.modal-close:hover {
    color: #f9fafb;
    background: rgba(148, 163, 184, 0.15);
}

.modal-logo {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1;
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f9fafb;
    text-align: center;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(30, 41, 59, 0.8);
    color: #e5e7eb;
    font-size: 0.93rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder { color: #6b7280; }

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(30, 41, 59, 0.95);
}

.modal-error {
    font-size: 0.85rem;
    color: #f87171;
    min-height: 18px;
    margin-top: 2px;
}

.modal-footer-note {
    font-size: 0.78rem;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.modal-footer-note a {
    color: #60a5fa;
    text-decoration: none;
}

.modal-footer-note a:hover { text-decoration: underline; }

/* Success modal */
.modal-box--success {
    text-align: center;
    padding: 48px 36px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.modal-success-body {
    font-size: 0.92rem;
    color: #9ca3af;
    line-height: 1.75;
    margin-top: 12px;
    text-align: left;
}

.modal-success-body strong { color: #e5e7eb; }

/* Light theme modal overrides */
body.light .modal-box {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(100, 116, 139, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

body.light .modal-title { color: #0f172a; }
body.light .modal-subtitle { color: #64748b; }
body.light .modal-close { color: #64748b; }
body.light .modal-close:hover { color: #0f172a; background: rgba(100,116,139,0.1); }
body.light .form-group label { color: #1e293b; }
body.light .form-group input {
    background: #f8fafc;
    border-color: rgba(100, 116, 139, 0.3);
    color: #1e293b;
}
body.light .form-group input::placeholder { color: #94a3b8; }
body.light .form-group input:focus { background: #fff; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
body.light .modal-success-body { color: #475569; }
body.light .modal-success-body strong { color: #0f172a; }

@media (max-width: 480px) {
    .modal-box { padding: 32px 20px 24px; }
    .modal-box--success { padding: 36px 20px; }
}

/* =========================
   Sign Up Page
========================= */

/* Page layout */
.signup-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signup-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
}

/* Left panel */
.signup-panel {
    background: linear-gradient(160deg, #1e3a8a 0%, #1d4ed8 50%, #0369a1 100%);
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signup-panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.signup-panel-brand img {
    height: 40px;
    width: auto;
}

.signup-panel-body {
    margin-top: 40px;
}

.signup-panel-body h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.signup-panel-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.signup-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.85);
}

.signup-perks li::before {
    content: "\2713";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.signup-panel-footer {
    margin-top: 48px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Right form panel */
.signup-form-panel {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-form-panel h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 6px;
}

.signup-form-panel .form-lead {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 28px;
}

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

.form-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 6px;
}

.form-field input {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(30, 41, 59, 0.7);
    color: #e5e7eb;
    font-size: 0.93rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder { color: #6b7280; }

.form-field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(30, 41, 59, 0.95);
}

.form-field input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.field-error {
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 4px;
    min-height: 16px;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.55;
}

.form-terms input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #2563eb;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-terms a { color: #60a5fa; text-decoration: none; }
.form-terms a:hover { text-decoration: underline; }

.global-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #f87171;
    margin-bottom: 14px;
    display: none;
}

.signup-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #4b5563;
    font-size: 0.8rem;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.15);
}

.signin-prompt {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 18px;
}

.signin-prompt a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

.signin-prompt a:hover { text-decoration: underline; }

/* Success overlay */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.success-overlay.open { display: flex; }

.success-card {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    padding: 52px 44px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
}

.success-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 10px;
}

.success-card .success-sub {
    font-size: 0.97rem;
    color: #9ca3af;
    line-height: 1.75;
}

.success-card .success-sub strong { color: #e5e7eb; }

.success-card .success-message {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.75;
    text-align: left;
}

.success-card .success-message strong { color: #bfdbfe; }

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .signup-wrapper { grid-template-columns: 1fr; }
    .signup-panel   { display: none; }
    .signup-form-panel { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Light theme - Sign Up page */
body.light .signup-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(100, 116, 139, 0.2);
}

body.light .signup-form-panel h1 { color: #0f172a; }
body.light .signup-form-panel .form-lead { color: #64748b; }
body.light .form-field label { color: #334155; }
body.light .form-field input {
    background: #f8fafc;
    border-color: rgba(100, 116, 139, 0.3);
    color: #1e293b;
}
body.light .form-field input::placeholder { color: #94a3b8; }
body.light .form-field input:focus { background: #fff; border-color: #2563eb; }
body.light .signin-prompt { color: #64748b; }
body.light .success-card {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(100, 116, 139, 0.15);
}
body.light .success-card h2 { color: #0f172a; }
body.light .success-card .success-sub { color: #475569; }
body.light .success-card .success-sub strong { color: #0f172a; }
body.light .success-card .success-message { background: rgba(37,99,235,0.05); color: #64748b; }
body.light .success-card .success-message strong { color: #1d4ed8; }
body.light .form-terms { color: #64748b; }