/* ========================================
   MONSTR LANDING PAGE - CSS
   Premium. Bold. Kinetic Warmth.
   10x Redesign - Dark Mode Excellence
   ======================================== */

/* CSS Custom Properties (Design System) */
:root {
    /* Typography - Premium fonts */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Bakgrunner - Light mode */
    --bg-dark: #FFFFFF;
    --bg-dark-elevated: #F7F8FA;
    --bg-dark-lighter: #F0F2F5;
    --bg-dark-card: #FFFFFF;
    --bg-surface: #E8EAED;

    /* Aksent - Varm, intens oransje (preserved) */
    --accent: #FF6B35;
    --accent-hover: #FF5722;
    --accent-light: #FF8F5A;
    --accent-hot: #FF4F1A;
    --accent-glow: rgba(255, 107, 53, 0.35);
    --accent-subtle: rgba(255, 107, 53, 0.06);
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8F5A 100%);
    --accent-gradient-hot: linear-gradient(135deg, #FF4F1A 0%, #FF6B35 50%, #FF8F5A 100%);

    /* Tekst - Light mode hierarchy */
    --text-primary: #1A1A2E;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --text-dim: #9CA3AF;

    /* Borders & dividers */
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-default: rgba(0, 0, 0, 0.1);
    --border-accent: rgba(255, 107, 53, 0.25);
    --border-glow: rgba(255, 107, 53, 0.5);

    /* Success/Status */
    --success: #16A34A;
    --success-subtle: rgba(22, 163, 74, 0.1);

    /* Spacing - Enhanced scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-xxl: 120px;
    --space-huge: 160px;

    /* Border Radius - More refined */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;

    /* Transitions - Enhanced motion */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Shadows - Light mode depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    --shadow-glow-lg: 0 0 80px rgba(255, 107, 53, 0.15);

    /* External brand colors */
    --color-google-star: #FBBC05;
    --color-success-check: #22c55e;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}


body.loading {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   FOCUS VISIBLE & SELECTION STATES
   ======================================== */
*::selection {
    background: var(--accent);
    color: white;
}

*::-moz-selection {
    background: var(--accent);
    color: white;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Remove default focus for mouse users */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ========================================
   ACCESSIBILITY - SKIP LINK & HELPERS
   ======================================== */
/* Skip link - visually hidden, only for screen readers */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Page loader styles removed — no longer used */

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-gradient);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Confetti canvas styles removed -- no longer used */


/* ========================================
   TYPOGRAPHY - Premium Display
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--text-primary);
}

/* Staggered word reveal animation */
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }
.hero-title .word:nth-child(5) { animation-delay: 0.5s; }
.hero-title .word:nth-child(6) { animation-delay: 0.6s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

/* Section number prefix */
.section-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gradient Text - Enhanced */
.gradient-text {
    background: var(--accent-gradient-hot);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight {
    color: var(--accent);
    position: relative;
}

/* Animated underline for highlights */
.highlight-underline {
    position: relative;
    color: var(--accent);
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

em {
    color: var(--text-primary);
    font-weight: 500;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Large display text */
.text-display {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-xxl) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 107, 53, 0.06);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

/* Animated dash before section tag */
.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
}

/* Gradient Mesh Backgrounds */
.gradient-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-mesh::before,
.gradient-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.gradient-mesh-1 {
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 143, 90, 0.08) 0%, transparent 50%);
}

.gradient-mesh-1::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: float-orb 15s ease-in-out infinite;
}

.gradient-mesh-1::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 143, 90, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation: float-orb 20s ease-in-out infinite reverse;
}

.gradient-mesh-2 {
    background:
        radial-gradient(ellipse 50% 80% at 70% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 30% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
}

.gradient-mesh-2::before {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: 20%;
    left: -100px;
    animation: float-orb 18s ease-in-out infinite;
}

.gradient-mesh-2::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 176, 136, 0.08) 0%, transparent 70%);
    bottom: 10%;
    right: -50px;
    animation: float-orb 22s ease-in-out infinite reverse;
}

.gradient-mesh-3 {
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(255, 143, 90, 0.06) 0%, transparent 50%);
}

.gradient-mesh-3::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-orb 25s ease-in-out infinite;
}

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

/* ========================================
   NAVBAR - Glassmorphism
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border-subtle);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 32px;
    width: auto;
    transition: opacity var(--transition-fast);
    filter: brightness(0) saturate(100%);
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.logo-footer .logo-img {
    height: 28px;
}

/* Logo shake animation for easter egg */
.logo.shake {
    animation: logo-shake 0.5s ease;
}

@keyframes logo-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px) rotate(-5deg); }
    40% { transform: translateX(5px) rotate(5deg); }
    60% { transform: translateX(-5px) rotate(-5deg); }
    80% { transform: translateX(5px) rotate(5deg); }
}

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

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-medium);
    box-shadow: 0 0 8px var(--accent-glow);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.btn-nav {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

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

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    padding: 100px var(--space-md) var(--space-md);
    z-index: 999;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.btn-mobile {
    margin-top: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ========================================
   BUTTONS - Premium Design
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on buttons */
.btn::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:hover::before {
    left: 100%;
}

.btn-arrow {
    transition: transform var(--transition-medium);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-chevron {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-chevron {
    transform: translateY(2px);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow:
        0 4px 20px rgba(255, 107, 53, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-glow {
    box-shadow:
        0 4px 30px var(--accent-glow),
        0 0 0 1px rgba(255, 107, 53, 0.2);
}

.btn-glow:hover {
    box-shadow:
        0 8px 50px var(--accent-glow),
        0 0 100px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.4);
}


.btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 107, 53, 0.3);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 16px;
}

.btn-xl {
    padding: 24px 48px;
    font-size: 17px;
}

/* Button Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn.loading .btn-text {
    opacity: 0.5;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   HERO SECTION - Premium Redesign
   ======================================== */
.hero {
    padding-top: calc(80px + var(--space-lg));
    padding-bottom: var(--space-sm);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(80px + var(--space-xl));
        padding-bottom: var(--space-md);
    }
}

/* Hero Background - Enhanced */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 70% 30%, rgba(255, 107, 53, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 20% 90%, rgba(255, 79, 26, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 95% 5%, rgba(255, 143, 90, 0.15) 0%, transparent 50%),
        var(--bg-dark);
}

/* Large gradient orb */
.hero-gradient::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    filter: blur(80px);
    animation: hero-orb 25s ease-in-out infinite;
}

/* Secondary orb */
.hero-gradient::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 79, 26, 0.1) 0%, transparent 60%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    filter: blur(100px);
    animation: hero-orb 30s ease-in-out infinite reverse;
}

