/* ==========================================
   AFFALDEALS - GLOBAL RESET
========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ==========================================
   ROOT VARIABLES
========================================== */

:root {

    --bg-primary: #0d0d0d;
    --bg-secondary: #161616;
    --bg-card: rgba(255,255,255,0.05);

    --primary-red: #b71c1c;
    --dark-red: #7a1010;

    --primary-orange: #ff6b00;
    --light-orange: #ff8c00;

    --text-white: #ffffff;
    --text-light: #c7c7c7;
    --text-muted: #8f8f8f;

    --border-color: rgba(255,255,255,0.08);

    --shadow-red:
        0 0 25px rgba(183, 28, 28, 0.25);

    --shadow-orange:
        0 0 35px rgba(255, 107, 0, 0.25);

    --transition:
        all 0.35s ease;
}

/* ==========================================
   GLOBAL STYLES
========================================== */

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

section {
    padding: 100px 0;
    position: relative;
}

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

p {
    color: var(--text-light);
}

/* ==========================================
   ANIMATED BACKGROUND
========================================== */

.bg-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at top left,
            rgba(183, 28, 28, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 107, 0, 0.12),
            transparent 35%
        );
    z-index: -3;
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -2;
}

.glow-red {
    width: 400px;
    height: 400px;
    background: rgba(183, 28, 28, 0.22);
    top: 0;
    left: -100px;
}

.glow-orange {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 0, 0.15);
    right: -80px;
    bottom: 0;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

.section-heading {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background:
        rgba(255, 107, 0, 0.08);

    border:
        1px solid rgba(255, 107, 0, 0.18);

    color: var(--light-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 700;
}

.section-heading p {
    max-width: 700px;
    font-size: 18px;
}

/* ==========================================
   GRADIENT TEXT
========================================== */

.gradient-text {
    background:
        linear-gradient(
            90deg,
            #ff6b00,
            #ffb347
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    border: none;
}

.btn-large {
    padding: 16px 38px;
    font-size: 16px;
}

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--primary-red),
            var(--primary-orange)
        );

    color: white;
    box-shadow:
        0 10px 30px
        rgba(255,107,0,0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px
        rgba(255,107,0,0.35);
}

.btn-secondary {
    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.08);

    color: white;
}

.btn-secondary:hover {
    background:
        rgba(255,255,255,0.10);

    transform: translateY(-3px);
}

.btn-outline {

    border:
        1px solid rgba(255,107,0,0.30);

    background:
        rgba(255,107,0,0.06);

    color:
        var(--light-orange);
}

.btn-outline:hover {
    background:
        rgba(255,107,0,0.12);

    transform:
        translateY(-3px);
}

/* ==========================================
   HEADER / NAVBAR
========================================== */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: var(--transition);

    background:
        rgba(13,13,13,0.55);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.04);
}

.nav-container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-orange);
}

.navbar .nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    left: 0;
    bottom: -8px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ==========================================
   MOBILE MENU ICON
========================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 20px;
}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;

    background:
        rgba(255, 107, 0, 0.08);

    border:
        1px solid rgba(255, 107, 0, 0.18);

    color: var(--light-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
    max-width: 720px;
}

.hero-description {
    max-width: 650px;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

/* ==========================================
   TRUST POINTS
========================================== */

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;
    border-radius: 14px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    color: var(--text-light);
}

.trust-item span {
    color: var(--light-orange);
    font-weight: 700;
}

/* ==========================================
   HERO DASHBOARD CARD
========================================== */

.hero-visual {
    position: relative;
}

.dashboard-card {

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(22px);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 0 60px rgba(255,107,0,0.10);

    animation:
        floatCard 5s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 18px 22px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff4b4b;
}

.orange {
    background: #ff9900;
}

.yellow {
    background: #ffd84d;
}

.dashboard-content {
    padding: 35px;
}

