/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gold/Forex Theme Colors */
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #1e3a5f;
    --accent-color: #ffd700;
    --gold-light: #f4e4bc;
    --gold-dark: #b8860b;
    --blue-dark: #0a1929;
    --blue-medium: #1a365d;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --text-dark: #1a202c;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.8);
    --border-color: rgba(212, 175, 55, 0.3);
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #1e3a5f 0%, #0a1929 50%, #1e3a5f 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    --gradient-3: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
    --gradient-gold: linear-gradient(135deg, #f4e4bc 0%, #d4af37 50%, #b8860b 100%);
    --gradient-gold-hover: linear-gradient(135deg, #ffd700 0%, #f4e4bc 50%, #ffd700 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a5f 0%, #0a1929 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.4);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.6);
    --glow-gold-strong: 0 0 50px rgba(212, 175, 55, 0.8);
}

body {
    font-family: 'Kanit', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-dark);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('main-background.jpg');
    background-size: 100% 100%, cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(244, 228, 188, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    background-size: 300% 300%, 300% 300%, 400% 400%;
    pointer-events: none;
    z-index: 0;
    animation: goldOverlayMove 25s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes goldOverlayMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    33.33% {
        background-position: 100% 50%, 0% 50%, 0% 100%;
    }

    66.66% {
        background-position: 50% 100%, 50% 0%, 100% 0%;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(244, 228, 188, 0.05) 0%, rgba(212, 175, 55, 0.03) 50%, rgba(30, 58, 95, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
    animation: goldShimmer 20s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes goldShimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

body>* {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.4;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-gold);
}

.rocket-icon {
    font-size: 2.5rem;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

.feature-icon.material-icons,
.metric-icon.material-icons,
.contact-icon.material-icons {
    font-size: 1em !important;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.pricing-features .material-icons,
.suitable-for .material-icons {
    font-size: 1rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: var(--glow-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(244, 228, 188, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(10, 25, 41, 0.5) 100%);
    background-size: 150% 150%, 150% 150%, 200% 200%, 100% 100%;
    opacity: 1;
    z-index: -1;
    animation: goldHeroMove 25s ease-in-out infinite;
}

@keyframes goldHeroMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
        opacity: 1;
        transform: scale(1);
    }

    25% {
        background-position: 100% 50%, 0% 50%, 0% 100%, 0% 0%;
        opacity: 0.95;
        transform: scale(1.02);
    }

    50% {
        background-position: 50% 100%, 50% 0%, 100% 0%, 0% 0%;
        opacity: 1;
        transform: scale(1.05);
    }

    75% {
        background-position: 0% 50%, 100% 0%, 50% 50%, 0% 0%;
        opacity: 0.95;
        transform: scale(1.02);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    padding: 4rem 0;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media {
    animation: fadeInRight 0.8s ease;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-gold);
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    background: var(--bg-dark);
    padding: 3px;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #f4e4bc 25%, #d4af37 50%, #b8860b 75%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    animation: goldBorderShine 3s ease-in-out infinite;
}

@keyframes goldBorderShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.video-container video,
.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 17px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Kanit', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--blue-dark);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
    background: var(--gradient-gold-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--blue-dark);
    box-shadow: var(--shadow-gold);
}

.btn-pricing {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(244, 228, 188, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(244, 228, 188, 0.01) 100px,
            rgba(244, 228, 188, 0.01) 102px);
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 228, 188, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--accent-color);
    background: rgba(30, 41, 59, 0.9);
}

.feature-icon {
    font-size: 5rem !important;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}

.feature-icon.material-icons {
    font-size: 5rem !important;
    width: 5rem;
    height: 5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Performance Section */
.performance {
    background: transparent;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: var(--gradient-blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 1;
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-gold);
    border-color: var(--accent-color);
}

.metric-icon {
    font-size: 4.5rem !important;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}

.metric-icon.material-icons {
    font-size: 4.5rem !important;
    width: 4.5rem;
    height: 4.5rem;
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.suitable-for {
    margin-top: 3rem;
}

.suitable-for h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.suitable-for ul {
    list-style: none;
    padding: 0;
}

.suitable-for li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Proof Section */
.proof {
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse at 50% 100%, rgba(244, 228, 188, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    position: relative;
}

.proof-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.proof-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.proof-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.proof-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing Section */
.pricing {
    background: transparent;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(244, 228, 188, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(30, 58, 95, 0.12) 0%, transparent 50%);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 80px,
            rgba(244, 228, 188, 0.015) 80px,
            rgba(244, 228, 188, 0.015) 82px);
    pointer-events: none;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 1;
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 228, 188, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--accent-color);
    background: rgba(30, 41, 59, 0.9);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: var(--shadow-gold);
}

.pricing-card.best-value {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #1e293b 0%, #1e3a5f 50%, #1e293b 100%);
    box-shadow: var(--glow-gold);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--blue-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--border-color);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl), var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.payment-info {
    text-align: center;
}

.selected-package {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.payment-instruction {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.qr-code-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.qr-code-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    display: block;
}

.payment-note {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 228, 188, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--accent-color);
    background: rgba(30, 41, 59, 0.9);
}

.contact-icon {
    font-size: 5rem !important;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
}

.contact-icon.material-icons {
    font-size: 5rem !important;
    width: 5rem;
    height: 5rem;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(15, 23, 42, 0.98);
        padding: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-text {
        order: 1;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
    }

    .hero-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        width: 100% !important;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center !important;
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-media {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        display: block;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center !important;
        width: 100%;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center !important;
    }

    .section-header {
        text-align: center !important;
        align-items: center !important;
    }

    .pricing-grid,
    .features-grid,
    .proof-gallery,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        padding: 1.5rem;
        margin: 5% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .performance-metrics {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Removed custom cursor - keeping default */

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Removed excessive glow animations */

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold-hover);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}