/* ============================================
   TUSK DIGITAL — Conversion-Focused Design
   Psychology: Reciprocity, Social Proof, 
   Scarcity, Loss Aversion, Authority
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Mono:wght@400;700&display=swap');

:root {
    --red: #CC0000;
    --red-dark: #990000;
    --red-light: #FF1A1A;
    --red-glow: rgba(204, 0, 0, 0.15);
    --black: #080808;
    --dark: #111111;
    --gray: #1A1A1A;
    --gray-mid: #2A2A2A;
    --gray-light: #333333;
    --white: #FFFFFF;
    --off-white: #F0F0F0;
    --text-muted: #AAAAAA;
    --text-body: #D0D0D0;
    --text-light: #E8E8E8;
    --green: #00C853;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--red);
    color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ========== CUSTOM CURSOR GLOW ========== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ========== LOADING SCREEN ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 8px;
    color: var(--white);
    position: relative;
}

.loader-logo span {
    color: var(--red);
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--gray-mid);
    margin-top: 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: var(--red);
    animation: loadBar 1.5s var(--transition) forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s var(--transition);
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.85rem 4rem;
    border-bottom: 1px solid rgba(204, 0, 0, 0.12);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--red);
    transition: width 0.3s var(--transition);
}

.nav-links li a:hover {
    color: var(--white);
}

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

.nav-cta-wrap a {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.7rem 1.75rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-cta-wrap a::after { display: none; }

.nav-cta-wrap a:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.35);
}

/* Mobile Nav */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

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

.hero-noise {
    position: absolute;
    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: 1;
}

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hero-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18rem, 28vw, 35rem);
    color: rgba(255, 255, 255, 0.015);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -5px;
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 1.8s forwards;
    justify-content: center;
}

.hero-tag::before {
    content: '';
    width: 35px;
    height: 1px;
    background: var(--red);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7.5vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 2s forwards;
}

.hero h1 .accent {
    color: var(--red);
    position: relative;
    display: inline-block;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 2.2s forwards;
}

/* PSYCHOLOGY: Loss Aversion — highlight what they're missing */
.hero-loss {
    background: rgba(204, 0, 0, 0.06);
    border-left: 3px solid var(--red);
    padding: 1rem 1.25rem;
    margin: 0 auto 2.5rem;
    max-width: 580px;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 2.3s forwards;
    text-align: left;
}

.hero-loss p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-loss strong {
    color: var(--red);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 2.4s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--red);
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(204, 0, 0, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

/* PSYCHOLOGY: Social Proof — numbers bar */
.hero-proof {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: slideUp 0.9s var(--transition) 2.6s forwards;
}

.proof-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1;
}

.proof-item h3 .counter-suffix {
    color: var(--red);
}

.proof-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

/* ========== SECTIONS GENERAL ========== */
section {
    padding: 7rem 4rem;
    position: relative;
}

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

.section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-tag::before {
    content: '';
    width: 25px;
    height: 1px;
    background: var(--red);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 550px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s var(--transition);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s var(--transition);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s var(--transition);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s var(--transition);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SERVICES ========== */
#services {
    background: var(--dark);
}

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

.service-card {
    background: var(--gray);
    padding: 2.75rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition);
}

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

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 0, 0, 0.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.service-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.65rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    font-size: 0.72rem;
    color: var(--text-body);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== PSYCHOLOGY: LOSS AVERSION SECTION ========== */
#problem {
    background: var(--black);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.problem-list li .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(204, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.problem-solution {
    background: var(--gray);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(204, 0, 0, 0.1);
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--red), transparent);
    border-radius: 4px 0 0 4px;
}

.problem-solution h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.problem-solution p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ========== PROCESS ========== */
#process {
    background: var(--dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray);
    border: 2px solid rgba(204, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--red);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.3);
}

.process-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========== SOCIAL PROOF / RESULTS ========== */
#results {
    background: var(--black);
}

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

.result-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.result-card:hover {
    border-color: rgba(204, 0, 0, 0.15);
    transform: translateY(-4px);
}

.result-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
}

.result-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

/* Testimonial */
.testimonial-wrap {
    background: var(--gray);
    border-radius: 4px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.testimonial-wrap::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--red);
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== PLATFORMS ========== */
#platforms {
    background: var(--dark);
    text-align: center;
    padding: 5rem 4rem;
}

.platforms-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.platform-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    opacity: 0.4;
    transition: all 0.4s ease;
    cursor: default;
}

.platform-badge:hover {
    opacity: 1;
    color: var(--white);
    transform: scale(1.05);
}

