:root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface2: #18181f;
    --border: #2a2a38;
    --accent: #6c47ff;
    --accent2: #ff6b35;
    --accent3: #00d4aa;
    --text: #e8e8f0;
    --muted: #7070a0;
    --tag-bg: #1a1a28;
    --glow-purple: rgba(108, 71, 255, 0.35);
    --glow-teal: rgba(0, 212, 170, 0.35);
    --glow-orange: rgba(255, 107, 53, 0.35);
}

/* ===== CURSOR GLOW ===== */
#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
            rgba(108, 71, 255, 0.07) 0%,
            rgba(108, 71, 255, 0.03) 30%,
            transparent 70%);
    transition: transform 0.12s ease-out, opacity 0.3s;
    will-change: transform;
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Syne', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background mesh */
@keyframes meshFloat {

    0%,
    100% {
        opacity: 1;
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    33% {
        background-position: 15% 25%, 80% 70%, 40% 60%;
    }

    66% {
        background-position: 5% 80%, 95% 20%, 60% 30%;
    }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(108, 71, 255, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(255, 107, 53, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: meshFloat 18s ease-in-out infinite;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== NAVIGATION ===== */
nav#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav#main-nav.nav-scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(108, 71, 255, 0.08);
}

.nav-link.active {
    color: var(--text);
    background: rgba(108, 71, 255, 0.1);
    border-bottom: 2px solid var(--accent);
}

.nav-link.cta-link {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
}

.nav-link.cta-link:hover {
    background: #7d5aff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(108, 71, 255, 0.3);
}

.nav-link.cta-link.active {
    border-bottom: none;
    background: #7d5aff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
    padding: 140px 0 80px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 80px;
}

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

.hero-content .premium-badge {
    margin-bottom: 24px;
}


.hero-content .subtitle {
    text-align: left;
    max-width: 480px;
    margin: 0 0 32px 0;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 71, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(220, 205, 255, 0.95);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(108, 71, 255, 0.5);
    cursor: pointer;
    letter-spacing: 0.03em;
    box-shadow:
        0 0 18px rgba(108, 71, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: rgba(108, 71, 255, 0.38);
    border-color: rgba(140, 100, 255, 0.8);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(108, 71, 255, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(108, 71, 255, 0.06);
    transform: translateY(-2px);
}

.btn-secondary svg {
    flex-shrink: 0;
}

/* Hero image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(108, 71, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    border-radius: 40px;
}

.floating-stats {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 17, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
}

.stat-pill.right {
    right: -30px;
    bottom: 60px;
    animation-delay: -3s;
}

.stat-pill:not(.right) {
    left: -40px;
    top: 60px;
}

.stat-icon {
    font-size: 16px;
}

.stat-text {
    color: var(--text);
    white-space: nowrap;
}

@keyframes float {

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

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

/* ===== SCROLL OFFSET FOR FIXED NAV ===== */
section[id] {
    scroll-margin-top: 100px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.highlight-num {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.highlight-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

/* ===== HEADER (legacy - used in section titles) ===== */
header {
    text-align: left;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-wrapper {
    height: 52px;
    width: auto;
    border-radius: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 280px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.subtitle {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.03em;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00d4aa22, #00d4aa44);
    border: 1px solid #00d4aa55;
    color: var(--accent3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0;
}

/* Pulse dot inside badge */
.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d4aa;
    flex-shrink: 0;
    position: relative;
    animation: pulseDot 2s ease-in-out infinite;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.4);
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* SECTION TITLE */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    margin-bottom: 32px;
}

/* STRATEGY GRID */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 80px;
}

.strategy-card {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.strategy-card.purple::before {
    background: var(--accent);
}

.strategy-card.orange::before {
    background: var(--accent2);
}

.strategy-card.teal::before {
    background: var(--accent3);
}

.strategy-card.gold::before {
    background: #f59e0b;
}

.strategy-card.pink::before {
    background: #ec4899;
}

.strategy-card.blue::before {
    background: #3b82f6;
}

.strategy-card:hover {
    border-color: #3a3a55;
    transform: translateY(-4px);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* WEEKLY PLAN / EXPERIENCE */
.week-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.day-card {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.day-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.day-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.day-theme-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.day-body {
    padding: 20px;
}

.post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.post-item:last-child {
    border-bottom: none;
}

.post-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.post-content {
    flex: 1;
}

.post-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.post-hook {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 4px;
}

.post-note {
    font-size: 11px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.time-badge {
    font-size: 10px;
    background: var(--tag-bg);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
    height: fit-content;
    margin-top: 4px;
}

/* HOOKS SECTION / WHY ME */
.hooks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 80px;
}

.hook-card {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hook-card:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.hook-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.hook-text {
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 10px;
}

.hook-context {
    font-size: 11px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.5;
}

.problem-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

/* PREMIUM SECTION / TOOLS */
.premium-section {
    background: linear-gradient(135deg, var(--surface) 0%, #14141f 100%);
    border: 1px solid #3a2a6a;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: 'AUTOMATE';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 80px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.04;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.premium-feature {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.premium-feature:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.pf-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.pf-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--accent);
}

.pf-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* AUTHORITY / PROCESS SECTION */
.authority-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 80px;
}

.authority-item {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.authority-item:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.authority-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.authority-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.authority-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* TIMING TABLE / SKILLS TABLE */
.timing-table {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 80px;
}

.timing-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    transition: background 0.3s;
}

.timing-row:not(.header):hover {
    background: rgba(108, 71, 255, 0.03);
}

.timing-row:last-child {
    border-bottom: none;
}

.timing-row.header {
    background: var(--surface2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 24px;
}

.timing-day {
    font-weight: 700;
}

.timing-time {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent3);
    font-size: 14px;
    letter-spacing: 2px;
}

.timing-why {
    color: var(--muted);
    font-size: 12px;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 60px;
    text-align: center;
}

.footer-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== WHATSAPP BUTTON ===== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* ===== BOOK A CALL BUTTON ===== */
.btn-book-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(108, 71, 255, 0.25), rgba(0, 212, 170, 0.15));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 14px;
    border: 1px solid rgba(108, 71, 255, 0.55);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.03em;
    box-shadow:
        0 0 24px rgba(108, 71, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-book-call:hover {
    background: linear-gradient(135deg, rgba(108, 71, 255, 0.45), rgba(0, 212, 170, 0.25));
    border-color: rgba(140, 100, 255, 0.85);
    transform: translateY(-3px);
    box-shadow:
        0 0 36px rgba(108, 71, 255, 0.4),
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-book-call svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* ===== TRUST BADGES (Fiverr / Upwork) ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.trust-badge-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
}

.trust-badge-rating {
    font-size: 11px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.fiverr-badge {
    color: #1DBF73;
}

.fiverr-badge:hover {
    border-color: #1DBF73;
    background: rgba(29, 191, 115, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 191, 115, 0.15);
}

.fiverr-badge:hover .trust-badge-name {
    color: #1DBF73;
}

.upwork-badge {
    color: #6FDA44;
}

.upwork-badge:hover {
    border-color: #6FDA44;
    background: rgba(111, 218, 68, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 218, 68, 0.15);
}

.upwork-badge:hover .trust-badge-name {
    color: #6FDA44;
}

/* ===== CONTACT INFO GRID ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.contact-info-item:hover {
    border-color: #3a3a55;
    transform: translateY(-2px);
}

.contact-info-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    word-break: break-all;
}

.contact-info-value:hover {
    color: var(--accent);
}

/* ===== SOCIAL MEDIA ICON BARS ===== */
.contact-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon-link:hover {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(108, 71, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 71, 255, 0.15);
}

.social-icon-link.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

/* ===== FOOTER SOCIAL BAR ===== */
.footer-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-link:hover {
    color: var(--text);
    border-color: var(--accent);
    background: rgba(108, 71, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(108, 71, 255, 0.15);
}

.footer-social-link.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
}

/* COLORS */
.c-purple {
    color: var(--accent);
}

.c-orange {
    color: var(--accent2);
}

.c-teal {
    color: var(--accent3);
}

.c-gold {
    color: #f59e0b;
}

.c-pink {
    color: #ec4899;
}

.c-blue {
    color: #3b82f6;
}

.bg-purple {
    background: var(--accent);
}

.bg-orange {
    background: var(--accent2);
}

.bg-teal {
    background: var(--accent3);
}

.bg-gold {
    background: #f59e0b;
}

.bg-pink {
    background: #ec4899;
}

.bg-blue {
    background: #3b82f6;
}

.tag-purple {
    background: #6c47ff22;
    color: var(--accent);
    border: 1px solid #6c47ff44;
}

.tag-orange {
    background: #ff6b3522;
    color: var(--accent2);
    border: 1px solid #ff6b3544;
}

.tag-teal {
    background: #00d4aa22;
    color: var(--accent3);
    border: 1px solid #00d4aa44;
}

.tag-gold {
    background: #f59e0b22;
    color: #f59e0b;
    border: 1px solid #f59e0b44;
}

.tag-pink {
    background: #ec489922;
    color: #ec4899;
    border: 1px solid #ec489944;
}

.tag-blue {
    background: #3b82f622;
    color: #3b82f6;
    border: 1px solid #3b82f644;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for cards */
.strategy-card:nth-child(1) {
    transition-delay: 0s;
}

.strategy-card:nth-child(2) {
    transition-delay: 0.1s;
}

.strategy-card:nth-child(3) {
    transition-delay: 0.2s;
}

.strategy-card:nth-child(4) {
    transition-delay: 0.3s;
}

.strategy-card:nth-child(5) {
    transition-delay: 0.4s;
}

.strategy-card:nth-child(6) {
    transition-delay: 0.5s;
}

.hook-card:nth-child(1) {
    transition-delay: 0s;
}

.hook-card:nth-child(2) {
    transition-delay: 0.1s;
}

.hook-card:nth-child(3) {
    transition-delay: 0.15s;
}

.hook-card:nth-child(4) {
    transition-delay: 0.2s;
}

.hook-card:nth-child(5) {
    transition-delay: 0.25s;
}

.hook-card:nth-child(6) {
    transition-delay: 0.3s;
}

.authority-item:nth-child(1) {
    transition-delay: 0s;
}

.authority-item:nth-child(2) {
    transition-delay: 0.1s;
}

.authority-item:nth-child(3) {
    transition-delay: 0.2s;
}

.authority-item:nth-child(4) {
    transition-delay: 0.3s;
}

.premium-feature:nth-child(1) {
    transition-delay: 0s;
}

.premium-feature:nth-child(2) {
    transition-delay: 0.1s;
}

.premium-feature:nth-child(3) {
    transition-delay: 0.15s;
}

.premium-feature:nth-child(4) {
    transition-delay: 0.2s;
}

.premium-feature:nth-child(5) {
    transition-delay: 0.25s;
}

.premium-feature:nth-child(6) {
    transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content .subtitle {
        text-align: center;
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .about-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    nav#main-nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
    }

    nav#main-nav.nav-open .nav-links {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav#main-nav.nav-open .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    nav#main-nav.nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    nav#main-nav.nav-open .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

    #hero {
        padding: 120px 0 60px;
    }

    .image-frame {
        width: 260px;
        height: 260px;
    }

    .stat-pill:not(.right) {
        left: -10px;
    }

    .stat-pill.right {
        right: -10px;
    }

    .strategy-grid,
    .premium-grid {
        grid-template-columns: 1fr 1fr;
    }

    .week-grid,
    .hooks-grid,
    .authority-list {
        grid-template-columns: 1fr;
    }

    .timing-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 16px;
    }

    .timing-row.header {
        display: none;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    .strategy-grid,
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .floating-stats {
        display: none;
    }

    .contact-social-bar,
    .footer-social-bar {
        gap: 8px;
    }

    .social-icon-link,
    .footer-social-link {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.video-card {
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    border-color: #3a3a55;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    background: #0d0d18;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.04);
    filter: brightness(0.6);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: rgba(108, 71, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(108, 71, 255, 0.2), 0 8px 32px rgba(108, 71, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.video-card:hover .play-btn {
    transform: scale(1.12);
    background: var(--accent);
    box-shadow: 0 0 0 12px rgba(108, 71, 255, 0.15), 0 12px 40px rgba(108, 71, 255, 0.5);
}

.play-btn svg {
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

/* YouTube iframe replaces thumbnail */
.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.video-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.video-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive: video grid */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 16px;
    font-family: 'Instrument Serif', serif;
    font-size: 90px;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(108, 71, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-text {
    font-family: 'Instrument Serif', serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.testimonial-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 11px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.testimonial-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: auto;
    flex-shrink: 0;
}

/* Counter animation */
.count-up {
    display: inline-block;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: rgba(108, 71, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(108, 71, 255, 0.45);
    border-radius: 14px;
    color: rgba(200, 180, 255, 0.95);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 0 rgba(108, 71, 255, 0),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: rgba(108, 71, 255, 0.28);
    border-color: rgba(108, 71, 255, 0.75);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 20px rgba(108, 71, 255, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

.scroll-to-top svg {
    transition: transform 0.3s;
    filter: drop-shadow(0 0 4px rgba(108, 71, 255, 0.6));
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(180, 150, 255, 0.8));
}

/* ========================================
   ✨ PREMIUM VISUAL ENHANCEMENTS
   ======================================== */

/* ===== 1. SHIMMER EFFECT on Cards ===== */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(250%) skewX(-15deg);
    }
}

.strategy-card,
.hook-card,
.authority-item,
.premium-feature,
.day-card,
.testimonial-card,
.highlight-item,
.video-card,
.contact-info-item {
    position: relative;
    overflow: hidden;
}

.strategy-card::after,
.hook-card::after,
.authority-item::after,
.premium-feature::after,
.day-card::after,
.testimonial-card::after,
.highlight-item::after,
.video-card::after,
.contact-info-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    pointer-events: none;
    z-index: 1;
}

.strategy-card:hover::after,
.hook-card:hover::after,
.authority-item:hover::after,
.premium-feature:hover::after,
.day-card:hover::after,
.testimonial-card:hover::after,
.highlight-item:hover::after,
.video-card:hover::after,
.contact-info-item:hover::after {
    animation: shimmer 0.8s ease forwards;
}

/* ===== 2. NEON GLOW BORDERS on hover ===== */
.strategy-card.purple:hover {
    border-color: rgba(108, 71, 255, 0.5) !important;
    box-shadow: 0 0 20px rgba(108, 71, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.strategy-card.orange:hover {
    border-color: rgba(255, 107, 53, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.strategy-card.teal:hover {
    border-color: rgba(0, 212, 170, 0.5) !important;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.strategy-card.gold:hover {
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.strategy-card.pink:hover {
    border-color: rgba(236, 72, 153, 0.5) !important;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.strategy-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hook-card:hover {
    box-shadow: 0 0 24px rgba(108, 71, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.authority-item:hover {
    box-shadow: 0 0 20px rgba(108, 71, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    box-shadow: 0 0 28px rgba(108, 71, 255, 0.12), 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* ===== 3. ANIMATED SECTION LABELS ===== */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-label {
    background: linear-gradient(90deg, var(--accent), var(--accent3), var(--accent2), var(--accent));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    display: inline-block;
}

/* ===== 4. HERO TITLE underline animate ===== */
@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-title-wrapper::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    border-radius: 2px;
    animation: lineExpand 1s ease 0.5s both;
    box-shadow: 0 0 12px rgba(108, 71, 255, 0.5);
}

/* ===== 5. ENHANCED REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== 6. HIGHLIGHT ITEMS glow on hover ===== */
.highlight-item:hover {
    box-shadow: 0 0 20px rgba(108, 71, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.highlight-item .highlight-num.c-purple {
    text-shadow: 0 0 20px rgba(108, 71, 255, 0.4);
}

.highlight-item .highlight-num.c-teal {
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.highlight-item .highlight-num.c-orange {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.highlight-item .highlight-num.c-gold {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* ===== 7. PREMIUM SECTION glow upgrade ===== */
.premium-section {
    box-shadow: 0 0 60px rgba(108, 71, 255, 0.06), 0 2px 0 rgba(108, 71, 255, 0.2) inset;
}

/* ===== 8. STAT PILLS upgrade ===== */
.stat-pill {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(108, 71, 255, 0.1);
}

/* ===== 9. IMAGE FRAME glow upgrade ===== */
.image-frame {
    box-shadow:
        0 0 0 1px rgba(108, 71, 255, 0.2),
        0 0 40px rgba(108, 71, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease;
}

.image-frame:hover {
    box-shadow:
        0 0 0 1px rgba(108, 71, 255, 0.4),
        0 0 60px rgba(108, 71, 255, 0.3),
        0 20px 80px rgba(0, 0, 0, 0.6);
}

/* ===== 10. NAV LOGO pulse ===== */
@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(108, 71, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(108, 71, 255, 0);
    }
}

.logo-icon {
    animation: logoPulse 3s ease-in-out infinite;
}

/* ===== 11. TIMING TABLE rows nice left accent ===== */
.timing-row:not(.header) {
    position: relative;
    border-left: 2px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.timing-row:not(.header):hover {
    background: rgba(108, 71, 255, 0.04);
    border-left-color: var(--accent);
}

/* ===== 12. FOOTER note glow text hover ===== */
.footer-note strong:hover {
    color: var(--accent) !important;
    text-shadow: 0 0 20px rgba(108, 71, 255, 0.4);
    transition: all 0.3s;
}

/* ===== 13. SOCIAL links enhanced hover ===== */
.footer-social-link.linkedin:hover,
.social-icon-link.linkedin:hover {
    border-color: #0077B5;
    color: #0077B5;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.2);
}

.footer-social-link.facebook:hover,
.social-icon-link.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.2);
}

.footer-social-link.instagram:hover,
.social-icon-link.instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.2);
}

.footer-social-link.x-twitter:hover,
.social-icon-link.x-twitter:hover {
    border-color: #fff;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* ===== 14. SCROLL REVEAL stagger delays ===== */
.timing-row:nth-child(2) {
    transition-delay: 0.05s;
}

.timing-row:nth-child(3) {
    transition-delay: 0.10s;
}

.timing-row:nth-child(4) {
    transition-delay: 0.15s;
}

.timing-row:nth-child(5) {
    transition-delay: 0.20s;
}

.timing-row:nth-child(6) {
    transition-delay: 0.25s;
}

.timing-row:nth-child(7) {
    transition-delay: 0.30s;
}

/* ===== 15. PREMIUM BADGE shimmer ===== */
@keyframes badgeShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.premium-badge {
    background: linear-gradient(110deg,
            rgba(0, 212, 170, 0.15) 0%,
            rgba(0, 212, 170, 0.35) 40%,
            rgba(0, 212, 170, 0.15) 80%);
    background-size: 200% auto;
    animation: badgeShimmer 3s linear infinite;
}

/* ===== 16. HERO ROTATING TITLE ===== */
/* Override the earlier block — wrapper holds fixed height so nothing below shifts */
.hero-title-wrapper {
    position: relative;
    height: calc(clamp(40px, 6vw, 68px) * 1.05 * 3);
    min-height: 220px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: visible;
}

.hero-rotating-title {
    margin: 0;
    padding: 0;
    display: block;
}

/* ALL slides are absolute — they never push content down */
.title-slide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    /* Slide 1 colour: white → purple */
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slide 2 colour: teal → cyan */
.title-slide:nth-child(2) {
    background: linear-gradient(135deg, #00d4aa 20%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Active slide: visible, centred in wrapper */
.title-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Exiting slide: fade out to right */
.title-slide.exit {
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
}

/* =============================================
   ✨ PREMIUM ADDITIONS
   ============================================= */

/* ===== CUSTOM CURSOR ===== */
body {
    cursor: none;
}

a,
button,
[onclick],
label,
input,
textarea,
select,
.video-thumbnail {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(108, 71, 255, 0.8);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: left, top;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(108, 71, 255, 0.45);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease;
    will-change: left, top;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--accent3);
    box-shadow: 0 0 16px rgba(0, 212, 170, 0.9);
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: rgba(0, 212, 170, 0.35);
}

.cursor-dot.clicking {
    transform: translate(-50%, -50%) scale(0.7);
}

/* ===== BENTO GRID (Services Section) ===== */
.services-bento {
    grid-template-columns: repeat(3, 1fr);
}

.services-bento .strategy-card.bento-featured {
    grid-column: span 2;
}

.services-bento .strategy-card.bento-featured .card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.services-bento .strategy-card.bento-featured .card-title {
    font-size: 17px;
    margin-bottom: 10px;
}

.services-bento .strategy-card.bento-featured .card-desc {
    font-size: 14px;
    line-height: 1.75;
    max-width: 520px;
}

@media (max-width: 768px) {
    .services-bento .strategy-card.bento-featured {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .services-bento .strategy-card.bento-featured {
        grid-column: span 1;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 480px;
    margin: 0 auto;
}

.mbn-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 0.25s ease;
    min-width: 52px;
}

.mbn-link svg {
    transition: all 0.25s ease;
}

.mbn-link:hover,
.mbn-link.active {
    color: var(--accent);
}

.mbn-link.active svg {
    filter: drop-shadow(0 0 5px rgba(108, 71, 255, 0.8));
}

.mbn-link.mbn-cta {
    background: linear-gradient(135deg, rgba(108, 71, 255, 0.3), rgba(108, 71, 255, 0.15));
    border: 1px solid rgba(108, 71, 255, 0.4);
    color: rgba(200, 180, 255, 0.95);
    border-radius: 12px;
    padding: 6px 12px;
}

.mbn-link.mbn-cta:hover {
    background: rgba(108, 71, 255, 0.4);
    color: #fff;
    border-color: rgba(108, 71, 255, 0.7);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}