@keyframes hero-orb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    33% { transform: translate(60px, -40px) scale(1.15); opacity: 1; }
    66% { transform: translate(-40px, 60px) scale(0.85); opacity: 0.6; }
}

/* Orange diagonal slash - signature element */
.hero-slash {
    position: absolute;
    width: 400px;
    height: 6px;
    background: var(--accent-gradient);
    transform: rotate(-45deg);
    right: 15%;
    top: 30%;
    opacity: 0.6;
    border-radius: 3px;
    filter: blur(1px);
    animation: slashGlow 3s ease-in-out infinite;
}

.hero-slash::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: var(--accent-gradient);
    top: 80px;
    left: 100px;
    border-radius: 2px;
    opacity: 0.4;
}

.hero-slash::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    top: 140px;
    left: 180px;
    border-radius: 2px;
    opacity: 0.25;
}

@keyframes slashGlow {
    0%, 100% { opacity: 0.5; filter: blur(1px); }
    50% { opacity: 0.8; filter: blur(0px); }
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    top: 20%;
    right: 10%;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.08);
    top: 60%;
    right: 25%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 143, 90, 0.15);
    top: 40%;
    left: 5%;
    animation: floatShape 18s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(15px, 10px) rotate(270deg); }
}

.hero-content {
    max-width: 950px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(63, 185, 80, 0.6);
}

.badge-separator {
    color: var(--border-default);
}

.typewriter-container {
    display: block;
    color: var(--accent);
    margin-top: var(--space-xs);
}

.typewriter {
    display: inline;
}

