/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Royal Casino Colors */
    --primary-gold: #D4AF37;
    --rich-gold: #FFD700;
    --deep-blue: #0A1628;
    --royal-blue: #1a2942;
    --accent-red: #C41E3A;
    --dark-bg: #0d1117;
    --card-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --success-green: #10b981;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    --card-radius: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--card-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: backdrop-filter;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: var(--deep-blue);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    position: fixed;
    right: 20px;
    top: 16px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    will-change: backdrop-filter;
    z-index: 999;
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
}

.mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
}

.mobile-nav-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-links a:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav-links a:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav-links a:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links a:active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(0);
}

/* Metrics Section */
.metrics-section {
    padding: 60px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.metric-card:nth-child(1) .metric-icon {
    animation-delay: 0s;
}

.metric-card:nth-child(2) .metric-icon {
    animation-delay: 0.2s;
}

.metric-card:nth-child(3) .metric-icon {
    animation-delay: 0.4s;
}

.metric-card:nth-child(4) .metric-icon {
    animation-delay: 0.6s;
}

.metric-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.metric-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Game Categories Section */
.game-categories-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-top: -32px;
    margin-bottom: 48px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.category-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: var(--deep-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-icon {
    font-size: 56px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.category-icon-img {
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.category-icon-img img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.category-card:nth-child(1) .category-icon,
.category-card:nth-child(1) .category-icon-img {
    animation-delay: 0s;
}

.category-card:nth-child(2) .category-icon,
.category-card:nth-child(2) .category-icon-img {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) .category-icon {
    animation-delay: 0.4s;
}

.category-card:nth-child(4) .category-icon {
    animation-delay: 0.6s;
}

.category-card:nth-child(5) .category-icon {
    animation-delay: 0.8s;
}

.category-card:nth-child(6) .category-icon {
    animation-delay: 1s;
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-count {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.category-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 48px;
}

.category-providers {
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.categories-cta {
    text-align: center;
    padding-top: 24px;
}

.categories-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: var(--card-radius);
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-placeholder:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-gold);
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    z-index: 2;
    pointer-events: none;
}

.video-overlay-text {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Removed play icon since video autoplays */

/* Lead Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--royal-blue) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #030712;
    background-image: 
        radial-gradient(circle at 20% 30%, hsla(217, 100%, 15%, 0.8) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, hsla(45, 100%, 12%, 0.8) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, hsla(222, 80%, 8%, 0.8) 0%, transparent 100%);
    overflow: hidden;
    will-change: transform;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: sparkle 4s ease-in-out infinite alternate;
    will-change: opacity, transform;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    animation: orbit 40s linear infinite;
    will-change: transform;
}

@keyframes sparkle {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.value-bullets {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bullet {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.bullet:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(4px);
}

.bullet-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.bullet-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bullet-text strong {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
}

.bullet-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hero-cta-section {
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: var(--deep-blue);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 20px;
}

.cta-button.mega {
    padding: 24px 56px;
    font-size: 22px;
}

.friction-remover {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.social-proof-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stars {
    font-size: 20px;
    margin-bottom: 8px;
}

.proof-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

/* Lead Section */
.lead-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.lead-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.usps {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 48px;
    line-height: 1.8;
}

.usps strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.pain-point {
    margin-bottom: 40px;
}

.pain-point h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 16px;
    line-height: 1.3;
}

.pain-point p {
    font-size: 18px;
    color: var(--text-muted);
}

.solution-teaser p {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.solution-teaser strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Section Titles */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

/* Proof Section */
.proof-section {
    padding: var(--section-padding);
    background: var(--card-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.review-card {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.review-stars {
    font-size: 18px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.review-detail {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-author {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.badge {
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}

.benefits-section .section-title {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Bonus Cards Section */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.bonus-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.bonus-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-card-image img {
    transform: scale(1.1);
}

.bonus-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-card-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bonus-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.bonus-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bonus-card-cta:hover {
    gap: 8px;
}

.bonus-card-cta::after {
    content: '→';
    margin-left: 4px;
    transition: all 0.3s ease;
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--deep-blue);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--primary-gold) 0, var(--primary-gold) 10px, transparent 10px, transparent 20px);
        opacity: 0.3;
        z-index: 1;
    }
}

/* Differentiators Section */
.differentiators-section {
    padding: var(--section-padding);
    background: #f9fafb;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.diff-item {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.diff-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

.comparison-table {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
}

.comparison-table h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--deep-blue);
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: var(--deep-blue);
}

.comparison-table td.highlight {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
    color: var(--text-dark);
}


/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.steps-container {
    display: grid;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-timeline {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Offer Section */
.offer-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}

.offer-section .section-title {
    color: var(--text-light);
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.offer-highlights {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.offer-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.offer-item strong {
    display: block;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.offer-cta-section {
    text-align: center;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}

.about-section .section-title {
    color: var(--text-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-content strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: #ffffff;
}

.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.archetype-card {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.archetype-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.archetype-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.archetype-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.archetype-quote {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.archetype-author {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
}

.final-cta-section .section-title {
    color: var(--text-light);
}

.final-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.final-value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

.final-value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
}

.final-value-item strong {
    font-weight: 700;
}

.final-cta-wrapper {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-gold);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Show mobile menu button */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    /* Optimize logo for mobile */
    .logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .value-bullets {
        gap: 12px;
    }

    .bullet {
        padding: 12px 16px;
    }

    .bullet-icon {
        font-size: 24px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .cta-button.large,
    .cta-button.mega {
        padding: 18px 36px;
        font-size: 18px;
    }

    .reviews-grid,
    .benefits-grid,
    .differentiators-grid,
    .archetypes-grid,
    .faq-grid,
    .final-value-grid,
    .metrics-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 28px 20px;
    }

    .category-description {
        min-height: auto;
    }

    .metric-number {
        font-size: 36px;
    }

    .metric-card {
        padding: 24px 20px;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-gold);
    color: var(--deep-blue);
}