@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,600&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --blue: #1E40AF;
    --blue-light: #3B82F6;
    --deep: #FFFFFF;
    --surface: #F8F9FA;
    --card-bg: #FFFFFF;
    --text: #0F172A;
    /* Deep Navy/Slate */
    --muted: #475569;
    --accent: #1E40AF;
    --font-display: "Cormorant Garamond", serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "DM Mono", monospace;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--deep);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

.section-title {
    font-size: 52px;
    text-align: center;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: rgba(30, 64, 175, 0.4);
    border: 1px solid var(--blue);
}

/* Brand Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader.fade-out {
    transform: translateY(-100%);
    pointer-events: none;
}

.loader-content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: loaderIn 0.8s forwards;
}

@keyframes loaderIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-logo {
    height: 100px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader-name {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shared Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn-gold:hover {
    background-color: var(--blue);
    color: var(--deep);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-filled {
    background-color: var(--blue);
    color: var(--deep);
    border: none;
}

.btn-filled:hover {
    background-color: var(--blue-light);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: height 0.3s ease, background 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brand-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .brand-logo {
    height: 42px;
}

.navbar.scrolled .nav-brand {
    font-size: 22px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--blue);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1005;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    overflow: hidden;
    background: #fff;
}

.hero-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-right: 5%;
    height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    max-width: 80%;
    height: auto;
    transform-origin: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 1px solid var(--blue);
    opacity: 0.08;
    animation: drift 20s linear infinite;
}

.shape.circle {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    top: -10%;
    left: -5%;
}

.shape.hex {
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 10%;
    right: 5%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text);
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--muted);
    max-width: 550px;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blue);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: none;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Trust Banner */
.trust-banner {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    z-index: 10;
    margin-bottom: -1px;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    border-right: 1px solid rgba(30, 64, 175, 0.1);
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.trust-banner.in-view .trust-stat {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat:last-child {
    border-right: none;
}

.t-val {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 10px;
}

.t-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 150px 5%;
    background-color: var(--surface);
    position: relative;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--blue) 50%, transparent 50%);
    background-size: 15px 100%;
    opacity: 0.3;
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease;
}

.how-it-works.in-view .timeline::before {
    transform: scaleX(1);
}

.step-card {
    flex: 1;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--blue);
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step-card:nth-child(even) {
    transform: translateY(60px);
}

.step-card:nth-child(odd) {
    transform: translateY(-60px);
}

.step-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 100px;
    color: var(--blue);
    opacity: 0.15;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
}

.step-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.step-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text);
}

.step-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

/* Plans */
.plans {
    padding: 100px 5%;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.plan-card:nth-child(1) {
    border-color: rgba(184, 134, 11, 0.4);
    background: rgba(184, 134, 11, 0.03);
}

.plan-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 134, 11, 0.6);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.1);
    background: #FFFFFF;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--blue);
    color: var(--deep);
    padding: 5px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-style: italic;
    color: var(--blue);
    margin-bottom: 5px;
}

.plan-value {
    font-family: var(--font-mono);
    font-size: 40px;
    color: var(--blue-light);
    margin-bottom: 30px;
}

.plan-value span {
    font-size: 20px;
    color: var(--muted);
}

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 13px;
    color: var(--muted);
}

.detail-val {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
}

.plan-btn {
    width: 100%;
    border-radius: 8px;
}

/* Why Us */
.why-mithran {
    padding: 100px 5%;
    background-color: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.why-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.why-text.in-view {
    opacity: 1;
    transform: translateX(0);
}

.why-quote {
    font-family: var(--font-display);
    font-size: 42px;
    font-style: italic;
    color: var(--blue);
    line-height: 1.3;
    margin-bottom: 30px;
}

.why-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.link-arrow {
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: none;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.why-features.in-view {
    opacity: 1;
    transform: translateX(0);
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background-color: var(--surface);
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 5%;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 4 - 30px * 4));
    }
}

.test-card {
    width: 350px;
    background: var(--card-bg);
    border-left: 4px solid var(--blue);
    border-radius: 0 16px 16px 0;
    padding: 40px 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--blue);
    opacity: 0.2;
    line-height: 1;
}

