/* ============================================
   THE JUNK HOUSE — Premium Website Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --primary: #E8590C;
    --primary-light: #FF6B1A;
    --primary-dark: #C44B0A;
    --primary-50: #FFF4ED;
    --primary-100: #FFE6D5;
    --primary-200: #FECCAB;

    --neutral-50: #FAFAF9;
    --neutral-100: #F5F5F4;
    --neutral-200: #E7E5E4;
    --neutral-300: #D6D3D1;
    --neutral-400: #A8A29E;
    --neutral-500: #78716C;
    --neutral-600: #57534E;
    --neutral-700: #44403C;
    --neutral-800: #292524;
    --neutral-900: #1C1917;
    --neutral-950: #0C0A09;

    --white: #FFFFFF;
    --bg: #FDFCFB;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-py: clamp(40px, 5vw, 64px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--neutral-700);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,89,12,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-text {
    animation: preloaderBounce 1s ease infinite;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
}
@keyframes preloaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.preloader-bar {
    width: 180px;
    height: 3px;
    background: var(--neutral-200);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    animation: preloaderFill 1.5s var(--ease-out-expo) forwards;
}
@keyframes preloaderFill {
    from { width: 0; }
    to { width: 100%; }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(253,252,251,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 4px;
    transition: color 0.3s ease;
}
.nav-logo:hover {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,89,12,0.3);
}
.nav-cta-pulse {
    position: absolute;
    left: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out-expo);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-link { font-size: 24px; }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    /* overflow removed so Problem explosion isn't clipped - .hero-bg handles bg containment */
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(20%);
}
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-100);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.hero-gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: #DBEAFE;
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}
.hero-gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--primary-50);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}
@keyframes orbFloat {
    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); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* --- Premium Hero Layers --- */

/* Noise/Grain Texture */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    pointer-events: none;
}

/* Light Sweep Beam */
.hero-light-sweep {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.hero-light-sweep::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.04) 45%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.04) 55%,
        transparent 60%
    );
    animation: lightSweep 8s ease-in-out infinite;
    animation-delay: 3s;
}
@keyframes lightSweep {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateX(350%) rotate(0deg); opacity: 1; }
    60% { opacity: 0; }
}

/* Floating Particles */
/* Glowing Color-Shift on "Problem." */
.hero-title-em {
    animation: glowShift 6s ease-in-out infinite;
}
@keyframes glowShift {
    0%, 100% {
        color: #E8590C;
        text-shadow: 0 0 20px rgba(232,89,12,0.15), 0 0 40px rgba(232,89,12,0);
    }
    33% {
        color: #FF6B1A;
        text-shadow: 0 0 30px rgba(255,107,26,0.3), 0 0 60px rgba(255,107,26,0.1);
    }
    66% {
        color: #F97316;
        text-shadow: 0 0 25px rgba(249,115,22,0.25), 0 0 50px rgba(249,115,22,0.08);
    }
}

/* Enhanced Title Entrance - Clip Path Reveals */
.hero-title-line {
    display: block;
    clip-path: inset(100% 0 0 0);
    animation: titleReveal 1s var(--ease-out-expo) forwards;
    animation-delay: var(--delay, 0.2s);
}
@keyframes titleReveal {
    from { clip-path: inset(100% 0 0 0); }
    to { clip-path: inset(0 0 0 0); }
}
/* Override the basic reveal-up on title lines since we use clip-path now */
.hero-title-line.reveal-up {
    opacity: 1;
    transform: none;
}

/* Hero Stats Bounce Entrance */
.hero-stat-number {
    animation: statBounce 0.6s var(--ease-out-expo) both;
}
.hero-stat:nth-child(1) .hero-stat-number { animation-delay: 1.2s; }
.hero-stat:nth-child(3) .hero-stat-number { animation-delay: 1.35s; }
.hero-stat:nth-child(5) .hero-stat-number { animation-delay: 1.5s; }
@keyframes statBounce {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile: hide heavy animations for performance */
@media (max-width: 768px) {
    .hero-light-sweep { display: none; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-600);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}
.hero-badge:hover {
    border-color: var(--primary-200);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--neutral-950);
    margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-title-em {
    font-style: italic;
    color: var(--primary);
    position: relative;
}
.hero-title-em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-200);
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.8s 1s var(--ease-out-expo) forwards;
}
@keyframes underlineReveal {
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--neutral-500);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--neutral-900);
}
.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--neutral-500);
    font-weight: 500;
    margin-top: 2px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

/* 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(--neutral-400);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 1s 1.5s both;
}
.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--neutral-300);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--neutral-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}
@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(232,89,12,0.2);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,89,12,0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--neutral-700);
    border: 1.5px solid var(--neutral-200);
}
.btn-outline:hover {
    border-color: var(--primary-200);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--neutral-900);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Marquee --- */
