:root {
    /* Light Theme Palette */
    --bg-light: #f4f7fb;
    --bg-card: rgba(255, 255, 255, 0.7);
    --primary: #0d10c9;
    /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.3);
    --secondary: #fbbf24;
    /* Amber */
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #475569;
    /* Slate 600 */
    --border-color: rgba(255, 255, 255, 1);
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* Soft sophisticated shadow */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Soft light mesh gradient background */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-main);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    /* Clean linear gradient text for light theme */
    background: linear-gradient(135deg, #1e293b, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.internal-link {
    color: var(--primary);
    font-weight: 600;
}

.internal-link:hover {
    text-decoration: underline;
}

/* Glassmorphism Classes (Light Variation) */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Navigation */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary), #f59e0b);
    color: #fff;
    border: none;
    padding: 1.25rem 2.8rem;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-large:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.floating-anim {
    animation: float 5s ease-in-out infinite;
}

.bounce-anim {
    animation: pulse-bounce 3s infinite;
}

/* Layout Blocks */
.content-section {
    padding: 6rem 0;
}

.hero-section {
    padding: 12rem 0 7rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.2rem;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.trust-badge {
    font-size: 0.95rem;
    color: #16a34a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.trust-badge::before {
    content: "✔";
    background: #16a34a;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    padding: 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    border-radius: 20px;
    display: block;
    width: 100%;
}

/* Table Design */
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
}

.premium-table th,
.premium-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: rgba(99, 102, 241, 0.05);
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:hover td {
    background: rgba(99, 102, 241, 0.03);
}

.premium-table td {
    color: var(--text-muted);
}

.premium-table strong {
    color: var(--text-main);
}

/* Timeline/Guide */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3.5rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(99, 102, 241, 0.2);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px 40px;
    position: relative;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 0px;
    background: var(--primary);
    border: 4px solid var(--bg-light);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.timeline-item h3 {
    margin-top: 0;
    color: var(--text-main);
}

.timeline-item p {
    color: var(--text-muted);
}

.timeline-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.timeline-item ul li {
    margin-bottom: 0.5rem;
}

.timeline-item ul li strong {
    color: var(--text-main);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
    background: #f8fafc;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
.glass-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-size: 2.2rem;
    color: var(--text-main);
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Text Center Helper */
.text-center {
    text-align: center;
}

/* Responsiveness */
@media screen and (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-cta {
        align-items: center;
    }

    .timeline::after {
        left: 20px;
    }
}