/* ===== CSS RESET & MODERN BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* HERO Brand Colors */
    --hero-gold: #d2ac47;
    --hero-gold-hover: #c19a35;
    --hero-gold-light: #e4c56a;
    --hero-white: #ffffff;
    --hero-black: #000000;
    --hero-gray: #7e7d7d;
    --hero-light-gray: #dcdcdc;
    
    /* Enhanced Color System */
    --primary: var(--hero-gold);
    --primary-hover: var(--hero-gold-hover);
    --bg-primary: var(--hero-black);
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --text-primary: var(--hero-white);
    --text-secondary: var(--hero-light-gray);
    --text-muted: var(--hero-gray);
    
    /* Typography Scale */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animations */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s var(--ease-out-quart);
}

.bg-video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.hero-inner {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: heroFadeUp 1.2s var(--ease-out-quart);
}

/* Brand Partnership */
.brand-partnership {
    margin-bottom: var(--space-12);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-quart) 0.3s forwards;
}

.partnership-logo {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 128px; /* 160% larger than 80px */
    display: block;
    margin: 0 auto;
    filter: brightness(1.2) contrast(1.1);
    transition: all var(--transition-base);
}

.partnership-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.02);
}

/* Hero Text */
.hero-text {
    margin-bottom: var(--space-12);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-quart) 0.6s forwards;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-line-1 {
    background: linear-gradient(135deg, var(--hero-white) 0%, var(--hero-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--hero-gold) 0%, var(--hero-light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-quart) 0.9s forwards;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-quart) 1.2s forwards;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--hero-black);
    box-shadow: 0 4px 24px rgba(210, 172, 71, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(210, 172, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--hero-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-price {
    font-size: var(--text-base);
    font-weight: 700;
    opacity: 0.9;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-quart) 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

.scroll-text {
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-icon {
    font-size: var(--text-lg);
    color: var(--primary);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--space-32) 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--hero-white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

/* Service Cards */
.service-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--hero-light-gray));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(210, 172, 71, 0.3);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--hero-white));
}

.service-card.premium {
    transform: scale(1.05);
    z-index: 2;
}

.service-card.premium::before {
    background: linear-gradient(90deg, var(--primary), var(--hero-gold-light));
}

.card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--primary);
    color: var(--hero-black);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background: rgba(210, 172, 71, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    color: var(--primary);
}

.service-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: var(--text-base);
    color: var(--text-muted);
}

.card-content {
    flex: 1;
    margin-bottom: var(--space-6);
}

.service-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    text-align: center;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.service-features .fas {
    color: var(--primary);
    font-size: var(--text-sm);
    width: 16px;
}

.card-footer {
    margin-top: auto;
}

.btn-service-primary,
.btn-service-secondary,
.btn-service-accent {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
}

.btn-service-primary {
    background: var(--primary);
    color: var(--hero-black);
}

.btn-service-secondary {
    background: var(--hero-white);
    color: var(--hero-black);
}

.btn-service-accent {
    background: var(--primary);
    color: var(--hero-black);
}

/* Affiliate Notice */
.affiliate-notice {
    background: rgba(126, 125, 125, 0.1);
    border: 1px solid rgba(126, 125, 125, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin: var(--space-4) 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

.affiliate-notice p {
    margin: 0;
    text-align: left;
}

.affiliate-notice strong {
    color: var(--text-primary);
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-prop {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
}

.value-card {
    background: var(--bg-tertiary);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 172, 71, 0.3);
    box-shadow: var(--shadow-lg);
}

.value-card.highlight {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(210, 172, 71, 0.05) 100%);
    border-color: rgba(210, 172, 71, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(210, 172, 71, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6);
}

.value-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.value-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.bonus-alert {
    background: rgba(210, 172, 71, 0.1);
    border: 1px solid rgba(210, 172, 71, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    color: var(--primary);
    font-size: var(--text-sm);
    margin-top: var(--space-4);
}

.bonus-alert strong {
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-tertiary);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(1.1);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.affiliate-disclosure {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    transition: color var(--transition-fast);
}

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

/* ===== FLOATING ACTION BUTTON ===== */
.fab-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 1000;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--hero-black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    box-shadow: 0 4px 20px rgba(210, 172, 71, 0.3);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.fab.visible {
    opacity: 1;
    transform: translateY(0);
}

.fab:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(210, 172, 71, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .partnership-logo {
        max-height: 100px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .service-card.premium {
        transform: none;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-video {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .partnership-logo {
        max-height: 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services {
        padding: var(--space-20) 0;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .value-prop {
        padding: var(--space-16) 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .fab-container {
        bottom: var(--space-4);
        right: var(--space-4);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .partnership-logo {
        max-height: 70px;
    }
    
    .service-card {
        padding: var(--space-6);
    }
    
    .value-card {
        padding: var(--space-6);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bg-video {
        display: none;
    }
    
    .video-overlay {
        background: var(--bg-primary);
    }
}

.btn:focus,
.fab:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #e0e0e0;
        --bg-secondary: #1a1a1a;
        --bg-tertiary: #2a2a2a;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-video,
    .fab-container,
    .scroll-hint {
        display: none;
    }
    
    .services,
    .value-prop {
        page-break-inside: avoid;
    }
    
    .service-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}