.marquee-section {
    padding: 24px 0;
    background: var(--neutral-900);
    overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee-dot {
    color: var(--primary);
    font-size: 10px;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Sections --- */
.section {
    padding: var(--section-py) 0;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}
.section-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,89,12,0.25);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    color: var(--primary);
}
.section-subtitle {
    font-size: 17px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
    border-color: var(--primary-200);
}
.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out-expo);
}
.service-card:hover .service-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--neutral-100);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}
.service-card-featured .service-card-number { color: var(--primary-100); }

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-card:hover .service-card-title { color: var(--primary); }
.service-card-text {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s var(--ease-out-expo);
}
.service-card-link:hover { gap: 10px; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* --- How It Works / Steps --- */
.how-it-works { background: var(--neutral-50); }
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: flex;
    gap: 28px;
    padding: 32px 0;
}
.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(232,89,12,0.25);
}
.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary-200), transparent);
    margin-top: 12px;
}
.step-content { padding-top: 8px; }
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.step:hover .step-title { color: var(--primary); }
.step-text {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.cta-banner-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--white);
    top: -200px;
    right: -100px;
    animation: orbFloat 15s ease-in-out infinite;
}
.cta-banner-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -100px;
    left: -50px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}
.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-banner-title em { font-style: italic; }
.cta-banner-text {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}
.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Service Areas --- */
.areas {
    padding-top: clamp(40px, 5vw, 60px);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.area-group {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out-expo);
}
.area-group:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.area-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.area-group-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-sm);
}
.area-group-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    transition: color 0.3s ease;
}
.area-group:hover .area-group-title { color: var(--primary); }
.area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
}
.area-list li {
    font-size: 14px;
    color: var(--neutral-600);
    padding: 4px 0;
    transition: color 0.2s;
}
.area-list li:hover { color: var(--primary); }

@media (max-width: 768px) {
    .areas-grid { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: repeat(2, 1fr); }
}

/* --- Testimonials --- */
.testimonials { background: var(--neutral-50); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}
.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    transition: color 0.3s ease;
}
.testimonial-card:hover .testimonial-name { color: var(--primary); }
.testimonial-location {
    font-size: 13px;
    color: var(--neutral-400);
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}
.testimonials-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.testimonials-review-btn:hover svg {
    fill: var(--primary);
    stroke: var(--primary);
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* --- Why Choose Us --- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.why-us-text {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 32px;
}
.why-us-features { display: flex; flex-direction: column; gap: 20px; }
.why-us-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-us-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
}
.why-us-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}
.why-us-feature p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

.why-us-visual { display: flex; justify-content: center; }

@media (max-width: 768px) {
    .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-text {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
}
.contact-method:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.contact-method-label {
    font-size: 12px;
    color: var(--neutral-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-method-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-900);
    transition: color 0.3s ease;
}
.contact-method:hover .contact-method-value { color: var(--primary); }

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--neutral-800);
    background: var(--neutral-50);
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,89,12,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--neutral-400);
    margin-top: 16px;
}

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

/* --- Footer --- */
.footer {
    background: var(--neutral-950);
    padding: 60px 0 0;
    color: var(--neutral-400);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 4px;
    transition: color 0.3s ease;
}
.footer-logo:hover {
    color: var(--primary-light);
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-500);
}

.footer-links-group h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links-group a,
.footer-links-group p {
    display: block;
    font-size: 14px;
    color: var(--neutral-500);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--primary-light); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--neutral-600);
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
}

/* --- Floating CTA (Mobile) --- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 16px;
    right: 16px;
    z-index: 900;
    display: flex;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}
.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}
.floating-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out-expo);
}
.floating-cta-call {
    background: var(--primary);
    box-shadow: 0 8px 32px rgba(232,89,12,0.35);
    animation: floatingPulse 3s ease-in-out infinite;
}
.floating-cta-text {
    background: var(--neutral-900);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.floating-cta-btn:hover {
    transform: translateY(-2px);
}
.floating-cta-call:hover {
    box-shadow: 0 12px 40px rgba(232,89,12,0.45);
}
.floating-cta-text:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
@keyframes floatingPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(232,89,12,0.35); }
    50% { box-shadow: 0 8px 40px rgba(232,89,12,0.5); }
}

@media (min-width: 769px) {
    .floating-cta { display: none; }
}

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

/* --- Hero Floating Images --- */
.hero-img-float {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 0.18;
    z-index: 1;
    animation: heroImgFloat 20s ease-in-out infinite;
}
.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-float-1 {
    width: 320px;
    height: 220px;
    top: 12%;
    right: 5%;
    animation-delay: 0s;
    transform: rotate(3deg);
}
.hero-img-float-2 {
    width: 280px;
    height: 200px;
    bottom: 15%;
    left: 4%;
    animation-delay: -10s;
    transform: rotate(-2deg);
}
@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}
@media (max-width: 900px) {
    .hero-img-float { display: none; }
}

