/* Modern Theme Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #f3df9a;
    --blue-dark: #0B3C5D;
    --ink: #0b1220;
    --muted: #5f6b75;
    --surface: #fffdf8;
    --surface-soft: #faf6ec;
    --border: #e9dfc4;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    ;
}

body {
    color: var(--ink);
    background: linear-gradient(180deg, #f7f1e3 0%, #fffdf8 32%, #f9f4e8 100%);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.top-glow {
    position: absolute;
    top: -180px;
    right: -130px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(196, 154, 58, 0.2) 0%, rgba(196, 154, 58, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1300px;
    padding: 0 18px;
    margin: 0 auto;
}

.gold-gradient {
    /*background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #f97316 100%);*/
    background-color: tomato;
    font-weight: 700;
    color: whitesmoke;
}

.text-gradient-gold {
    background: linear-gradient(to right, #b88d2c, #f2e2b7, #a17b24);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(11, 60, 93, 0.88) 0%, rgba(11, 60, 93, 0.74) 38%, rgba(11, 60, 93, 0.22) 100%);
}

.glass-panel {
    background: linear-gradient(145deg, rgba(11, 60, 93, 0.76), rgba(11, 60, 93, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(5px);
}

.modern-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.nav-shell {
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.24);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(11, 60, 93, 0.1);
}

.nav-modern {
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 250, 238, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 10px 30px rgba(11, 60, 93, 0.14);
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #ffd87a 0%, #f59e0b 55%, #d97706 100%);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.16);
    flex-shrink: 0;
}

.nav-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    position: relative;
    color: #4b5563;
    transition: color .2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #f59e0b;
    transition: width .25s ease;
}

.nav-link:hover {
    color: #0B3C5D;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.mini-stat {
    background: #fffdf8;
    border: 1px solid #eadfbe;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11, 60, 93, 0.06);
}

.mini-stat h4 {
    font-size: 1.05rem;
    color: #0B3C5D;
    font-weight: 800;
    line-height: 1.2;
}

.mini-stat p {
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.03em;
}

.section-title {
    color: #0B3C5D;
    letter-spacing: -0.02em;
}

.soft-input,
.soft-select {
    border-radius: 12px;
    border: 1px solid #decfa7;
    background: #fffdf7;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.soft-input:focus,
.soft-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.clean-btn {
    border-radius: 12px;
    /*box-shadow: 0 10px 22px rgba(217, 119, 6, 0.35);*/
}

.benefit-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.benefit-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.review-band {
    background: linear-gradient(140deg, #0B3C5D, #14527d 55%, #1c6596);
}

.trust-strip {
    background: #fffdf8;
    border: 1px solid #e6dcc1;
    border-radius: 16px;
}

.swiper-slide .modern-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.swiper-slide:hover .modern-card {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    border: 1px solid #e4d9b7;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(11, 60, 93, 0.18);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity .25s ease, transform .25s ease;
}

.mobile-sticky-cta-hidden {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 15px);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.scroll-bounce {
    animation: bounceSlow 2s infinite;
}

/* Custom color utility for Tailwind if not detected */
.text-gold-light {
    color: var(--gold-light);
}

.border-gold {
    border-color: var(--gold);
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        ;
    }

    .container {
        padding: 0 14px;
    }

    .feature-pill {
        font-size: 11px;
        padding: 7px 12px;
    }

    #toast {
        right: 14px;
        left: 14px;
        bottom: 78px;
        width: auto;
    }

    .glass-panel {
        border-radius: 16px;
        padding: 20px 16px;
    }

    .mini-stat {
        padding: 12px 8px;
    }

    .mini-stat h4 {
        font-size: 0.95rem;
    }

    .mini-stat p {
        font-size: 11px;
    }

    .nav-modern {
        border-radius: 14px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .brand-dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
    }

    .nav-logo {
        height: 30px;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}