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

:root {
    --primary-color: #1c75bc;
    --secondary-color: #0052CC;
    --accent-color: #1c75bc;
    --gold-color: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-section: #fafbfc;
    --shadow: 0 8px 24px rgba(24, 99, 220, 0.12);
    --shadow-light: 0 2px 8px rgba(24, 99, 220, 0.08);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
    --gradient: linear-gradient(135deg, #1863DC 0%, #0052CC 100%);
    --gradient-light: linear-gradient(135deg, rgba(24, 99, 220, 0.05) 0%, rgba(0, 82, 204, 0.05) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

body {
    font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.5s ease-out forwards;
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes statPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(28, 117, 188, 0.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    min-height: 90px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.025em;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.logo:hover {
    color: var(--secondary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.nav-links a.cta-button {
    color: var(--text-white);
}

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

.nav-links a.cta-button:hover {
    color: var(--text-white);
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-links .dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-links .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    list-style: none;
    padding: 0.75rem 0;
    margin-top: 1rem;
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-links .dropdown-menu li {
    padding: 0;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links .dropdown-menu a:hover {
    background: var(--gradient-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

/* Button Styles */
.cta-button {
    background: var(--gradient);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(28, 117, 188, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.cta-button.secondary:hover {
    background: var(--text-white);
    color: var(--primary-color) !important;
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: var(--text-white);
    justify-self: end;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-light);
    border-color: rgba(24, 99, 220, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Returns Section */
.returns-section {
    background: var(--bg-section);
}

.returns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.return-tier {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.return-tier:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tier-return {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.tier-ideal {
    color: var(--text-light);
    font-style: italic;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(28, 117, 188, 0.15);
    border-color: rgba(28, 117, 188, 0.1);
}

.stat-card.animate {
    animation: fadeInUpStat 0.6s ease-out forwards;
}

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

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline;
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Step Cards */
.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/* Disclaimer */
.disclaimer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 0;
        min-height: 70px;
    }

    .logo img {
        height: 49px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100vh);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Mobile Dropdown Styles */
    .nav-links .dropdown {
        width: 100%;
    }

    .nav-links .dropdown-toggle {
        justify-content: center;
        pointer-events: auto;
    }

    .nav-links .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-links .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        background: rgba(28, 117, 188, 0.03);
        border-radius: 8px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.3s ease;
    }

    .nav-links .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .nav-links .dropdown-menu li {
        width: 100%;
    }

    .nav-links .dropdown-menu a {
        text-align: center;
        padding: 0.75rem 1rem;
        background: transparent;
    }

    .nav-links .dropdown-menu a:hover {
        padding-left: 1rem;
        background: rgba(28, 117, 188, 0.08);
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 20px;
        gap: 0;
        min-height: 100vh;
        justify-content: center;
    }

    .hero-content {
        justify-self: center;
        max-width: 100%;
    }

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

    .features-grid,
    .returns-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .step-card {
        margin-bottom: 1.5rem;
    }

    .step-number {
        top: -10px;
        left: 1rem;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .image-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .image-grid img {
        order: -1;
        margin-bottom: 1rem;
    }

    .disclaimer {
        padding: 1.5rem 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-card,
    .return-tier,
    .step-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}