.cursor {
    display: inline-block;
    color: var(--accent);
    animation: blink 1s step-end infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    max-width: 620px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Hero Tasks Before/After Animation */
.hero-tasks {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.hero-tasks.glow-1 { border-color: rgba(63, 185, 80, 0.1); box-shadow: 0 0 15px rgba(63, 185, 80, 0.03); }
.hero-tasks.glow-2 { border-color: rgba(63, 185, 80, 0.15); box-shadow: 0 0 20px rgba(63, 185, 80, 0.05); }
.hero-tasks.glow-3 { border-color: rgba(63, 185, 80, 0.2); box-shadow: 0 0 25px rgba(63, 185, 80, 0.07); }
.hero-tasks.glow-4 { border-color: rgba(63, 185, 80, 0.28); box-shadow: 0 0 30px rgba(63, 185, 80, 0.09); }
.hero-tasks.glow-5 { border-color: rgba(63, 185, 80, 0.35); box-shadow: 0 0 40px rgba(63, 185, 80, 0.12); }

.hero-tasks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-tasks-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.hero-tasks-saved {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.hero-tasks-saved.active {
    color: #3FB950;
}

.hero-tasks-saved strong {
    font-weight: 700;
}

.hero-task {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: opacity 0.4s ease, background 0.4s ease;
    border-radius: 6px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
}

.hero-task.pulse {
    background: rgba(63, 185, 80, 0.06);
}

.hero-task:last-child {
    border-bottom: none;
}

.hero-task-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-task.automated .hero-task-icon {
    transform: scale(1.1);
}

.hero-task-name {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.hero-task-time {
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 52px;
    text-align: right;
    transition: all 0.4s ease;
}

.hero-task-badge {
    font-size: 11px;
    font-weight: 600;
    color: #3FB950;
    background: rgba(63, 185, 80, 0.1);
    border: 1px solid rgba(63, 185, 80, 0.2);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Automated state */
.hero-task.automated .hero-task-name {
    text-decoration: line-through;
    color: var(--text-dim);
}

.hero-task.automated .hero-task-time {
    text-decoration: line-through;
    color: var(--text-dim);
}

.hero-task.automated .hero-task-badge {
    opacity: 1;
    transform: translateX(0);
}

/* Total time saved summary */
.hero-tasks-total {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, margin-top 0.4s ease, padding-top 0.4s ease;
}

.hero-tasks-total.visible {
    max-height: 60px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 14px;
}

.hero-tasks-total-number {
    font-family: var(--font-display);
    font-weight: 700;
    color: #3FB950;
}


@media (max-width: 480px) {
    .hero-tasks {
        padding: 16px;
    }

    .hero-task-name {
        font-size: 13px;
    }

    .hero-task-time {
        display: none;
    }
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}


/* Hero Testimonial */
.hero-testimonial {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-xs);
}

.hero-testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #FBBC04;
}

.hero-testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
    font-style: italic;
}

.hero-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
}

.hero-testimonial-name {
    color: var(--accent);
    font-weight: 600;
}

.hero-testimonial-role {
    color: var(--text-muted);
}

.hero-testimonial-role::before {
    content: "·";
    margin-right: var(--space-xs);
}

@media (max-width: 768px) {
    .hero-testimonial {
        padding: var(--space-sm) var(--space-md);
        margin-top: var(--space-lg);
    }

    .hero-testimonial-text {
        font-size: 0.9rem;
    }
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.avatar-images {
    display: flex;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-dark-lighter) 0%, var(--bg-dark-card) 100%);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: -10px;
    position: relative;
    transition: all var(--transition-fast);
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-circle:hover {
    transform: translateY(-2px);
    z-index: 10;
    border-color: var(--accent);
}

.avatar-more {
    background: var(--accent);
    color: white;
    font-size: 10px;
}

.avatar-text {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .avatar-stack {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-reassurance {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: calc(-1 * var(--space-xs));
    margin-bottom: var(--space-lg);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.badge svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    animation: float 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

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

@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* ========================================
   RESULTS NUMBER WALL
   ======================================== */
.results-wall-section {
    padding: var(--space-lg) 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
}

.results-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.result-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.result-label {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .results-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .results-wall {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
}

/* ========================================
   LOGO OUTCOME METRICS
   ======================================== */
.logo-outcomes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.logo-outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.logo-outcome strong {
    color: var(--text-primary);
    font-weight: 600;
}

.logo-outcome span {
    color: var(--accent);
    font-weight: 500;
}

.logo-outcome-divider {
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}

@media (max-width: 600px) {
    .logo-outcome-divider {
        display: none;
    }

    .logo-outcomes {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ========================================
   RISK REVERSAL
   ======================================== */
.risk-reversal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-md);
    padding: 16px 24px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.risk-reversal p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   FORM UTILITIES
   ======================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.optional-label {
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof-section {
    padding: var(--space-lg) 0;
    background: var(--bg-dark-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    /* Always visible - no fade-in delay */
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.social-proof-section * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Compact version without stats */
.social-proof-compact {
    padding: var(--space-sm) 0 var(--space-md) 0;
}

.social-proof-compact .logo-marquee-wrapper {
    margin-bottom: var(--space-sm);
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

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

.proof-number {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.proof-label {
    font-size: 14px;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-default);
}

@media (max-width: 600px) {
    .proof-divider {
        display: none;
    }
    .social-proof-stats {
        gap: var(--space-md);
    }
}

/* Google Reviews Trust Badge */
.google-reviews-badge {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.google-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
}

.google-badge-content:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--border-default);
    transform: translateY(-2px);
}

.google-logo {
    flex-shrink: 0;
}

.google-badge-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Top Review Quotes */
.top-reviews {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.top-review {
    flex: 1;
    text-align: center;
    padding: var(--space-sm) var(--space-md);
}

.top-review p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.top-review span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

@media (max-width: 600px) {
    .top-reviews {
        flex-direction: column;
        gap: var(--space-xs);
    }
}

/* Logo Marquee */
.logo-marquee-wrapper {
    overflow: hidden;
    margin-bottom: var(--space-md);
    min-height: 60px;
    opacity: 1 !important;
    visibility: visible !important;
}

.marquee-label {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    /* Fade edges with perspective depth effect */
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

/* 3D curved carousel effect - logos scale down at edges */
.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark-elevated) 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark-elevated) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    will-change: transform;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-lg);
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity;
}

.marquee-logo img {
    max-height: 28px;
    max-width: 120px;
    width: auto;
    filter: brightness(0);
    opacity: 0.6;
    height: auto;
    object-fit: contain;
    transition: filter var(--transition-fast);
}

/* Mobile: smaller logos */
@media (max-width: 768px) {
    .marquee-logo {
        padding: 0 var(--space-sm);
    }

    .marquee-logo img {
        max-height: 18px;
        max-width: 70px;
    }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: var(--bg-dark);
    position: relative;
}

.problem-cards {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (min-width: 768px) {
    .problem-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

/* ========================================
   CARDS - Premium 3D Effect
   ======================================== */
.card {
    background: linear-gradient(145deg, var(--bg-dark-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Orange accent line at top */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

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

/* Glow effect behind card */
.card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), transparent 50%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::after {
    opacity: 1;
}

.card-hover:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-accent);
    transition: all 0.3s ease;
}

.card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.card-icon {
    font-size: 32px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.card-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.3;
}

/* ========================================
   PATHS / VELG DIN VEI SECTION
   ======================================== */
.paths-section {
    background: var(--bg-dark-elevated);
    position: relative;
}

.paths-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .paths-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.path-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.path-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 40px rgba(255, 107, 53, 0.1);
}

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


.path-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 6px 12px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.path-number {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.path-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.path-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.path-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.path-cta svg {
    transition: transform var(--transition-fast);
}

.path-card:hover .path-cta {
    gap: 12px;
}

.path-card:hover .path-cta svg {
    transform: translateX(4px);
}

.path-card-primary {
    margin-bottom: var(--space-lg);
}

.path-card-featured {
    position: relative;
    border: 1px solid var(--border-accent);
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: block;
    transition: var(--transition-medium);
}

.path-card-featured:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.path-card-featured-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.path-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(63, 185, 80, 0.1);
    border: 1px solid rgba(63, 185, 80, 0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #3FB950;
    margin-top: var(--space-sm);
}

.path-guarantee svg {
    flex-shrink: 0;
    stroke: #3FB950;
}

.path-price {
    display: inline-block;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--space-sm) 0;
    letter-spacing: -0.01em;
}

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

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

/* Paths note */
.paths-note {
    margin-top: var(--space-xl);
    text-align: center;
}

.paths-note p {
    font-size: 16px;
    color: var(--text-secondary);
}

.paths-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.paths-note a:hover {
    color: var(--accent-light);
}

/* ========================================
   RESULTS / STATS SECTION
   ======================================== */
.results-section {
    background: var(--bg-dark);
    position: relative;
}

.stats {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats.stats-two {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

.stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-bounce);
}

.stat:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 0 30px var(--accent-subtle);
}

.stat-number {
    font-family: var(--font-body);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-body);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ========================================
   FEATURED TESTIMONIAL
   ======================================== */
.featured-testimonial {
    max-width: 700px;
    margin: var(--space-xl) auto;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.featured-testimonial-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.featured-testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.featured-testimonial-text {
    flex: 1;
}

.featured-testimonial-text blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.featured-testimonial-text cite {
    font-size: 0.95rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 600px) {
    .featured-testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-testimonial-text blockquote {
        font-size: 1.1rem;
    }
}

/* Testimonial carousel styles removed -- no longer used */

.testimonial-video {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .testimonial-video {
        grid-template-columns: 200px 1fr;
        align-items: center;
    }
}

.video-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-lighter) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-subtle);
}

.video-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--border-accent);
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-bounce);
    box-shadow: 0 0 30px var(--accent-glow);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--accent-glow);
}

.video-label {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote-mark {
    font-family: var(--font-body);
    font-size: 100px;
    font-weight: 700;
    color: var(--accent-subtle);
    line-height: 0.5;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.5;
}

.testimonial-quote {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: var(--text-muted);
}

.author-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #3FB950;
    font-weight: 600;
    margin-top: 4px;
    background: rgba(63, 185, 80, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.author-result::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3FB950;
    border-radius: 50%;
    animation: pulse-result 2s infinite;
}

@keyframes pulse-result {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

/* Carousel controls removed -- no longer used */

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--bg-dark-elevated);
    position: relative;
}

.service-cards {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-bounce);
    position: relative;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Tilted cards for visual interest */
.service-card:nth-child(1) {
    transform: rotate(-2deg);
}

.service-card:nth-child(2) {
    transform: rotate(1.5deg);
}

.service-card:nth-child(3) {
    transform: rotate(-1.5deg);
}

.service-card:nth-child(4) {
    transform: rotate(2deg);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    border-color: var(--border-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px var(--accent-subtle);
}

.service-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.service-price {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   LOCATION BADGE
   ======================================== */
.location-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-medium);
}

.location-icon {
    font-size: 20px;
    animation: location-pulse 2s ease-in-out infinite;
}