.metric-card {

    padding: 35px;
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(183,28,28,0.20),
            rgba(255,107,0,0.08)
        );

    border:
        1px solid rgba(255,255,255,0.06);

    margin-bottom: 30px;
}

.metric-label {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
}

.metric-card h2 {
    font-size: 58px;
    color: var(--light-orange);
    margin-bottom: 10px;
}

.metric-card p {
    color: var(--text-light);
}

/* ==========================================
   MINI STATS
========================================== */

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.mini-card {

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 22px;
    padding: 25px;
}

.mini-card h3 {
    color: var(--light-orange);
    font-size: 28px;
    margin-bottom: 8px;
}

.mini-card span {
    color: var(--text-muted);
}

/* ==========================================
   FAKE GRAPH
========================================== */

.graph-area {
    position: relative;
    height: 120px;
    overflow: hidden;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.04);
}

.graph-line {
    position: absolute;
    width: 120%;
    height: 120%;

    background:
        linear-gradient(
            transparent 40%,
            rgba(255,107,0,0.15)
        );

    clip-path:
        polygon(
            0 80%,
            15% 65%,
            30% 72%,
            45% 45%,
            60% 58%,
            75% 35%,
            90% 22%,
            100% 10%,
            100% 100%,
            0 100%
        );
}

/* ==========================================
   LIVE STATS SECTION
========================================== */

.stats-section {
    padding-top: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.stat-card {

    text-align: center;

    padding: 40px 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.stat-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.20);

    box-shadow:
        0 0 40px rgba(255,107,0,0.12);
}

.stat-card h2 {
    font-size: 48px;
    color: var(--light-orange);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* ==========================================
   FLOATING ANIMATION
========================================== */

@keyframes floatCard {

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

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

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

/* ==========================================
   CREATOR SECTION
========================================== */

.creator-intro {
    position: relative;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.creator-card {

    padding: 35px 28px;
    border-radius: 26px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);

    position: relative;
    overflow: hidden;
}

.creator-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,107,0,0.08),
            transparent
        );

    opacity: 0;
    transition: var(--transition);
}

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

.creator-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.18);

    box-shadow:
        0 0 40px rgba(255,107,0,0.12);
}

.card-icon {
    font-size: 38px;
    margin-bottom: 22px;
}

.creator-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.creator-card p {
    color: var(--text-light);
}

/* ==========================================
   CREATOR CTA BOX
========================================== */

.creator-cta-box {

    margin-top: 60px;

    padding: 45px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(183,28,28,0.18),
            rgba(255,107,0,0.10)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta-content p {
    max-width: 650px;
}

/* ==========================================
   DASHBOARD PREVIEW SECTION
========================================== */

.dashboard-preview-section {
    overflow: hidden;
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.dashboard-preview-content h2 {
    font-size: 52px;
    margin-bottom: 25px;
}

.dashboard-preview-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.dashboard-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.dashboard-point {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.05);
}

.dashboard-point span {
    color: var(--light-orange);
    font-weight: 700;
}

/* ==========================================
   DASHBOARD PREVIEW CARD
========================================== */

.dashboard-preview-card {

    border-radius: 34px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(24px);

    overflow: hidden;

    box-shadow:
        0 0 60px rgba(255,107,0,0.08);
}

.preview-window {
    width: 100%;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 20px 24px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-body {
    padding: 35px;
}

/* ==========================================
   CHART CARD
========================================== */

.chart-card {

    padding: 30px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    margin-bottom: 30px;
}

.chart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.chart-top h3 {
    font-size: 36px;
    color: var(--light-orange);
    margin-top: 6px;
}

.chart-top small {
    color: var(--text-muted);
}

.growth-tag {

    background:
        rgba(255,107,0,0.12);

    border:
        1px solid rgba(255,107,0,0.25);

    color:
        var(--light-orange);

    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
}

/* ==========================================
   FAKE BAR CHART
========================================== */

.fake-chart {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 180px;
}

.bar {
    flex: 1;
    border-radius: 18px 18px 6px 6px;

    background:
        linear-gradient(
            180deg,
            var(--light-orange),
            var(--primary-red)
        );
}

.h40 { height: 40%; }
.h60 { height: 60%; }
.h70 { height: 70%; }
.h80 { height: 80%; }
.h90 { height: 90%; }
.h100 { height: 100%; }

/* ==========================================
   MINI DASHBOARD GRID
========================================== */

.mini-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.mini-dashboard-card {

    padding: 24px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.05);

    transition:
        var(--transition);
}

.mini-dashboard-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(255,107,0,0.20);
}

