:root {
    --bg-dark: #050505;
    --text-light: #f5f5f5;
    --text-dim: #a0a0a0;
    --accent-gold: #C6A87C;
    --accent-gold-hover: #D4AF37;
    --silver: #e5e5e5;
    --dark-surface: #121212;
    --dark-surface-2: #1a1a1a;

    --font-main: 'Outfit', sans-serif;

    --container-width: 1200px;
    --transition: 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.eyebrow.dark {
    color: #888;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-light);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 0;
}

.dark-text {
    color: #111 !important;
}

.dark-muted {
    color: #555 !important;
}

.highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E6C8 50%, #C6A87C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
}

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

.logo {
    order: 1;
}

.logo img {
    height: 60px;
}

.nav-container .btn-outline {
    order: 3;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 3;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-social:hover {
    opacity: 1;
}

.nav-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 168, 124, 0.2);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
    border-color: transparent;
    color: var(--text-dim);
}

.btn-ghost:hover {
    color: var(--text-light);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 1));
}

.hero-content {
    position: relative;
    padding-top: 5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.scroll-indicator {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    z-index: 50;
}

.scroll-indicator span {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Features */
.dark-section {
    background: var(--bg-dark);
    position: relative;
}

.gradient-section {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--bg-dark) 100%);
}

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

.feature-card {
    background: var(--dark-surface);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: left;
    border-radius: 8px;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: var(--text-light);
}

/* Platforms */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: var(--dark-surface-2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.platform-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.platform-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.platform-icon.x {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
    color: #fff;
}

.platform-icon.snapchat {
    background: linear-gradient(135deg, #fffc00, #f7d800);
    color: #000;
}

.platform-card h4 {
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent-gold);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(198, 168, 124, 0.3);
    line-height: 1;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Process */
.silver-section {
    background: #f0f0f0;
    color: #111;
}

.silver-section h2,
.silver-section h3,
.silver-section h4 {
    color: #111;
}

.silver-section p {
    color: #555;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

/* Proof */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-block,
.image-block {
    flex: 1;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

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

.stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.floating-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

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

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

/* Quote */
.quote-section {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--bg-dark) 100%);
    padding: 10rem 0;
}

.big-quote {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-style: italic;
}

.big-quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    margin-bottom: 1rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact */
.contact-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-surface) 100%);
    padding: 10rem 0 6rem;
}

.contact-form {
    max-width: 500px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form button {
    margin-top: 1rem;
}

.privacy-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #555;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 30px;
    opacity: 0.5;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-note {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .big-quote {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 7rem;
    }

    .section {
        padding: 5rem 0;
    }
}