/* BeautySync Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
    /* Color Palette - Premium Redesign */
    --color-primary: #0a0a0a;
    /* Richer Black */
    --color-secondary: #c69c6d;
    /* Gold */
    --color-secondary-light: #e5cfb7;
    --color-accent: #d4a373;
    --color-bg-body: #ffffff;
    --color-bg-surface: #faf9f6;
    /* Off-white "Alabaster" */
    --color-text-main: #2c2c2c;
    --color-text-muted: #6e6e6e;
    --color-border: #eaeaea;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    /* More breathing room */
    --spacing-xl: 10rem;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.06);
    --radius-sm: 4px;
    /* Sharper, more elegant */
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.dark-mode {
    --color-primary: #ffffff;
    --color-secondary: #d4a574;
    /* Lighter gold for contrast */
    --color-bg-body: #121212;
    --color-bg-surface: #1e1e1e;
    --color-text-main: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Dark Mode Logo Switching */
body.dark-mode .logo-dark {
    display: none !important;
}

body.dark-mode .logo-white {
    display: block !important;
}

/* Fix Primary Button Text in Dark Mode */
body.dark-mode .btn-primary {
    color: #000 !important;
}

body.dark-mode .btn-primary:hover {
    color: #fff !important;
}

/* Dark Mode Splash Screen */
body.dark-mode #splash-screen {
    color: #000 !important;
}

/* Dark Mode Splash Screen */
body.dark-mode #splash-screen {
    background-color: #121212;
}

/* Dark Mode User Dropdown */
body.dark-mode .user-dropdown {
    background: #1e1e1e;
    border-color: #333;
}

body.dark-mode .user-dropdown a {
    border-bottom-color: #333;
    /* text color comes from global var(--color-text-main) */
}

body.dark-mode .user-dropdown a:hover {
    background-color: #2d2d2d;
    color: #fff;
}

/* Dark Mode Specific Tweaks */
body.dark-mode .mobile-nav,
body.dark-mode .desktop-nav {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .desktop-nav.scrolled {
    background: rgba(30, 30, 30, 0.98);
}

body.dark-mode .service-card,
body.dark-mode .auth-card,
body.dark-mode .profile-card,
body.dark-mode .appointment-card,
body.dark-mode .empty-state {
    background: #1E1E1E;
    border-color: #333;
}

body.dark-mode .input-field,
body.dark-mode .country-code {
    background: #2d2d2d;
    border-color: #444;
    color: #fff;
}

body.dark-mode .btn-secondary {
    border-color: #fff;
    color: #fff;
}

body.dark-mode .btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-secondary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--color-secondary);
}

input:checked+.slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Smooth Theme Transition */
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-text-size-adjust: 100%;
    /* Prevent OS scaling */
    text-size-adjust: 100%;
}

/* Add smooth transitions to key components */
.service-card,
.auth-card,
.profile-card,
.appointment-card,
.page-header,
.mobile-nav,
.desktop-nav,
.input-field,
.btn-secondary {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Inputs */
.form-group {
    margin-bottom: var(--spacing-sm);
}

.input-field {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-bg-surface);
}

.input-field:focus {
    border-color: var(--color-primary);
    background-color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Mobile Navigation (Sticky Bottom) */
.mobile-nav {
    display: none;
    /* Hidden on Desktop by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-nav ul {
    display: flex;
    justify-content: center;
    /* or space-between, but flex:1 on children handles distribution */
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.mobile-nav ul li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    gap: 2px;
}

.mobile-nav-item i {
    font-size: 1.25rem;
}

.mobile-nav-item.active {
    color: var(--color-primary);
}

/* Desktop Navigation */
.desktop-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* Default White */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

/* Home Page Transparent Nav */
.desktop-nav.home-nav {
    position: fixed;
    /* Overlay */
    background: rgba(0, 0, 0, 0.3);
    /* Black tint */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    position: relative;
    height: 50px;
    width: 60px;
    /* Reduced width to fit text next to it, assuming logo is icon-like */
    /* Previously 200px was likely for a full wordmark. If the image is wide, this might clip or overlap. */
    /* Let's check the image aspect ratio. If it's a square logo, 60px is fine. */
    /* If it's a long text logo, adding text next to it is redundant but user requested it. */
    /* I'll use auto width and max-width to be safe, or just rely on flex. */
    width: auto;
    min-width: 50px;
    display: flex;
    align-items: center;
}

.desktop-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    /* Default Theme Color */
    white-space: nowrap;
    transition: color 0.4s ease;
}

/* Home Page Transparent State: White Text */
.desktop-nav.home-nav:not(.scrolled) .desktop-brand-name {
    color: #fff;
}

.logo img {
    height: 81px;
    /* Requested size */
    width: auto;
    position: absolute;
    /* Take out of flow to prevent pushing navbar height */
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain;
}

/* Default State: Show Dark, Hide White */
.logo-dark {
    display: block;
}

.logo-white {
    display: none;
}

/* Home Page Transparent State: Show White, Hide Dark */
.desktop-nav.home-nav:not(.scrolled) .logo-dark {
    display: none;
}