.test-text {
    font-size: 16px;
    font-style: italic;
    color: #E8E4DC;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.test-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
}

.test-plan {
    font-size: 13px;
    color: var(--muted);
}

.test-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.stars {
    color: var(--blue);
    font-size: 14px;
    letter-spacing: 2px;
}

.location {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
.contact {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-info.in-view {
    opacity: 1;
    transform: translateY(0);
}

.c-item {
    margin-bottom: 30px;
}

.c-label {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-text {
    font-size: 20px;
    color: var(--text);
    font-family: var(--font-display);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    margin-top: 40px;
}

.contact-form {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.contact-form.in-view {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
    padding: 10px 0;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
}

.form-control::placeholder {
    color: transparent;
}

.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -20px;
    font-size: 12px;
    color: var(--blue);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.4s ease;
}

.form-control:focus~.form-line {
    width: 100%;
}

select.form-control {
    color: var(--text);
}

select.form-control option {
    background: var(--deep);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    background: var(--deep);
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.f-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 25px;
}

.f-logo .brand-logo {
    height: 64px;
}

.f-desc {
    color: var(--muted);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.6;
}

.f-badge {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 12px;
    border-radius: 4px;
    border-style: dashed;
    width: fit-content;
    margin-top: 10px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.s-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.s-icon:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.s-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.f-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text);
    margin-bottom: 25px;
}

.f-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-links a {
    color: var(--muted);
    font-size: 15px;
    transition: color 0.3s ease;
}

.f-links a:hover {
    color: var(--blue);
}

.f-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {

    .plans-grid,
    .why-mithran,
    .contact {
        grid-template-columns: 1fr;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .trust-stat {
        border-right: none;
        border-bottom: 1px solid rgba(30, 64, 175, 0.1);
        padding-bottom: 20px;
    }

    .trust-stat:nth-child(n+3) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 40px;
        height: auto;
    }

    .hero-image-container {
        padding-right: 0;
        margin-top: 30px;
        margin-bottom: 60px;
        height: 300px;
        width: 100%;
        display: block;
        position: relative;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        padding: 0 10%;
    }

    .how-it-works {
        padding: 100px 5%;
    }

    .timeline {
        flex-direction: column;
        padding-left: 40px;
        gap: 50px;
    }

    .timeline::before {
        top: 0;
        left: 15px;
        width: 2px;
        height: 100%;
        background-image: linear-gradient(to bottom, var(--blue) 50%, transparent 50%);
        background-size: 100% 15px;
    }

    .step-card:nth-child(even),
    .step-card:nth-child(odd) {
        transform: translateX(-40px);
    }

    .step-card.in-view {
        transform: translateX(0);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
        padding: 10px;
        cursor: pointer;
        position: relative;
        z-index: 9999;
        pointer-events: auto;
    }

    .mobile-toggle svg {
        pointer-events: none;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .t-val {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .t-label {
        font-size: 11px;
    }

    .trust-stat {
        padding: 0 5px;
        border-right: 1px solid rgba(30, 64, 175, 0.1);
        border-bottom: 1px solid rgba(30, 64, 175, 0.1);
        padding-bottom: 15px;
    }

    .trust-stat:nth-child(even) {
        border-right: none;
    }

    .trust-stat:nth-child(3),
    .trust-stat:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .brand-logo {
        height: 35px;
    }

    .nav-brand {
        font-size: 18px;
        gap: 8px;
    }

    .plan-card {
        padding: 25px;
    }
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease;
    color: var(--text);
    z-index: 10;
}

.modal-close:hover {
    background: var(--blue);
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-title {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--muted);
}

.modal-body {
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

/* Table Styling */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.schedule-table th {
    background: var(--surface);
    text-align: left;
    padding: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    position: sticky;
    top: -1px;
    z-index: 5;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: var(--text);
}

.schedule-table tr:hover {
    background: rgba(30, 64, 175, 0.02);
}

.view-schedule {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 25px;
    display: inline-block;
    cursor: none;
    border-bottom: 1px dashed var(--blue);
    margin-top: -10px;
    transition: all 0.3s ease;
}

.view-schedule:hover {
    color: var(--blue-light);
    border-bottom-style: solid;
    transform: translateX(5px);
}