.mini-dashboard-card h4 {
    font-size: 28px;
    color: var(--light-orange);
    margin-bottom: 8px;
}

.mini-dashboard-card span {
    color: var(--text-muted);
}

/* ==========================================
   CREATOR PROCESS
========================================== */

.creator-process {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.process-card {

    position: relative;

    padding: 38px;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.process-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.20);

    box-shadow:
        0 0 40px rgba(255,107,0,0.10);
}

.process-number {

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    margin-bottom: 28px;

    font-size: 24px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--primary-red),
            var(--primary-orange)
        );

    color: white;
}

.process-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

/* ==========================================
   ADVERTISER SECTION
========================================== */

.advertiser-section {
    position: relative;
}

.advertiser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advertiser-content h2 {
    font-size: 52px;
    margin-bottom: 22px;
}

.advertiser-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.advertiser-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.feature-item {

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 20px;
    border-radius: 18px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);
}

.feature-item span {
    color: var(--light-orange);
    font-weight: 700;
}

.advertiser-buttons {
    margin-top: 30px;
}

/* ==========================================
   ADVERTISER CARDS
========================================== */

.advertiser-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.advertiser-card {

    padding: 35px 28px;

    border-radius: 26px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.advertiser-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.18);

    box-shadow:
        0 0 40px rgba(255,107,0,0.12);
}

.ad-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.advertiser-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

/* ==========================================
   WHY US SECTION
========================================== */

.why-us-section {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.why-card {

    text-align: center;

    padding: 38px 28px;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.why-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.20);

    box-shadow:
        0 0 40px rgba(255,107,0,0.12);
}

.why-icon {
    font-size: 42px;
    margin-bottom: 22px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works {
    position: relative;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.timeline-card {

    padding: 38px;
    border-radius: 28px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.timeline-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.20);

    box-shadow:
        0 0 40px rgba(255,107,0,0.12);
}

.timeline-number {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    font-size: 24px;
    font-weight: 700;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary-red),
            var(--primary-orange)
        );
}

.timeline-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-section {
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-card {

    padding: 38px;
    border-radius: 30px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    transition:
        var(--transition);
}

.testimonial-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,107,0,0.18);

    box-shadow:
        0 0 40px rgba(255,107,0,0.10);
}

.quote-icon {
    font-size: 58px;
    color: var(--light-orange);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--primary-red),
            var(--primary-orange)
        );

    font-weight: 700;
    font-size: 20px;
}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-section {
    position: relative;
}

.faq-container {
    max-width: 900px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {

    overflow: hidden;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);
}

.faq-question {

    width: 100%;
    border: none;
    outline: none;

    background: transparent;
    color: white;

    text-align: left;

    cursor: pointer;

    padding: 26px 30px;

    font-size: 18px;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 28px;
    color: var(--text-light);
}

/* ==========================================
   FINAL CTA
========================================== */

.final-cta-section {
    padding-top: 20px;
}

.cta-box {

    text-align: center;

    padding: 80px 60px;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            rgba(183,28,28,0.18),
            rgba(255,107,0,0.12)
        );

    border:
        1px solid rgba(255,255,255,0.08);
}

.cta-box h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 780px;
    margin: auto;
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
========================================== */