@keyframes location-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.location-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-medium);
}

/* When location is successfully detected */
.location-badge.location-detected {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(255, 107, 53, 0.05) 100%);
    animation: location-detected-glow 0.6s ease-out;
}

.location-badge.location-detected .location-text {
    color: var(--text-primary);
}

@keyframes location-detected-glow {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 20px 5px var(--accent-glow); }
    100% { box-shadow: 0 0 0 0 transparent; }
}

@media (max-width: 768px) {
    .location-badge {
        padding: var(--space-xs) var(--space-sm);
        gap: var(--space-xs);
    }

    .location-text {
        font-size: 14px;
    }

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

.services-cta {
    margin-top: var(--space-xl);
}

.services-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.faq-list {
    margin-top: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    padding: 0 var(--space-md);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-subtle);
}

/* Alternating slight rotations */
.faq-item:nth-child(odd) {
    transform: rotate(-1deg);
}

.faq-item:nth-child(even) {
    transform: rotate(1deg);
}

.faq-item:hover {
    transform: rotate(0deg) scale(1.01);
    border-color: var(--border-accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.faq-icon span:first-child {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon span {
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.cta-section {
    background: var(--bg-dark);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-elevated) 50%, var(--bg-dark) 100%);
    background-size: 100% 100%, 200% 200%;
    animation: cta-gradient-shift 15s ease infinite;
}

@keyframes cta-gradient-shift {
    0%, 100% { background-position: 0% 0%, 0% 50%; }
    50% { background-position: 0% 0%, 100% 50%; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: var(--text-primary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-sm);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.cta-highlight {
    color: var(--accent);
    display: block;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.cta-urgency {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    padding: 10px 20px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    display: inline-block;
}

.cta-email {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.cta-email a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.cta-email a:hover {
    color: var(--accent);
}

/* CTA Reassurance Text */
.cta-reassurance {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-md) auto;
    max-width: 700px;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.booking-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.booking-step p {
    margin: 0;
}

/* Booking Person */
.booking-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    font-size: 15px;
    color: var(--text-secondary);
}

.booking-person-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

/* Booking Fallback */
.booking-fallback {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.booking-fallback a {
    color: var(--accent);
    text-decoration: none;
}

.booking-fallback a:hover {
    text-decoration: underline;
}

/* Booking Social Proof */
.booking-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
        padding: 0 var(--space-md);
    }
}

/* Booking Embed Wrapper */
.cal-embed-wrapper {
    width: 100%;
    margin: var(--space-lg) auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (max-width: 768px) {
    .cal-embed-wrapper {
        margin: var(--space-md) auto;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark-elevated);
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.footer-top {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.5fr 2fr;
    }
}

.logo-footer .logo-text {
    font-size: 28px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

a.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

.footer-made {
    opacity: 0.6;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 16px;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select option {
    background: var(--bg-dark-elevated);
    color: var(--text-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.contact-form .btn-submit {
    margin-top: var(--space-sm);
    width: 100%;
}

.contact-form-wrapper .form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.contact-form-wrapper .form-success .success-icon {
    margin-bottom: var(--space-md);
}

.contact-form-wrapper .form-success h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.contact-form-wrapper .form-success p {
    color: var(--text-secondary);
}

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

    .contact-form-wrapper {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
    }
}

/* ========================================
   ANIMATIONS - Premium Motion Design
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Slide from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scale up effect */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger group container */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.problem-cards .card:nth-child(1),
.service-cards .service-card:nth-child(1),
.stats .stat:nth-child(1) {
    transition-delay: 0s;
}

.problem-cards .card:nth-child(2),
.service-cards .service-card:nth-child(2),
.stats .stat:nth-child(2) {
    transition-delay: 0.12s;
}

.problem-cards .card:nth-child(3),
.service-cards .service-card:nth-child(3),
.stats .stat:nth-child(3) {
    transition-delay: 0.24s;
}

.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }

/* Reveal line animation */
@keyframes revealLine {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Count up animation glow */
@keyframes countGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 30px var(--accent-glow); }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .marquee-track {
        animation: none;
        transform: none !important;
    }
}

/* Force logo marquee visibility */
.logo-marquee,
.logo-marquee *,
.marquee-logo,
.marquee-logo img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ========================================
   CONVERSION ELEMENTS
   ======================================== */

/* Target Section - "Hvem er dette for" */
.target-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.target-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.target-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 143, 90, 0.06) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

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

.target-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.target-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.target-card.target-yes .target-icon,
.target-icon-yes {
    color: var(--success);
    font-size: 24px;
    font-weight: 700;
}

.target-card.target-no .target-icon {
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.target-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.target-card p strong {
    color: var(--text-primary);
}

.target-bonus {
    text-align: center;
    padding: var(--space-md);
    background: var(--success-subtle);
    border: 1px solid rgba(63, 185, 80, 0.2);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.target-bonus-label {
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.target-bonus-text {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--success-subtle);
    border: 1px solid rgba(63, 185, 80, 0.3);
    border-radius: var(--radius-full);
    margin-top: var(--space-md);
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
/* Duplicate @keyframes pulse-dot removed -- defined earlier */

.availability-badge span:last-child {
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 12px var(--space-md);
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-highlight {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.sticky-cta-sub {
    color: var(--text-muted);
    font-size: 13px;
}

.btn-sticky {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .sticky-cta-text {
        display: none;
    }

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

    .btn-sticky {
        width: 100%;
        justify-content: center;
    }
}

/* Old exit popup styles removed - using new version at bottom of file */

/* ========================================
   BLOG SECTION (Homepage)
   ======================================== */
.blog-section {
    background: var(--bg-dark-elevated);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.blog-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.blog-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.blog-card-content {
    flex: 1;
    min-width: 0;
}

.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 4px;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.blog-card-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
}

/* Blog Section Responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-card {
        padding: var(--space-sm);
    }

    .blog-card-icon {
        width: 48px;
        height: 48px;
    }

    .blog-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .blog-card-arrow {
        display: none;
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.team-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 143, 90, 0.08) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto var(--space-xl);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.team-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 0;
    text-align: center;
    transition: all var(--transition-medium);
    overflow: hidden;
    position: relative;
    min-height: 450px;
}

/* Rotated team cards - outward rotation */
.team-card:first-child {
    transform: rotate(-3deg);
}

.team-card:last-child {
    transform: rotate(3deg);
}

.team-card:hover {
    border-color: var(--border-accent);
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 0 40px var(--accent-subtle);
}

.team-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.team-card:hover .team-image-wrapper {
    /* No border change needed */
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark-lighter) 0%, var(--bg-dark-elevated) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-placeholder span {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.6;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-medium);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(
        to top,
        rgba(15, 20, 25, 0.95) 0%,
        rgba(15, 20, 25, 0.8) 50%,
        transparent 100%
    );
    z-index: 2;
}

.team-name {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.team-role {
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: var(--space-xs) 0 0;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.team-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.team-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .team-card {
        min-height: 400px;
    }

    .team-info {
        padding: var(--space-lg) var(--space-md) var(--space-md);
    }

    .team-name {
        font-size: 20px;
    }

    .team-bio {
        font-size: 14px;
    }
}

.team-cta {
    text-align: center;
}

.team-cta-text {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: var(--space-md);
}

/* Google Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.review-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition-medium);
}

.review-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.review-card-stars {
    display: flex;
    gap: 2px;
}

.review-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.review-card-author {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

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

/* ========================================
   CASE STUDY SECTION
   ======================================== */
.case-study-section {
    background: var(--bg-dark-elevated);
}

.case-study-preview {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    transform: rotate(-1deg);
    transition: all var(--transition-medium);
}

.case-study-preview:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.01);
    border-color: var(--border-accent);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08), 0 0 50px var(--accent-subtle);
}

.case-study-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-medium);
}

.case-study-preview:hover .case-study-img {
    transform: scale(1.03);
}

.case-study-preview-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
    padding-bottom: var(--space-md);
}

.case-study-preview-text {
    padding: 0 var(--space-lg);
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .case-study-preview-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.case-study-preview-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.case-study-logo {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.case-study-industry {
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.case-study-preview-results {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

.preview-stat-number {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.preview-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-stat-highlight .preview-stat-number {
    color: var(--accent);
}

.case-study-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: var(--space-lg);
}

.case-study-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.case-study-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    transition: transform var(--transition-fast);
}

/* Expandable content */
.case-study-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
    margin-top: 0;
    padding: 0 var(--space-lg);
}

.case-study-expanded.active {
    max-height: 600px;
    margin-top: var(--space-lg);
}

.case-study-detail {
    padding: var(--space-md);
    background: var(--bg-dark-lighter);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.case-study-detail:last-child {
    margin-bottom: 0;
}

.case-study-detail h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.case-study-detail p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 var(--space-xs);
}

.case-study-detail p:last-child {
    margin-bottom: 0;
}

.case-study-outcome {
    background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--bg-dark-lighter) 100%);
    border: 1px solid var(--border-accent);
}

/* Case Study Badges */
.case-study-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.case-study-badge-delivered {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.case-study-badge-audit {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Case Study Metrics Grid */
.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-lg) var(--space-md);
}

.case-metric {
    background: var(--bg-dark-elevated);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: border-color var(--transition-fast);
}

.case-metric:hover {
    border-color: var(--border-default);
}

.case-metric-featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.case-metric-big {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-metric-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    font-family: var(--font-display);
}

.case-metric-val-highlight {
    color: var(--accent);
}

.case-metric-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: var(--space-xs);
    line-height: 1.3;
}

.case-metric-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: var(--space-xs);
}

.case-metric-source {
    color: var(--accent-light);
}

/* Before / After Metrics */
.case-metric-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.case-metric-before,
.case-metric-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.case-metric-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.case-metric-before .case-metric-val {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.case-metric-after .case-metric-val {
    font-size: 1.5rem;
}

.case-metric-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0.5;
}

/* Source note for cited studies */
.case-study-source-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-lg) var(--space-md);
    margin: 0;
    line-height: 1.5;
    opacity: 0.7;
}