/* ========== SCARCITY CTA BAND ========== */
.scarcity-band {
    background: var(--red);
    padding: 3rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scarcity-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.scarcity-band h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.scarcity-band p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.scarcity-band .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========== CONTACT / CTA SECTION ========== */
#contact {
    background: var(--black);
    padding: 7rem 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.contact-info h2 .accent { color: var(--red); }

.contact-info > p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* PSYCHOLOGY: Risk Reversal — trust signals */
.trust-signals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.trust-item .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.contact-detail .icon {
    width: 36px;
    height: 36px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--white);
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--red);
}

/* PSYCHOLOGY: Commitment Ladder — multi-step form feel */
.contact-form {
    background: var(--gray);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    display: block;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red);
    background: rgba(204, 0, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--gray);
    color: var(--white);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.15rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* PSYCHOLOGY: Micro-commitment after submit */
.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* reCAPTCHA badge - hide but keep functional */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* ========== BLOG PAGE ========== */
.blog-hero {
    padding: 10rem 4rem 4rem;
    background: var(--dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    padding: 4rem;
}

.blog-card {
    background: var(--gray);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.blog-card-content {
    padding: 1.75rem;
}

.blog-card-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.85rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo span { color: var(--red); }

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--red);
    color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-timeline::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.75rem 1.5rem; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 1000;
    }
    
    .nav-links.open { display: flex; }
    .nav-links li a { font-size: 1.2rem; letter-spacing: 3px; }
    .mobile-toggle { display: flex; }
    
    section { padding: 4rem 1.5rem; }
    
    /* HERO MOBILE FIX */
    .hero { 
        padding: 8rem 1.5rem 3rem;
        min-height: auto;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 2.75rem;
        line-height: 1;
    }
    
    .hero-sub {
        font-size: 0.95rem;
    }
    
    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 1.25rem;
    }
    
    .hero-loss {
        margin-bottom: 1.75rem;
    }
    
    .hero-loss p {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-proof { 
        gap: 1.5rem; 
        flex-wrap: wrap;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    
    .proof-item h3 {
        font-size: 2rem;
    }
    
    .hero-bg-text {
        font-size: 10rem;
        opacity: 0.015;
    }
    
    .hero-gradient {
        width: 300px;
        height: 300px;
    }
    
    /* SECTION HEADERS MOBILE */
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* SERVICES MOBILE */
    .services-grid { grid-template-columns: 1fr; }
    
    .service-card {
        padding: 2rem;
    }
    
    /* PROBLEM SECTION MOBILE */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .problem-solution {
        padding: 2rem;
    }
    
    /* PROCESS MOBILE */
    .process-timeline { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .process-timeline::before { display: none; }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* RESULTS MOBILE */
    .results-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.75rem 1rem;
    }
    
    .result-card h3 {
        font-size: 2.25rem;
    }
    
    .testimonial-wrap {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* PLATFORMS MOBILE */
    .platforms-row { 
        gap: 1.5rem; 
    }
    
    .platform-badge {
        font-size: 1.1rem;
    }
    
    /* SCARCITY BAND MOBILE */
    .scarcity-band { 
        padding: 2rem 1.5rem; 
    }
    
    .scarcity-band h3 {
        font-size: 1.25rem;
    }
    
    /* CONTACT MOBILE */
    #contact {
        padding: 4rem 1.25rem;
    }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }
    
    .contact-info h2 {
        font-size: 2.25rem;
    }
    
    .contact-form {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
        margin: 0 -0.125rem;
        border-radius: 6px;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .form-group {
        margin-bottom: 1.15rem;
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents iOS zoom on focus */
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .form-submit {
        margin-top: 0.75rem;
    }
    
    .form-submit .btn-primary {
        padding: 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .form-note {
        font-size: 0.65rem;
        line-height: 1.5;
    }
    
    .trust-signals {
        margin-bottom: 2rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    /* FOOTER MOBILE */
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3rem 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    /* BLOG MOBILE */
    .blog-grid { padding: 2rem 1.5rem; grid-template-columns: 1fr; }
    .blog-hero { padding: 8rem 1.5rem 3rem; }
    
    .cursor-glow { display: none; }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero { 
        padding: 7rem 1.25rem 2rem;
    }
    
    section { padding: 3rem 1.25rem; }
    
    .results-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 0.85rem;
    }
    
    .hero-proof {
        gap: 1.25rem;
    }
    
    .proof-item h3 {
        font-size: 1.75rem;
    }
}