.footer {

    padding: 90px 0 30px;

    background:
        rgba(255,255,255,0.03);

    border-top:
        1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--primary-orange);
}

.footer-description {
    margin-top: 18px;
    font-size: 18px;
    color: var(--light-orange);
    font-weight: 600;
}

.footer-small {
    margin-top: 18px;
    color: var(--text-light);
    max-width: 350px;
}

.footer-column h4 {
    margin-bottom: 24px;
    font-size: 22px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.06);

    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {

    border-radius: 50px;

    background:
        linear-gradient(
            180deg,
            var(--primary-red),
            var(--primary-orange)
        );
}

/* ==========================================
   SIMPLE FADE ANIMATION
========================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 1200px) {

    .hero-title {
        font-size: 58px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .creator-grid,
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 992px) {

    section {
        padding: 80px 0;
    }

    .hero-grid,
    .dashboard-preview-grid,
    .advertiser-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons,
    .trust-points {
        justify-content: center;
    }

    .dashboard-points,
    .advertiser-features {
        grid-template-columns: 1fr;
    }

    .creator-grid,
    .why-grid,
    .process-grid,
    .timeline-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 42px;
    }

    .dashboard-preview-content h2,
    .advertiser-content h2 {
        font-size: 42px;
    }

    .creator-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media (max-width: 768px) {

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 85px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 85px);

        background:
            rgba(13,13,13,0.98);

        backdrop-filter:
            blur(20px);

        transition: 0.4s ease;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar.active {
        left: 0;
    }

    .navbar .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .nav-links a {
        font-size: 24px;
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .dashboard-preview-content h2,
    .advertiser-content h2,
    .cta-box h2 {
        font-size: 34px;
    }

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

    .creator-grid,
    .advertiser-cards,
    .why-grid,
    .mini-dashboard-grid,
    .process-grid,
    .timeline-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-points {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px;
    }

    .faq-answer p {
        padding: 0 22px 22px;
    }

    .cta-box {
        padding: 60px 30px;
    }
}

/* ==========================================
   SMALL DEVICES
========================================== */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero-title {
        font-size: 34px;
    }

    .section-heading h2,
    .dashboard-preview-content h2,
    .advertiser-content h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .logo {
        font-size: 24px;
    }

    .dashboard-content,
    .preview-body,
    .process-card,
    .testimonial-card,
    .creator-card,
    .advertiser-card {
        padding: 25px;
    }

    .metric-card h2,
    .stat-card h2 {
        font-size: 38px;
    }

    .chart-top h3 {
        font-size: 28px;
    }
}

/* ==========================================
   PREMIUM FORM UI FIX
========================================== */

.premium-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    min-height: 62px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    padding: 18px 22px;

    color: white;
    font-size: 16px;

    outline: none;

    transition:
        all 0.35s ease;

    backdrop-filter:
        blur(12px);
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 150px;
    padding-top: 20px;
}

/* Select dropdown */
.form-group select {
    appearance: none;
    cursor: pointer;
}

/* Focus Effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(255,107,0,0.45);

    box-shadow:
        0 0 25px rgba(255,107,0,0.18);

    background:
        rgba(255,255,255,0.06);
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

/* Select Option Color */
.form-group option {
    background: #161616;
    color: white;
}

/* Form Wrapper Better Spacing */
.dashboard-preview-card {
    padding: 10px;
}

.preview-body {
    padding: 45px;
}

/* Submit Button */
.submit-btn {
    margin-top: 35px;
    width: 100%;
    min-height: 64px;
    font-size: 18px;
    border-radius: 20px;
}

/* Better Heading Alignment */
.section-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 60px;
}

.section-heading p {
    margin: auto;
}

/* Better Form Width */
.creator-intro .container {
    max-width: 1100px;
}

/* Mobile Fix */
@media (max-width: 768px) {

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

    .full-width {
        grid-column: span 1;
    }

    .preview-body {
        padding: 28px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 58px;
    }
}