/* --- Steps Visual Layout --- */
.steps-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.steps-images { position: relative; }
.steps-image-stack {
    position: relative;
    height: 500px;
}
.steps-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}
.steps-img-1 {
    width: 320px;
    height: 420px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.steps-img-2 {
    width: 260px;
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--white);
}
.steps-img-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(232,89,12,0.3);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}
.steps-img-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.steps-img-badge-text {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}
.steps {
    max-width: 100%;
}
@media (max-width: 768px) {
    .steps-visual { grid-template-columns: 1fr; }
    .steps-images { display: none; }
}

/* --- Before & After Section --- */
.before-after {
    overflow: hidden;
    padding-bottom: clamp(20px, 3vw, 40px);
}
.ba-viewport {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ba-track {
    display: flex;
    gap: 28px;
    justify-content: center;
    padding-bottom: 0;
}
.ba-card {
    flex: 1;
    max-width: 380px;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
}
.ba-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}
.ba-before, .ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-after {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: auto;
    cursor: col-resize;
}
.ba-slider-line {
    width: 3px;
    flex: 1;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-slider-circle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    color: var(--neutral-700);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ba-slider:hover .ba-slider-circle {
    transform: scale(1.1);
}
.ba-label {
    position: absolute;
    top: 12px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    z-index: 4;
}
.ba-label-before {
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
}
.ba-label-after {
    right: 12px;
    background: var(--primary);
    color: var(--white);
}
.ba-card-info {
    padding: 20px 24px;
}
.ba-card-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--neutral-900);
}
.ba-card-info p {
    font-size: 13px;
    color: var(--neutral-500);
}
@media (max-width: 900px) {
    .ba-track { flex-wrap: wrap; justify-content: center; }
    .ba-card { min-width: 300px; max-width: 100%; }
}

/* --- Why Us Image --- */
.why-us-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}
.why-us-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.why-us-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
    text-align: left;
}
.why-us-card-overlay .why-us-card-icon {
    color: var(--primary-light);
    margin-bottom: 8px;
}
.why-us-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.why-us-card-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* --- FAQ Section --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--neutral-200);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    text-align: left;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--primary);
}
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--neutral-100);
    font-size: 20px;
    font-weight: 400;
    color: var(--neutral-500);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-answer p {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-600);
}
.faq-item.active .faq-answer {
    max-height: 400px;
}

/* --- Extra Movement: Reveal Scale --- */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* --- Floating Shapes Background --- */
.section-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.section-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--primary);
}
.section-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: orbFloat 25s ease-in-out infinite;
}
.section-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

/* --- Smooth Scroll Bar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--neutral-100);
}
::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-400);
}

/* --- Blog Pages --- */
.blog-header {
    padding: clamp(140px, 18vw, 200px) 0 clamp(40px, 6vw, 60px);
    background: var(--neutral-900);
    color: var(--white);
    text-align: center;
}
.blog-header .section-tag {
    color: var(--primary);
}
.blog-header .section-title {
    color: var(--white);
}
.blog-header .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.blog-listing {
    background: var(--neutral-50);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.blog-card-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 12px;
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.3;
    margin-bottom: 12px;
}
.blog-card-excerpt {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--neutral-400);
}

/* Blog Article Page */
.blog-article-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(40px, 6vw, 60px);
    background: var(--neutral-900);
    color: var(--white);
}
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}
.blog-back-link:hover {
    color: var(--primary);
}
.blog-article-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.blog-article-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}

.blog-article-content {
    max-width: 720px;
    margin: 0 auto;
}
.blog-article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--neutral-700);
    margin-bottom: 24px;
}
.blog-article-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 48px 0 16px;
    line-height: 1.3;
}
.blog-article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 32px 0 12px;
}
.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 24px 24px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--neutral-700);
}
.blog-article-content li {
    margin-bottom: 8px;
}
.blog-article-content strong {
    color: var(--neutral-900);
}

/* Blog Table */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 15px;
}
.blog-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--neutral-900);
    color: var(--white);
    font-weight: 600;
}
.blog-table th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}
.blog-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}
.blog-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--neutral-200);
    color: var(--neutral-700);
}
.blog-table tr:nth-child(even) td {
    background: var(--neutral-50);
}

/* Blog CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #c2410c 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 48px 0;
}
.blog-cta-box h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
}
.blog-cta-box p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 24px;
}
.blog-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Related Articles */
.blog-related {
    background: var(--neutral-50);
}
.blog-related-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-article-content h2 {
        font-size: 24px;
        margin-top: 36px;
    }
    .blog-cta-box {
        padding: 28px 20px;
    }
    .blog-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }
}

/* --- Selection --- */
::selection {
    background: var(--primary-200);
    color: var(--neutral-900);
}
