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

:root {
    /* Theme aligned with RedfoxAd logo: orange to red (not light/dark orange) */
    --fox-orange: #ff5722;
    --fox-red: #c62828;
    --fox-gold: #ff9500;
    --fox-dark: #0d0d12;
    --fox-darker: #08080c;
    --fox-gray: #1c1c2e;
    --fox-light-gray: #8892b0;
    --fox-white: #f5f5f5;
    --gradient: linear-gradient(135deg, var(--fox-orange), var(--fox-red));
    --gradient-hover: linear-gradient(135deg, var(--fox-red), var(--fox-orange));
    --content-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--fox-dark);
    color: var(--fox-white);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--fox-darker); }
::-webkit-scrollbar-thumb { background: var(--fox-orange); border-radius: 3px; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(13, 13, 18, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-icon {
    height: 56px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.logo-red { color: var(--fox-red); }
.logo-ad { color: var(--fox-white); }

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--fox-light-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

nav a:hover { color: var(--fox-white); }
nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gradient);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--fox-white);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 92, 26, 0.14) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 28, 28, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(255, 149, 0, 0.07) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 92, 26, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 26, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 15s ease-in-out infinite;
}

.orb-1 {
    width: 420px; height: 420px;
    background: rgba(255, 92, 26, 0.17);
    top: 10%; left: -5%;
}

.orb-2 {
    width: 320px; height: 320px;
    background: rgba(201, 28, 28, 0.13);
    bottom: 10%; right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 220px; height: 220px;
    background: rgba(255, 149, 0, 0.12);
    top: 60%; left: 40%;
    animation-delay: -10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 43, 0.1);
    border: 1px solid rgba(255, 107, 43, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--fox-orange);
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--fox-orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--fox-light-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.6s both;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

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

.btn-secondary {
    background: transparent;
    color: var(--fox-white);
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--fox-orange);
    background: rgba(255, 107, 43, 0.05);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fade-in-up 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--fox-light-gray);
    margin-top: 0.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--fox-light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--fox-orange);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* SECTIONS COMMON */
section { padding: 6rem 0; }

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fox-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--gradient);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--fox-light-gray);
    font-size: 1.1rem;
    max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-visual {
    position: relative;
    height: 450px;
}

.about-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s;
}

.about-card:hover { transform: translateY(-5px); }

.about-card-1 { top: 0; left: 0; width: 280px; }
.about-card-2 { top: 80px; right: 0; width: 260px; }
.about-card-3 { bottom: 0; left: 30px; width: 300px; }

.about-card-icon {
    width: 48px; height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--fox-light-gray);
    line-height: 1.5;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    color: var(--fox-light-gray);
    margin-bottom: 1rem;
}

.highlight-box {
    background: rgba(255, 107, 43, 0.05);
    border-left: 3px solid var(--fox-orange);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.highlight-box p {
    color: var(--fox-white) !important;
    font-weight: 500;
    margin: 0 !important;
}

/* SERVICES */
#services {
    background: var(--fox-darker);
    position: relative;
}

#services::before, #publishers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 43, 0.3), transparent);
}

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

.service-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 43, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--fox-light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--fox-light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--fox-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ADVERTISERS */
.advertisers-content, .publishers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.adv-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.adv-feature {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.adv-feature:hover {
    border-color: rgba(255, 107, 43, 0.2);
    transform: translateX(8px);
}

.adv-feature-icon {
    width: 50px; height: 50px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.adv-feature h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.adv-feature p {
    color: var(--fox-light-gray);
    font-size: 0.9rem;
}

.adv-mockup {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.08), rgba(230, 57, 70, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.adv-mockup::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 92, 26, 0.16), transparent);
    border-radius: 50%;
    animation: float-orb 10s ease-in-out infinite;
}

.dashboard-preview {
    width: 85%;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

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

.dashboard-dot:nth-child(1) { background: #ff5f56; }
.dashboard-dot:nth-child(2) { background: #ffbd2e; }
.dashboard-dot:nth-child(3) { background: #27c93f; }

.dashboard-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 0 1rem;
}

.dashboard-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.dashboard-bar:hover { opacity: 1; }

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

.dashboard-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
}

.dashboard-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fox-orange);
}

.dashboard-stat-label {
    font-size: 0.7rem;
    color: var(--fox-light-gray);
    margin-top: 0.2rem;
}

/* PUBLISHERS */
#publishers {
    background: var(--fox-darker);
    position: relative;
}

.pub-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.pub-benefit {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    text-align: center;
}

.pub-benefit:hover {
    border-color: rgba(255, 107, 43, 0.2);
    transform: translateY(-4px);
}

.pub-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    height: 36px;
}

.pub-benefit h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pub-benefit p {
    font-size: 0.8rem;
    color: var(--fox-light-gray);
}

/* PRICING */
.pricing-section {
    padding: 5rem 0;
}

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

.pricing-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}

.pricing-card.featured {
    border-color: rgba(255, 107, 43, 0.3);
    background: rgba(255, 107, 43, 0.03);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 43, 0.3);
}

.pricing-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fox-orange);
    margin-bottom: 0.8rem;
}

.pricing-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--fox-light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-divider {
    width: 40px; height: 3px;
    background: var(--gradient);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* PARALLAX BANNER */
.parallax-banner {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 92, 26, 0.11), rgba(201, 28, 28, 0.06));
    border-top: 1px solid rgba(255, 92, 26, 0.12);
    border-bottom: 1px solid rgba(255, 92, 26, 0.12);
}

.parallax-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 92, 26, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 26, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.banner-content p {
    color: var(--fox-light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px; height: 48px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    color: var(--fox-light-gray);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--fox-light-gray);
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--fox-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--fox-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--fox-dark);
}

.h-captcha {
    margin-top: 0.4rem;
}

/* FOOTER */
footer {
    background: var(--fox-darker);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo .logo-icon {
    height: 64px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 2rem;
}

.footer-nav a {
    color: var(--fox-light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover { color: var(--fox-orange); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--fox-light-gray);
    font-size: 0.85rem;
}

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

.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fox-light-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-3px);
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 92, 26, 0.07), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-nav { justify-content: flex-start; }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    nav ul.active { display: flex; }
    nav ul a { font-size: 1.3rem; }
    .mobile-toggle { display: flex; }

    .about-grid, .advertisers-content, .publishers-content, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: auto;
        min-height: 0;
        order: -1;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    .about-visual .about-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
    }
    .services-grid, .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .publishers-content .adv-visual { order: -1; }
    .cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .pub-benefits { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
}