.desktop-nav.home-nav:not(.scrolled) .logo-white {
    display: block;
}

.desktop-nav.scrolled .logo {
    color: var(--color-primary);
    /* Switch to black on scroll */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: var(--color-text-main);
    /* Default Dark */
    transition: color 0.4s ease;
}

/* White links ONLY on home nav when NOT scrolled */
.desktop-nav.home-nav:not(.scrolled) .nav-links a:not(.btn) {
    color: #fff;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--color-secondary);
}

.nav-links a:hover {
    color: var(--color-primary);
    /* Keep text dark/sharp */
}

/* Scroll Snap Alignment for Main Sections */


/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    html {
        font-size: 75%;
        /* Custom compact size for Realme GT 2 Pro & similar */
    }

    .mobile-nav {
        display: block;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }
}

/* Premium Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    border-left-color: #d32f2f;
}

.toast.success {
    border-left-color: #2e7d32;
}

.toast-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.toast.error .toast-icon {
    color: #d32f2f;
}

.toast.success .toast-icon {
    color: #2e7d32;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-primary);
}

.toast-message {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Premium Splash Screen */
#splash-screen {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash-screen.splash-hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-spinner {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(198, 156, 109, 0.2);
    /* Light gold trail */
    border-top: 3px solid var(--color-secondary);
    /* Solid gold head */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.splash-logo {
    width: 60px;
    /* Sits nicely inside 120px spinner */
    height: auto;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

/* User Menu & Dropdown */
.user-menu {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    padding: 5px 0;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    /* Default Dark */
    transition: var(--transition);
}

/* White user name ONLY on home nav when NOT scrolled */
.desktop-nav.home-nav:not(.scrolled) .user-name {
    color: #fff;
}


.user-name:hover {
    color: var(--color-secondary);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Softer border */
    border-top: 3px solid var(--color-secondary);
    /* Premium accent */
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    /* Deeper, softer shadow */
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    overflow: hidden;
    padding: 0.5rem 0;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 0.95rem;
    color: var(--color-text-main) !important;
    /* Force dark color even in home-nav */
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-item-row {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-item-row:hover {
    background-color: #fcfcfc;
    padding-left: 28px !important;
    /* Movement effect */
}

/* Dark Mode functionality for new row */
body.dark-mode .dropdown-item-row:hover {
    background-color: #2d2d2d;
}

body.dark-mode .dropdown-item-row {
    border-bottom-color: #333;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background-color: #fcfcfc;
    color: var(--color-primary);
    padding-left: 28px;
    /* Slight movement */
}

/* User Menu Arrow Rotation */
.user-menu:hover .ri-arrow-down-s-line {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Override any nav link specific styles for dropdown items */
.nav-links .user-dropdown a::after {
    display: none;
}

/* Premium Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* RTL Support (Arabic) */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .margin-left-auto {
    margin-right: auto;
    margin-left: initial;
}

html[dir="rtl"] .input-field {
    text-align: right;
}

html[dir="rtl"] .btn i,
html[dir="rtl"] .user-name i {
    margin-left: 8px;
    margin-right: 0;
}

html[dir="rtl"] .user-dropdown {
    right: auto;
    left: 0;
    text-align: right;
}

html[dir="rtl"] .user-dropdown a,
html[dir="rtl"] .dropdown-item-row {
    flex-direction: row-reverse;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.modal-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--color-bg-surface);
    border-color: var(--color-text-main);
}

/* Dark Mode Modal Overrides */
body.dark-mode .modal-content {
    background: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

body.dark-mode .btn-ghost {
    border-color: #444;
    color: #e0e0e0;
}

body.dark-mode .btn-ghost:hover {
    background: #333;
    border-color: #fff;
    color: #fff;
}

/* Dark Mode Toast Overrides */
body.dark-mode .toast {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Mobile Top Bar */
.mobile-top-bar {
    display: none;
    /* Hidden by default */
}

@media (max-width: 768px) {
    .mobile-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: absolute;
        /* Overlay on hero */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
        /* Vignette effect */
    }

    .mobile-top-bar .brand-name {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        /* Always white */
    }

    /* Force white text/logo if logic demands it, but user said "according to darkmode". */
    /* I will trust `var(--color-primary)` which is Black in Light Mode, White in Dark Mode. */
    /* And the Logos switch automatically via global classes. */

    .mobile-top-bar .logo-container img {
        height: 40px;
        width: auto;
    }
}

/* BeautySync Promotion Section */
.beautysync-promo {
    background: #f8f9fa;
    /* Light mode background */
    padding: 6rem 0;
    color: var(--color-text-main);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

body.dark-mode .beautysync-promo {
    background: #050505;
    color: #fff;
}

.beautysync-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

body.dark-mode .beautysync-promo::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.promo-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.promo-logo {
    margin-bottom: 2rem;
}

.promo-logo img {
    height: 120px;
    width: auto;
    margin: 0 auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.promo-logo img:hover {
    opacity: 1;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #333, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-mode .promo-title {
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

body.dark-mode .promo-desc {
    color: rgba(255, 255, 255, 0.7);
}

.promo-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 1.8rem;
    }
}