.case-study-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

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

    .case-metric-val {
        font-size: 1.6rem;
    }

    .case-study-preview-info {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }
}

/* Case Study Tabs/Carousel */
.case-study-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.case-study-tab {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.case-study-tab:hover {
    border-color: var(--border-default);
    color: var(--text-primary);
}

.case-study-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.case-study-slides {
    position: relative;
}

.case-study-slide {
    display: none;
    animation: fadeInCase 0.4s ease;
}

.case-study-slide.active {
    display: block;
}

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

/* Case Study Body - new layout */
.case-study-body {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-lg);
    padding-top: 0;
}

@media (min-width: 768px) {
    .case-study-body {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-study-challenge,
.case-study-solution,
.case-study-result {
    padding: var(--space-md);
    background: var(--bg-dark-lighter);
    border-radius: var(--radius-md);
}

.case-study-result {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-dark-lighter) 100%);
    border: 1px solid var(--border-accent);
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-result h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.case-study-challenge p,
.case-study-solution p,
.case-study-result p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Case Study Placeholder Image */
.case-study-placeholder {
    background: linear-gradient(135deg, var(--bg-dark-lighter) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Case Study Tabs */
.case-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.case-tab {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.case-tab:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.case-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Case Study Panels */
.case-panel {
    display: none;
}

.case-panel.active {
    display: block;
}

/* Single Case Study */
.case-study-single {
    max-width: 900px;
    margin: 0 auto;
}

/* Case Study Testimonial */
.case-study-testimonial {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.case-testimonial-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.case-testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--border-accent);
}

.testimonial-avatar-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
    flex-shrink: 0;
    border: 3px solid var(--border-accent);
}

.case-testimonial-text blockquote {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 var(--space-sm);
    font-style: italic;
}

.case-testimonial-text cite {
    display: block;
    font-size: 0.95rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 600px) {
    .case-testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .case-testimonial-image {
        width: 80px;
        height: 80px;
    }

    .case-testimonial-text blockquote {
        font-size: 1.1rem;
    }
}

/* Google Review Style Cards */
.google-review {
    max-width: 500px;
    margin: var(--space-xl) auto;
    padding: var(--space-md);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid #e8e8e8;
}

.google-review-label {
    font-size: 0.75rem;
    color: #5f6368;
    font-weight: 500;
}

.google-review-content {
    color: #202124;
}

.google-review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.google-review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-review-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #202124;
}

.google-review-stars {
    display: flex;
    gap: 1px;
}

.google-review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3c4043;
    margin: 0;
}

/* Compact variant for CTA section */
.google-review-compact {
    max-width: 450px;
    padding: var(--space-sm) var(--space-md);
}

.google-review-compact .google-review-text {
    font-size: 0.9rem;
}

