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

:root {
    --black: #000000;
    --dark-bg: #0A0A0A;
    --dark-surface: #111111;
    --dark-border: #1A1A1A;
    --gold-dark: #9C7C0F;
    --gold-mid: #EABA16;
    --gold-light: #FEC91A;
    --gold-glow: rgba(254, 201, 26, 0.08);
    --gold-glow-strong: rgba(254, 201, 26, 0.15);
    --text-primary: #F5F5F0;
    --text-secondary: #8A8A85;
    --text-muted: #5A5A55;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== NOISE OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 780px;
    width: 100%;
    overflow: hidden;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
}

.nav-logo span {
    color: var(--gold-mid);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold-mid);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta:hover {
    background: var(--gold-glow);
    border-color: var(--gold-mid);
    color: var(--gold-light);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -30%;
    width: 60vw;
    max-width: 600px;
    height: 60vw;
    max-height: 600px;
    background: radial-gradient(circle, rgba(234, 186, 22, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gold-glow);
    border: 1px solid rgba(156, 124, 15, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    width: fit-content;
    max-width: 100%;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-mid);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 6.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 28px;
    overflow-wrap: break-word;
    word-break: break-word;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gold {
    color: var(--gold-mid);
    position: relative;
}

.hero h1 .gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    opacity: 0.4;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
    background-size: 200% 200%;
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(234, 186, 22, 0.25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.hero-scroll-hint {
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-mid);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ===== SECTIONS GENERAL ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-dark);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 56px;
}

/* ===== DIVIDER ===== */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), rgba(156, 124, 15, 0.2), var(--dark-border), transparent);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-card {
    padding: 40px 36px;
    margin-bottom: 10px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(156, 124, 15, 0.3);
    background: rgba(17, 17, 17, 0.8);
    transform: translateY(-2px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-glow);
    border: 1px solid rgba(156, 124, 15, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== AUDIENCE SECTION ===== */
.audience-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.audience-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.audience-item:first-child {
    border-top: 1px solid var(--dark-border);
}

.audience-item:hover {
    padding-left: 12px;
}

.audience-marker {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--gold-mid);
    border-radius: 50%;
    margin-top: 10px;
    box-shadow: 0 0 12px rgba(234, 186, 22, 0.3);
}

.audience-item h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.audience-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold-dark), rgba(156, 124, 15, 0.1));
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 36px 0;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-dark);
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold-mid);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== CREDIBILITY SECTION ===== */
.credibility-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.cred-item {
    padding: 28px;
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.5);
}

.cred-item .cred-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold-mid);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.cred-item p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.credibility-quote {
    padding: 32px 36px;
    border-left: 2px solid var(--gold-dark);
    background: var(--gold-glow);
    border-radius: 0 12px 12px 0;
}

.credibility-quote p {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
}

.credibility-quote .quote-attr {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== CTA FINAL ===== */
.cta-final {
    text-align: center;
    padding: 140px 0;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 500px;
    height: 80vw;
    max-height: 500px;
    background: radial-gradient(circle, rgba(234, 186, 22, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final .section-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

.cta-final .section-desc {
    max-width: 480px;
    margin: 0 auto 48px;
    text-align: center;
}

.cta-final .btn-primary {
    padding: 20px 48px;
    font-size: 1.05rem;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--dark-border);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}

.footer-links a:hover {
    color: var(--gold-mid);
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 72px 0;
    }

    .hero {
        padding-top: 80px;
        min-height: calc(100vh - 20px);
        min-height: calc(100dvh - 20px);
    }

    .hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        word-break: break-word;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 24px;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .credibility-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 20px;
    }

    .process-step {
        gap: 16px;
    }

    .process-steps::before {
        left: 19px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .cta-final {
        padding: 80px 0;
    }

    .cta-final .section-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .cta-final .btn-primary {
        padding: 16px 36px;
        font-size: 0.95rem;
    }

    .credibility-quote {
        padding: 24px 20px;
    }

    .credibility-quote p {
        font-size: 1rem;
    }

    .cred-item {
        padding: 20px;
    }

    .footer-links {
        gap: 16px;
    }

    .hero-scroll-hint {
        margin-top: 40px;
    }

    .audience-item {
        gap: 16px;
        padding: 28px 0;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .container {
        padding: 0 14px;
    }

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

    .nav-logo {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 7px 12px;
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}