/* Reuse avatar styles */
.google-review .testimonial-avatar-initials.small {
    background: var(--accent);
    color: white;
}

.google-review .testimonial-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .google-review {
        margin: var(--space-lg) var(--space-sm);
    }

    .google-review-compact {
        max-width: 100%;
    }
}

/* Inline Testimonials (spredt gjennom siden) - DEPRECATED, keeping for fallback */
.inline-testimonial {
    max-width: 700px;
    margin: var(--space-xl) auto;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, transparent 100%);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
}

.inline-testimonial-inner {
    position: relative;
}

.inline-testimonial .quote-mark {
    position: absolute;
    top: -8px;
    left: -8px;
    color: var(--accent);
}

.inline-testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0 0 var(--space-md) var(--space-lg);
    padding: 0;
    border: none;
    background: none;
}

.inline-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-lg);
}

.inline-testimonial-author cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

.testimonial-avatar-initials.small {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.testimonial-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* Light variant for CTA section */
.inline-testimonial-light {
    background: rgba(0, 0, 0, 0.03);
    border-left-color: var(--accent-light);
}

/* CTA section specific adjustments */
.cta-section .inline-testimonial {
    margin: var(--space-lg) auto;
}

@media (max-width: 768px) {
    .inline-testimonial {
        margin: var(--space-lg) var(--space-sm);
        padding: var(--space-md);
    }

    .inline-testimonial blockquote {
        font-size: 1rem;
        margin-left: var(--space-md);
    }

    .inline-testimonial-author {
        margin-left: var(--space-md);
    }
}

/* Featured Hero Quote */
.featured-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.featured-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.featured-quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.featured-quote-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-style: normal;
    border: none;
    padding: 0;
    background: none;
}

.featured-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.featured-quote-author .testimonial-avatar-initials {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: normal;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .featured-quote {
        padding: var(--space-lg) var(--space-md);
    }

    .quote-icon svg {
        width: 36px;
        height: 36px;
    }

    .featured-quote-author {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .author-details {
        text-align: center;
    }
}

/* Lead magnet / scratchcard styles removed -- no longer used */

/* ========================================
   SERVICE PAGES
   ======================================== */

/* Service Hero */
.service-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-fast);
}

.back-link:hover {
    color: var(--accent);
}

.back-link svg {
    transition: transform var(--transition-fast);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.service-hero-content {
    max-width: 700px;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.service-number {
    display: block;
    font-family: var(--font-body);
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service-title {
    font-size: clamp(42px, 8vw, 64px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.service-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* Service Details Grid */
.service-details {
    background: var(--bg-dark);
}

.service-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 640px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.service-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.service-item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.service-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    background: var(--bg-dark-elevated);
    position: relative;
}

.process-steps {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
    }
}

.process-step-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
}

.process-step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.process-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.process-step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Pricing Card */
.service-pricing {
    background: var(--bg-dark);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--bg-dark-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    text-align: center;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-from {
    font-size: 16px;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    color: #3FB950;
}

/* Workshop Formats */
.service-formats {
    background: var(--bg-dark-elevated);
    position: relative;
}

.formats-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .formats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.format-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.format-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.format-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.format-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.format-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.format-duration {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.format-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.format-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-includes li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.format-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Other Services */
.other-services {
    background: var(--bg-dark-elevated);
}

.other-services-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (min-width: 640px) {
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.other-service-card {
    display: block;
    padding: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.other-service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.other-service-number {
    display: block;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.other-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.other-service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.other-service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    padding: calc(var(--space-xxl) + 80px) 0 var(--space-xl);
    position: relative;
    text-align: center;
}

.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Featured Article */
.blog-featured {
    padding-top: 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-article:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.featured-image {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, var(--bg-dark-elevated) 0%, var(--bg-dark-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.featured-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.featured-article:hover .read-more {
    gap: 12px;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 13px;
    color: var(--text-muted);
}

.article-category {
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.article-read-time::before {
    content: "•";
    margin-right: var(--space-sm);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.articles-grid-small {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.article-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.article-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-dark-elevated) 0%, var(--bg-dark-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image-placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

.article-card-content {
    padding: var(--space-md);
}

.article-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: var(--space-xs);
}

.article-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Newsletter Card */
.blog-newsletter {
    padding-bottom: var(--space-xxl);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, var(--bg-dark-elevated) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    align-items: center;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    padding: 14px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    min-width: 280px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

/* ========================================
   ARTICLE PAGE STYLES
   ======================================== */

/* Article Hero */
.article-page .article-hero {
    padding: calc(var(--space-xxl) + 80px) 0 var(--space-xl);
    position: relative;
}

.article-hero-content {
    max-width: 800px;
}

.article-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.article-hero-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Article Content */
.article-content {
    padding: var(--space-xl) 0 var(--space-xxl);
}

/* Duplicate .container-narrow removed -- consolidated at top of file with max-width: 800px */

/* Table of Contents */
.article-toc {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
}

.article-toc h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.article-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.article-toc li {
    counter-increment: toc-counter;
    margin-bottom: 8px;
}

.article-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.article-toc a::before {
    content: counter(toc-counter) ".";
    color: var(--accent);
    font-weight: 600;
    min-width: 20px;
}

.article-toc a:hover {
    color: var(--text-primary);
}

/* Article Body */
.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.article-body h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: var(--space-lg);
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.article-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.article-body p {
    margin-bottom: var(--space-md);
}

.article-body ul, .article-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--accent-light);
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body em {
    font-style: italic;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    border-left: 3px solid var(--accent);
    padding-left: var(--space-md);
}

/* Article Highlight Box */
.article-highlight {
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.article-highlight p {
    margin: 0;
    color: var(--text-primary);
}

/* Article Callout */
.article-callout {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.article-callout h4 {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 var(--space-xs) 0;
}

.article-callout p {
    margin: 0;
}

/* Article Checklist */
.article-checklist {
    margin: var(--space-lg) 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
}

.checklist-item svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.checklist-item span {
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-table {
    margin: var(--space-lg) 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: var(--bg-dark-elevated);
}

.comparison-header .comparison-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-cell {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
}

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

/* Pricing Overview (in article) */
.pricing-overview {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.pricing-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.pricing-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 var(--space-xs) 0;
}

.pricing-range {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.pricing-item p:last-child {
    margin: 0;
    font-size: 14px;
}

/* FAQ in Article */
.article-faq .faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.article-faq h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 var(--space-xs) 0;
}

.article-faq p {
    margin: 0;
    font-size: 15px;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--bg-dark-card) 0%, var(--bg-dark-elevated) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-xl);
}

.article-cta h2 {
    border: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: var(--space-sm) !important;
}

.article-cta p {
    margin-bottom: var(--space-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Related Articles */
.related-articles {
    padding-bottom: var(--space-xl);
}

/* Process Section (for automation article) */
.process-section {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.process-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    font-family: monospace;
}

.process-header h2 {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Competence Levels */
.competence-levels {
    margin: var(--space-lg) 0;
}

.competence-level {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.level-badge {
    display: inline-block;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.competence-level h4 {
    margin: 0 0 var(--space-xs) 0;
}

.competence-level p {
    margin: 0;
    font-size: 14px;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.criteria-item {
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.criteria-good {
    background: var(--success-subtle);
    border: 1px solid rgba(63, 185, 80, 0.3);
}

.criteria-bad {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.criteria-item h4 {
    font-size: 14px;
    margin: 0 0 var(--space-xs) 0;
}

.criteria-item p {
    margin: 0;
    font-size: 13px;
}

/* Mistakes List */
.mistakes-list {
    margin: var(--space-lg) 0;
}

.mistake-item {
    display: flex;
    gap: var(--space-md);
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.mistake-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.mistake-content h4 {
    margin: 0 0 var(--space-xs) 0;
    font-size: 1rem;
}

.mistake-content p {
    margin: 0;
    font-size: 14px;
}

/* Summary Table */
.summary-table {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: var(--space-lg) 0;
}

.summary-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.summary-header {
    background: var(--bg-dark-elevated);
}

.summary-header .summary-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-cell {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
}

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

/* Nav Link Active State */
.nav-link-active {
    color: var(--accent) !important;
}

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

    .featured-image {
        min-height: 200px;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .articles-grid-small {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: none;
        padding: var(--space-xs) var(--space-sm);
    }

    .comparison-row {
        border-bottom: 1px solid var(--border-subtle);
        padding: var(--space-xs) 0;
    }

    .comparison-header .comparison-cell:not(:first-child) {
        display: none;
    }

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

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

/* ============================================
   VIDEO PLACEHOLDERS & NEW SECTIONS
   ============================================ */

/* Founder Video Section */
.founder-video-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.founder-video-container {
    width: 100%;
}

.founder-placeholder {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-dark-elevated), var(--bg-dark-lighter));
}

.founder-video-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.founder-video-info p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.founder-points {
    list-style: none;
    padding: 0;
}

.founder-points li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.founder-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Video Placeholder Base Styles */
.video-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark-elevated), var(--bg-dark-card));
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    border-color: var(--border-accent);
}

/* Play Buttons */
.play-button,
.play-button-large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.play-button {
    width: 56px;
    height: 56px;
}

.play-button-large {
    width: 80px;
    height: 80px;
}

.play-button svg,
.play-button-large svg {
    color: white;
    margin-left: 4px; /* Visual centering for play icon */
}

.video-placeholder:hover .play-button,
.video-placeholder:hover .play-button-large {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Video Labels */
.video-label {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
    z-index: 1;
}

.video-label-overlay {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.video-duration {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Testimonial Video Styling */
.testimonial-video {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.testimonial-video .video-placeholder {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
}

.testimonial-video .testimonial-content {
    text-align: left;
}

/* Process Section */
.process-section {
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.process-timeline-4 {
    grid-template-columns: repeat(4, 1fr);
}

.step-optional {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.process-step {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 16px;
    height: 2px;
    background: var(--border-subtle);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Demo Video Placeholder */
.demo-video-section {
    max-width: 800px;
    margin: 0 auto;
}

.demo-placeholder {
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-banner .urgency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.urgency-banner p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.urgency-banner strong {
    color: var(--accent);
}

/* Footer Newsletter */
.footer-newsletter {
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-lg);
}

.footer-newsletter .footer-heading {
    margin-bottom: var(--space-xs);
}

.newsletter-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.footer-newsletter iframe {
    margin: 0 auto;
    display: block;
}

/* Footer Trust Badges */
.footer-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--accent);
    opacity: 0.7;
}

/* ============================================
   VIDEO PLACEHOLDER RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .founder-video-section {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .testimonial-video {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-video .video-placeholder {
        max-width: 200px;
        margin: 0 auto var(--space-md);
    }

    .testimonial-video .testimonial-content {
        text-align: center;
    }

    .process-timeline,
    .process-timeline-4 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .process-step::after {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .process-timeline-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .play-button-large {
        width: 64px;
        height: 64px;
    }

    .play-button-large svg {
        width: 32px;
        height: 32px;
    }
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FBBC05;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ========================================
   TESTIMONIALS MARQUEE CAROUSEL
   ======================================== */

.testimonials-marquee-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.testimonials-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: var(--space-2xl);
}

.testimonials-marquee-track {
    display: flex;
    gap: var(--space-lg);
    animation: testimonialMarquee 60s linear infinite;
    width: max-content;
}

.testimonials-marquee:hover .testimonials-marquee-track {
    animation-play-state: paused;
}

@keyframes testimonialMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-marquee-card {
    flex-shrink: 0;
    width: 340px;
    padding: var(--space-lg);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-medium);
}

.testimonial-marquee-card:hover {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.testimonial-marquee-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial-marquee-stars svg {
    width: 16px;
    height: 16px;
    color: #FBBC04;
}

.testimonial-marquee-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 var(--space-md) 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 95px;
}

.testimonial-marquee-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-marquee-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-marquee-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-marquee-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonial-marquee-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Fade overlays */
.testimonials-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 2;
}

.testimonials-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.testimonials-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .testimonials-marquee-section {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .testimonial-marquee-card {
        width: 280px;
        padding: var(--space-md);
    }

    .testimonial-marquee-text {
        font-size: 0.9rem;
        min-height: 85px;
    }

    .testimonials-marquee-fade {
        width: 60px;
    }
}

/* ========================================
   URGENCY BANNER
   ======================================== */

.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.urgency-icon {
    font-size: 1.25rem;
}

.urgency-banner p {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.urgency-banner strong {
    color: var(--accent);
}

/* ========================================
   WORKSHOP CONTACT FORM
   ======================================== */

.pricing-card-form {
    max-width: 700px;
    margin: 0 auto;
}

.workshop-form {
    margin: var(--space-xl) 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

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

.workshop-form .form-group-full {
    grid-column: 1 / -1;
}

.workshop-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.workshop-form input,
.workshop-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark-lighter);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.workshop-form input:focus,
.workshop-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.workshop-form input::placeholder,
.workshop-form textarea::placeholder {
    color: var(--text-muted);
}

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

/* Form Validation States */
.workshop-form input.valid,
.workshop-form textarea.valid {
    border-color: var(--success);
}

.workshop-form input.invalid,
.workshop-form textarea.invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.workshop-form input.invalid:focus,
.workshop-form textarea.invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.field-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

.workshop-form .btn-submit {
    width: 100%;
    margin-top: var(--space-md);
    justify-content: center;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.form-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Form hidden when success shows */
.pricing-card-form.form-submitted .workshop-form {
    display: none;
}

.pricing-card-form.form-submitted .pricing-features {
    display: none;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-card-form {
        padding: var(--space-lg);
    }
}


/* Cost Calculator */
.calculator-section {
    padding: var(--space-xl) 0;
}

.calculator-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.calculator-header {
    padding: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.calculator-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.calculator-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.calculator-body {
    padding: var(--space-lg);
}

.calculator-input-group {
    margin-bottom: var(--space-lg);
}

.calculator-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.calculator-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--bg-dark-elevated);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.4);
}

.calculator-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-value {
    min-width: 110px;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.slider-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.calc-result {
    background: var(--bg-dark-elevated);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.calc-result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-result-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-result-big {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.calc-result-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.calc-result-cost {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.calc-result-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.calc-result-highlight .calc-result-value {
    color: var(--accent);
}

.calc-result-highlight .calc-result-unit {
    color: var(--accent-light);
}

.calculator-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.calculator-cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

@media (max-width: 640px) {
    .calculator-results {
        grid-template-columns: 1fr;
    }

    .slider-container {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .slider-value {
        text-align: center;
    }

    .calculator-header h3 {
        font-size: 1.25rem;
    }

    .calc-result-big {
        font-size: 1.35rem;
    }
}

/* ========================================
   PREMIUM ENHANCEMENTS - 21st.dev Inspired
   ======================================== */

/* Border Glow Button */
.btn-border-glow {
    position: relative;
}

.btn-border-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.5),
        transparent
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: border-rotate 3s linear infinite;
}

.btn-border-glow:hover::after {
    opacity: 1;
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Card Spotlight Effect */
.card-spotlight {
    position: relative;
    overflow: hidden;
}

.card-spotlight-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 107, 53, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card-spotlight:hover .card-spotlight-effect {
    opacity: 1;
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.5),
        transparent 50%,
        transparent 50%,
        rgba(255, 107, 53, 0.3)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-spotlight:hover .card-border-glow {
    opacity: 1;
}

/* Process Step Enhancement */
.step-icon-wrapper {
    position: relative;
    display: inline-block;
}

.step-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: step-pulse-ring 2s ease-out infinite;
}

.process-step:hover .step-pulse {
    animation-play-state: running;
}

@keyframes step-pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Enhanced Stats with Glow */
.stat-glow {
    position: relative;
    overflow: visible;
}

.stat-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.stat-glow:hover .stat-glow-bg {
    opacity: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

/* Number Ticker Animation Enhancement */
.number-ticker {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.1s ease-out;
}

.number-ticker.counting {
    animation: number-bounce 0.1s ease-out;
}

@keyframes number-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Aurora Background Effect */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aurora-bg::before,
.aurora-bg::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 107, 53, 0.1) 60deg,
        transparent 120deg,
        rgba(255, 143, 90, 0.08) 180deg,
        transparent 240deg,
        rgba(255, 79, 26, 0.06) 300deg,
        transparent 360deg
    );
    animation: aurora-rotate 30s linear infinite;
}

.aurora-bg::after {
    animation-direction: reverse;
    animation-duration: 25s;
    opacity: 0.5;
}

@keyframes aurora-rotate {
    0% { transform: translate(-25%, -25%) rotate(0deg); }
    100% { transform: translate(-25%, -25%) rotate(360deg); }
}

/* Text Blur Reveal Animation */
.text-blur-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Smooth FAQ Accordion Enhancement */
.faq-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: 
        max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        transform 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Cursor Effect */
[data-magnetic] {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient Text Shimmer */
.gradient-text-shimmer {
    background: linear-gradient(
        90deg,
        #FF6B35 0%,
        #FF8F5A 25%,
        #FFB088 50%,
        #FF8F5A 75%,
        #FF6B35 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shimmer 3s linear infinite;
}

@keyframes gradient-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Floating Animation for Elements */
.float-gentle {
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glow Pulse for Important Elements */
.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.2);
    }
}

/* Interactive Hover Lift */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Contact Form in CTA Section */
.cta-section .contact-form-wrapper {
    max-width: 560px;
}

.cta-section .contact-form-wrapper .form-success .success-icon {
    font-size: 48px;
    color: #22c55e;
}

/* Hide RetellAI widget container until JS configures it */
body > div[style*="z-index: 999999"] {
    visibility: hidden !important;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999990;
    background: var(--bg-dark-card);
    border-top: 1px solid var(--border-subtle);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.cookie-banner-content a {
    color: var(--accent);
    text-decoration: none;
}

.cookie-banner-content a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-decline {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
}

.cookie-decline:hover {
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   MONA CHAT BUBBLE
   ======================================== */
.mona-chat {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.mona-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-dark-card);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.mona-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(255, 107, 53, 0.45), 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.mona-bubble:active {
    transform: scale(0.95);
}

.mona-bubble-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mona-bubble-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--accent), #ff8f5a);
}

.mona-bubble-ping {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    border: 2.5px solid var(--bg-dark);
}

.mona-bubble-ping::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: mona-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes mona-ping {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* Mona Popup */
.mona-popup {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px 16px 4px 16px;
    padding: 14px 18px;
    max-width: 260px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mona-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mona-popup p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.mona-popup-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.mona-popup-close:hover {
    color: var(--text-primary);
}

/* Hide Mona when booking section is in view */
.mona-chat.mona-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .mona-chat {
        bottom: 80px;
        right: 16px;
    }

    .mona-bubble {
        width: 56px;
        height: 56px;
    }

    .mona-popup {
        max-width: 220px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .step-pulse,
    .aurora-bg::before,
    .aurora-bg::after,
    .number-ticker.counting,
    .gradient-text-shimmer,
    .float-gentle,
    .glow-pulse {
        animation: none;
    }
}
