:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --tertiary-black: #1a1a1a;
    --card-black: #0f0f0f;
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-orange: #ff4500;
    --bright-orange: #ff7a47;
    --primary-white: #ffffff;
    --secondary-white: #f5f5f5;
    --text-gray: #cccccc;
    --text-light-gray: #e0e0e0;

    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    --gradient-secondary: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 69, 0, 0.2) 100%);

    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.5);
    --glow-orange-lg: 0 0 40px rgba(255, 107, 53, 0.6);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--primary-white);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

/* ===== ANIMATED BACKGROUND ===== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #0a0a0a 0%, #000000 100%);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px);
    background-size: 80px 80px;
    animation: perspectiveGrid 20s linear infinite;
    transform-origin: center center;
    opacity: 0.3;
}

@keyframes perspectiveGrid {
    0% {
        transform: perspective(500px) rotateX(60deg) translateZ(0px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateZ(100px);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before {
    background-image:
        radial-gradient(2px 2px at 20% 30%, #ff6b35, transparent),
        radial-gradient(2px 2px at 60% 70%, #ff8c42, transparent),
        radial-gradient(1px 1px at 50% 50%, #ffffff, transparent),
        radial-gradient(1px 1px at 80% 10%, #ff6b35, transparent),
        radial-gradient(2px 2px at 90% 60%, #ff4500, transparent),
        radial-gradient(1px 1px at 33% 80%, #ffffff, transparent),
        radial-gradient(2px 2px at 15% 90%, #ff6b35, transparent),
        radial-gradient(1px 1px at 25% 15%, #ff8c42, transparent),
        radial-gradient(1px 1px at 75% 40%, #ffffff, transparent),
        radial-gradient(2px 2px at 45% 95%, #ff6b35, transparent);
    background-size: 200% 200%;
    animation: particleFloat 40s ease-in-out infinite;
    opacity: 0.4;
}

.floating-particles::after {
    background-image:
        radial-gradient(1px 1px at 35% 45%, #ff6b35, transparent),
        radial-gradient(1px 1px at 65% 25%, #ffffff, transparent),
        radial-gradient(2px 2px at 85% 75%, #ff8c42, transparent),
        radial-gradient(1px 1px at 15% 55%, #ff4500, transparent),
        radial-gradient(1px 1px at 55% 85%, #ffffff, transparent);
    background-size: 200% 200%;
    animation: particleFloat 50s ease-in-out infinite reverse;
    opacity: 0.3;
}

@keyframes particleFloat {

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

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

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: orbFloat 20s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(255, 107, 53, 0.3);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b35 0%, #ff4500 100%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff8c42 0%, #ff6b35 100%);
    bottom: -10%;
    left: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff6b35 0%, #ff8c42 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.15;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    33% {
        transform: translate(80px, -80px) scale(1.2);
        opacity: 0.25;
    }

    66% {
        transform: translate(-80px, 80px) scale(0.9);
        opacity: 0.15;
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #ff6b35, transparent) 1;
    animation: slideDown 0.5s ease;
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 110px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-highlight {
    color: var(--primary-orange);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.2px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

.cta-button {
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.cta-button-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: var(--transition-normal);
    display: block;
}

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

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

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

/* ===== HERO SECTION ===== */
/* ========================================
   HERO SECTION - Futuristic Design
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Animated Background - Earth & Phoenix */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        url('https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    animation: globeSpin 120s linear infinite;
}

.hero-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 40%, rgba(255, 140, 66, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    animation: phoenixGlow 8s ease-in-out infinite;
}

.hero-grid::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: phoenixFloat 12s ease-in-out infinite;
}

/* Blinking Stars Background */
.stars-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    mask-image: radial-gradient(circle at center, transparent 45%, black 85%);
    -webkit-mask-image: radial-gradient(circle at center, transparent 45%, black 85%);
}

.stars-background::before,
.stars-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        /* Small Stars - White/Orange tint */
        120px 80px 1px 0px rgba(255, 200, 150, 0.9),
        340px 150px 1px 0px rgba(255, 180, 120, 0.8),
        580px 200px 1px 0px rgba(255, 220, 180, 0.85),
        780px 120px 1px 0px rgba(255, 190, 130, 0.9),
        950px 280px 1px 0px rgba(255, 210, 160, 0.8),
        1150px 180px 1px 0px rgba(255, 180, 110, 0.85),
        1320px 320px 1px 0px rgba(255, 200, 140, 0.9),

        /* Medium-bright stars */
        200px 420px 1.5px 0px rgba(255, 190, 120, 1),
        450px 380px 1.5px 0px rgba(255, 210, 150, 0.95),
        680px 450px 1.5px 0px rgba(255, 180, 100, 0.9),
        890px 520px 1.5px 0px rgba(255, 200, 130, 0.95),
        1080px 480px 1.5px 0px rgba(255, 190, 110, 1),
        1280px 550px 1.5px 0px rgba(255, 210, 140, 0.9),

        /* Scattered stars */
        80px 220px 1px 0px rgba(255, 180, 120, 0.7),
        250px 600px 1px 0px rgba(255, 200, 140, 0.75),
        420px 650px 1px 0px rgba(255, 190, 130, 0.8),
        620px 580px 1px 0px rgba(255, 210, 150, 0.7),
        820px 680px 1px 0px rgba(255, 180, 110, 0.75),
        1020px 640px 1px 0px rgba(255, 200, 130, 0.8),
        1220px 720px 1px 0px rgba(255, 190, 120, 0.7),

        /* Top area stars */
        180px 40px 1px 0px rgba(255, 200, 140, 0.8),
        380px 60px 1px 0px rgba(255, 180, 110, 0.85),
        580px 90px 1px 0px rgba(255, 210, 150, 0.8),
        780px 50px 1px 0px rgba(255, 190, 120, 0.85),
        980px 110px 1px 0px rgba(255, 200, 130, 0.8),
        1180px 70px 1px 0px rgba(255, 180, 100, 0.85),

        /* Additional scattered stars */
        90px 480px 1px 0px rgba(255, 190, 130, 0.75),
        310px 520px 1px 0px rgba(255, 210, 150, 0.8),
        530px 340px 1px 0px rgba(255, 180, 110, 0.75),
        730px 400px 1px 0px rgba(255, 200, 140, 0.8),
        930px 380px 1px 0px rgba(255, 190, 120, 0.75),
        1130px 420px 1px 0px rgba(255, 210, 150, 0.8),

        /* Brighter accent stars */
        400px 280px 2px 1px rgba(255, 200, 130, 1),
        720px 320px 2px 1px rgba(255, 190, 120, 0.95),
        1040px 360px 2px 1px rgba(255, 210, 140, 1);
    animation: starsGlow1 4s ease-in-out infinite;
}

.stars-background::after {
    box-shadow:
        /* Different pattern for second layer */
        160px 120px 1px 0px rgba(255, 210, 150, 0.85),
        360px 180px 1px 0px rgba(255, 190, 120, 0.8),
        560px 240px 1px 0px rgba(255, 200, 140, 0.85),
        760px 160px 1px 0px rgba(255, 180, 110, 0.8),
        960px 300px 1px 0px rgba(255, 210, 150, 0.85),
        1160px 220px 1px 0px rgba(255, 190, 120, 0.8),

        /* More variety */
        220px 460px 1.5px 0px rgba(255, 200, 130, 0.95),
        470px 420px 1.5px 0px rgba(255, 180, 110, 0.9),
        690px 490px 1.5px 0px rgba(255, 210, 150, 0.95),
        910px 560px 1.5px 0px rgba(255, 190, 120, 0.9),
        1100px 520px 1.5px 0px rgba(255, 200, 140, 0.95),

        /* Additional scattered */
        100px 580px 1px 0px rgba(255, 180, 110, 0.75),
        300px 640px 1px 0px rgba(255, 210, 150, 0.8),
        500px 600px 1px 0px rgba(255, 190, 120, 0.75),
        700px 680px 1px 0px rgba(255, 200, 140, 0.8),
        900px 620px 1px 0px rgba(255, 180, 110, 0.75),
        1100px 660px 1px 0px rgba(255, 210, 150, 0.8),

        /* Top scattered */
        140px 80px 1px 0px rgba(255, 190, 120, 0.8),
        340px 100px 1px 0px rgba(255, 210, 150, 0.85),
        540px 130px 1px 0px rgba(255, 180, 110, 0.8),
        740px 90px 1px 0px rgba(255, 200, 140, 0.85),
        940px 150px 1px 0px rgba(255, 190, 120, 0.8),
        1140px 110px 1px 0px rgba(255, 210, 150, 0.85),

        /* Bright accents */
        520px 260px 2px 1px rgba(255, 190, 120, 1),
        840px 300px 2px 1px rgba(255, 210, 150, 0.95);
    animation: starsGlow2 5s ease-in-out infinite 1s;
}

@keyframes starsGlow1 {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes starsGlow2 {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes globeSpin {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes phoenixGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes phoenixFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(-100px, -80px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, 100px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translate(80px, -50px) scale(1.1);
        opacity: 0.7;
    }
}

/* Container */
.hero-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

/* Hero Text Content */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    text-align: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-orange);
    width: fit-content;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: ringExpand 2s ease-in-out infinite;
}

@keyframes pulseRing {

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

    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.8px;
    color: var(--primary-white);
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {

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

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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-gray);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Tools Section */
.hero-tools {
    margin-top: 1rem;
}

.tools-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.tool-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tool-logo:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.tool-logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.tool-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Partner Logos Auto-Scrolling Carousel - Transparent Background */
.logos-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
}

/* Left fade gradient overlay */
.logos-carousel-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, var(--primary-black) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Right fade gradient overlay */
.logos-carousel-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-black) 100%);
    z-index: 10;
    pointer-events: none;
}

.logos-carousel-container {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 2.5rem 1rem;
    animation: scroll-right-to-left 45s linear infinite;
}

.logos-carousel-container:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    padding: 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.logo-item:hover {
    transform: scale(1.15);
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.75);
    transition: filter 0.3s ease-in-out;
}

.logo-item:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

/* Infinite scroll animation - Right to Left */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Responsive Carousel Styles */
@media (max-width: 992px) {
    .logos-carousel-wrapper {
        margin-top: 1.5rem;
    }

    .logos-carousel-wrapper::before,
    .logos-carousel-wrapper::after {
        width: 80px;
    }

    .logos-carousel-container {
        gap: 2.5rem;
        padding: 1.5rem 0.75rem;
    }

    .logo-item {
        width: 120px;
        height: 85px;
        padding: 0.875rem;
    }

    .logo-item img {
        height: 44px;
    }
}

@media (max-width: 768px) {

    .logos-carousel-wrapper::before,
    .logos-carousel-wrapper::after {
        width: 60px;
    }

    .logos-carousel-container {
        gap: 2rem;
        padding: 1.25rem 0.5rem;
    }

    .logo-item {
        width: 110px;
        height: 80px;
        padding: 0.75rem;
    }

    .logo-item img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .logos-carousel-wrapper {
        margin-top: 1.25rem;
    }

    .logos-carousel-wrapper::before,
    .logos-carousel-wrapper::after {
        width: 50px;
    }

    .logos-carousel-container {
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }

    .logo-item {
        width: 100px;
        height: 75px;
        padding: 0.625rem;
    }

    .logo-item img {
        height: 36px;
    }
}

/* Right Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.stats-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    padding: 2rem;
}

/* Floating Stat Cards - Compact for One-Pager */
.stat-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1.06rem 1.5rem;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.85));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 17px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8),
        0 5px 15px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 107, 53, 0.15);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 170px;
    max-width: 204px;
    width: auto;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.9));
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9),
        0 8px 25px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 107, 53, 0.25);
}

.stat-icon {
    font-size: 1.9rem;
    line-height: 1;
    filter: drop-shadow(0 3px 12px rgba(255, 107, 53, 0.6));
    margin-bottom: 0.2rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label {
    font-size: 0.64rem;
    color: var(--text-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: var(--font-heading);
    margin: 0;
    text-shadow: 0 3px 15px rgba(255, 107, 53, 0.7);
    line-height: 1;
}

/* Individual Card Animations & Positions - Spread Across Right Column */
.stat-1 {
    top: 5%;
    right: -30%;
    animation: float1 6s ease-in-out infinite;
}

.stat-2 {
    top: 48%;
    left: 70%;
    transform: translateX(-50%);
    animation: float2 7s ease-in-out infinite 1s;
}

.stat-3 {
    bottom: 8%;
    left: 10%;
    animation: float3 8s ease-in-out infinite 2s;
}

@keyframes float1 {

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

    25% {
        transform: translateY(-10px) translateX(4px);
    }

    50% {
        transform: translateY(-5px) translateX(-3px);
    }

    75% {
        transform: translateY(-12px) translateX(2px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    25% {
        transform: translateX(-50%) translateY(-8px);
    }

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

    75% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes float3 {

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

    25% {
        transform: translateY(-12px) translateX(-4px);
    }

    50% {
        transform: translateY(-7px) translateX(5px);
    }

    75% {
        transform: translateY(-10px) translateX(-3px);
    }
}

/* ===== SECTION COMMON STYLES ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.problem-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.7));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 107, 53, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
}

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

.problem-card:hover::after {
    left: 0;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), var(--glow-orange);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.8));
}

.problem-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

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

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

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    letter-spacing: -0.1px;
}

.problem-subtext {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.9));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-glow);
    transition: height 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.4), var(--glow-orange-lg);
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3rem;
    margin: -2rem auto 1rem;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid var(--primary-black);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 107, 53, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 80px rgba(255, 107, 53, 0.4);
    }
}

.service-card {
    padding: 0 0 2rem 0;
}

.service-card>* {
    padding: 0 2rem;
}

.service-card .service-image {
    padding: 0;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    letter-spacing: -0.1px;
}

.service-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-platforms {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-platforms img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.service-platforms img:hover {
    opacity: 1;
}

.platform-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-orange);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-link:hover {
    gap: 1rem;
}

.service-link.active {
    color: var(--primary-white);
    background: var(--gradient-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.service-card.featured .service-link.active {
    display: inline-flex;
    padding: 0.8rem 1rem;
    max-width: 200px;
    margin-left: 1.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

/* ===== RESULTS SECTION ===== */
.results-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-left: 11rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: visible;
    min-height: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(255, 107, 53, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.stat-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4), var(--glow-orange-lg);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 0;
    filter: grayscale(100%);
    transition: var(--transition-normal);
    line-height: 1;
}

.stat-card:hover .stat-icon {
    filter: grayscale(0%);
    animation: iconRotate 0.5s ease;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-number-group {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    margin-bottom: 0;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-top: 0;
    letter-spacing: -0.3px;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.1px;
    line-height: 1.4;
    padding: 0 0.5rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr 300px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 300px 1fr 100px;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-number {
    order: 3;
}

.timeline-item:nth-child(even) .timeline-visual {
    order: 1;
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.timeline-content {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    letter-spacing: -0.1px;
    line-height: 1.6;
}

.timeline-duration {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-visual {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.timeline-visual:hover img {
    transform: scale(1.1);
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
    opacity: 0.3;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.industry-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 1));
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.35), var(--glow-orange);
}

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

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
    transform: scale(1.2) rotate(5deg);
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary-white);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.centered {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent) 1;
    box-shadow: inset 0 0 100px rgba(255, 107, 53, 0.1);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-background::before,
.cta-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-background::before {
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.15) 0%, transparent 40%);
}

.cta-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 69, 0, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 15s ease-in-out infinite;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    letter-spacing: -0.2px;
    line-height: 1.6;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.trust-item svg {
    color: var(--primary-orange);
}

.consultation-form {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(255, 107, 53, 0.05);
    position: relative;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

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

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3), inset 0 0 10px rgba(255, 107, 53, 0.1);
}

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

.consultation-form textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
}

.btn-primary.large,
.btn-large {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent) 1;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.newsletter-signup h4 {
    font-family: var(--font-heading);
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    color: var(--primary-white);
    font-family: var(--font-body);
}

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

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: var(--primary-white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--primary-white);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.contact-info svg {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    color: var(--text-gray);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-hero-text {
    animation: fadeInUp 0.8s ease;
}

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

.mini-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.mini-stat:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.mini-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mini-stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    letter-spacing: -0.1px;
}

.about-hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.about-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    z-index: 1;
    background: var(--gradient-glow);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.mission-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.7));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 107, 53, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), var(--glow-orange);
}

.mission-card.featured-mission {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border-width: 3px;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.mission-card:hover .mission-icon {
    filter: grayscale(0%);
    transform: scale(1.1) rotate(5deg);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: -0.5px;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    letter-spacing: -0.1px;
}

/* Story Section */
.story-section {
    position: relative;
}

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

.story-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    letter-spacing: -0.8px;
}

.story-text p {
    color: var(--text-light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    letter-spacing: -0.1px;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-orange), var(--accent-orange));
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.timeline-event {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--primary-black);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.timeline-event h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.timeline-event p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.value-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), var(--glow-orange);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    letter-spacing: -0.1px;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light-gray);
    margin-top: -2rem;
    margin-bottom: 3rem;
    letter-spacing: -0.2px;
}

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

.team-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.9));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links-team {
    display: flex;
    gap: 1rem;
}

.social-links-team a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.social-links-team a:hover {
    background: var(--gradient-primary);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.team-role {
    color: var(--primary-orange);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.875rem;
    letter-spacing: -0.1px;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.why-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.7));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
}

.why-card:hover::before {
    left: 0;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), var(--glow-orange);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
    transition: var(--transition-normal);
}

.why-card:hover .why-number {
    opacity: 1;
    transform: scale(1.1);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: -0.5px;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    letter-spacing: -0.1px;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::before {
    width: 100%;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.quick-info-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.quick-info-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
}

.quick-info-item div {
    text-align: left;
}

.quick-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.25rem;
}

.quick-info-item span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0 6rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: -0.8px;
}

.form-description {
    color: var(--text-light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.main-contact-form {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.form-checkbox label {
    font-size: 0.9375rem;
    color: var(--text-gray);
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.7));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.expect-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.expect-item:last-child {
    margin-bottom: 0;
}

.expect-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-white);
}

.expect-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.25rem;
}

.expect-content p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light-gray);
    font-size: 0.9375rem;
}

.trust-list li svg {
    flex-shrink: 0;
}

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

.cta-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-normal);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
}

.sidebar-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.hours {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

/* FAQ Section */
.faq-section,
.pricing-faq-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.faq-section::before,
.pricing-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.faq-item {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.7));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero Section */
.pricing-hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

/* Pricing Cards Section */
.pricing-cards-section {
    position: relative;
    padding: 4rem 0 6rem;
}

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

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.9));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-glow);
    transition: height 0.5s ease;
    z-index: 0;
}

.pricing-card:hover::before {
    height: 100%;
}

.pricing-card>* {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured-pricing {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 50px rgba(255, 107, 53, 0.4);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured-pricing:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-right: 0.25rem;
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    align-self: flex-end;
    margin-bottom: 0.75rem;
}

.custom-price {
    font-size: 3rem;
}

.pricing-description {
    text-align: center;
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 48px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light-gray);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

.setup-fee {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.9));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.guarantee-content p {
    color: var(--text-light-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Comparison Table Section */
.comparison-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange) 20%, var(--accent-orange) 50%, var(--primary-orange) 80%, transparent);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 20, 0.9));
}

.comparison-table thead {
    background: rgba(26, 26, 26, 0.9);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-white);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--text-light-gray);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary-white);
}

.comparison-table tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.featured-col {
    background: rgba(255, 107, 53, 0.05);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    border-right: 2px solid rgba(255, 107, 53, 0.3);
}

/* ROI Calculator Section */
.roi-section {
    position: relative;
    padding: 6rem 0;
}

.roi-calculator {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.roi-input-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
}

.roi-input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.7);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-normal);
}

.roi-input-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

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

.roi-result-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.roi-result-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.roi-result-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roi-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform 0.2s ease;
}

.roi-result-card.highlight-roi {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border-width: 3px;
}

.roi-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.75rem;
    font-style: italic;
}

/* ===== BLOG PAGE ===== */
.blog-hero-section {
    padding: 8rem 2rem 3rem;
    position: relative;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 600px;
}

.blog-search-bar {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    transition: var(--transition-normal);
}

.blog-search-bar:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.blog-search-bar svg {
    color: var(--text-gray);
    flex-shrink: 0;
}

.blog-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary-white);
    font-size: 1rem;
    font-family: var(--font-body);
}

.blog-search-bar input::placeholder {
    color: var(--text-gray);
}

/* Category Filters */
.blog-categories-section {
    padding: 0 2rem 2rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--text-light-gray);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Featured Post */
.featured-post-section {
    padding: 0 2rem 2.1rem;
}

.featured-post-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: var(--transition-normal);
}

.featured-post-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.featured-post-content {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.875rem;
}

.post-category {
    padding: 0.375rem 1rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 500;
}

.post-date,
.post-read-time {
    color: var(--text-gray);
}

.featured-post-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.featured-post-excerpt {
    font-size: 1.0625rem;
    color: var(--text-light-gray);
    line-height: 1.7;
}

.featured-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1.5rem;
}

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

.author-avatar {
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--primary-white);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: 2rem 2rem 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--text-light-gray);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

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

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--text-light-gray);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--text-light-gray);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.page-number:hover {
    border-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.page-number.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.pagination-dots {
    color: var(--text-gray);
    padding: 0 0.5rem;
}

/* Blog Loading States */
.loading-placeholder,
.loading,
.empty-state,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
    font-size: 1.125rem;
}

.error-message {
    color: var(--accent-orange);
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.newsletter-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--text-light-gray);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    transition: var(--transition-normal);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.newsletter-input-group svg {
    color: var(--text-gray);
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary-white);
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-input-group input::placeholder {
    color: var(--text-gray);
}

.newsletter-input-group .btn-primary {
    margin: 0;
    flex-shrink: 0;
}

.newsletter-privacy {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.newsletter-privacy a {
    color: var(--primary-orange);
    text-decoration: none;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

.newsletter-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.newsletter-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.newsletter-stat:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.newsletter-stat .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.newsletter-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ===== KNOWLEDGE HUB PAGE ===== */
.knowledge-hero-section {
    padding: 10rem 2rem 6rem;
    position: relative;
    text-align: center;
}

.knowledge-hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.knowledge-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 700px;
}

.knowledge-search-bar {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 1.25rem 1.75rem;
    transition: var(--transition-normal);
}

.knowledge-search-bar:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.knowledge-search-bar svg {
    color: var(--text-gray);
    flex-shrink: 0;
}

.knowledge-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary-white);
    font-size: 1.0625rem;
    font-family: var(--font-body);
}

.knowledge-search-bar input::placeholder {
    color: var(--text-gray);
}

/* Knowledge Stats */
.knowledge-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.knowledge-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.knowledge-stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.knowledge-stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Popular Topics */
.popular-topics-section {
    padding: 4rem 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.topic-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.topic-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.topic-card:hover .topic-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.topic-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
}

.topic-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.topic-count {
    font-size: 0.875rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    width: 100%;
}

/* Featured Guides */
.featured-guides-section {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light-gray);
}

.featured-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-guide-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-guide-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.guide-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-icon {
    font-size: 2.5rem;
}

.guide-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guide-type {
    font-size: 0.875rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.guide-duration {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.guide-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    line-height: 1.3;
}

.guide-excerpt {
    font-size: 0.9375rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    flex: 1;
}

.guide-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.guide-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-light-gray);
}

.guide-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: auto;
}

.guide-link:hover {
    gap: 0.75rem;
}

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

.featured-guide-card:hover .guide-link svg {
    transform: translateX(4px);
}

/* Quick Start Section */
.quick-start-section {
    padding: 6rem 2rem;
}

.quick-start-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quick-start-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.quick-start-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quick-start-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.quick-start-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.quick-start-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.quick-start-item-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.quick-start-item-content p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.quick-start-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.quick-start-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* All Resources */
.all-resources-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.resource-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.resource-filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--text-light-gray);
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-normal);
}

.resource-filter-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.resource-filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.resource-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.resource-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.resource-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-type {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    line-height: 1.3;
}

.resource-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    flex: 1;
}

.resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.resource-time {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.resource-link {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Knowledge CTA */
.knowledge-cta-section {
    padding: 6rem 2rem;
}

.knowledge-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-icon {
    font-size: 4rem;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== ROI CALCULATOR PAGE ===== */
.roi-hero-section {
    padding: 10rem 2rem 4rem;
    position: relative;
    text-align: center;
}

.roi-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.roi-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.calculator-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Calculator Form */
.calculator-form-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 3rem;
    position: sticky;
    top: 100px;
}

.calculator-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
}

.calculator-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.roi-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-white);
}

.label-help {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.form-group input[type="number"] {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1.25rem;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

.input-with-prefix input {
    padding-left: 2.5rem;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.checkbox-label:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    color: var(--primary-white);
    font-size: 0.875rem;
    font-weight: 700;
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--text-light-gray);
}

.checkbox-label input[type="checkbox"]:checked~.checkbox-text {
    color: var(--primary-white);
}

.btn-calculate {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    font-size: 1.0625rem;
    padding: 1.25rem 2rem;
}

/* Results Panel */
.calculator-results-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.calculator-results-card.results-animate {
    animation: resultsUpdate 0.6s ease;
}

@keyframes resultsUpdate {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.results-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.results-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
}

.results-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Results Metrics */
.results-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.metric-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.metric-card.highlight-metric {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    border-color: var(--primary-orange);
}

.metric-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-detail {
    font-size: 0.8125rem;
    color: var(--text-light-gray);
}

/* Results Breakdown */
.results-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.breakdown-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.breakdown-item.highlight-breakdown {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.breakdown-label {
    font-size: 0.9375rem;
    color: var(--text-light-gray);
}

.breakdown-value {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-white);
}

.highlight-breakdown .breakdown-value {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

/* Results CTA */
.results-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.results-cta-text {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    margin-bottom: 1.5rem;
}

.results-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Assumptions Section */
.assumptions-section {
    padding: 6rem 2rem;
}

.assumptions-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 3rem;
}

.assumptions-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    text-align: center;
    margin-bottom: 3rem;
}

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

.assumption-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
}

.assumption-icon {
    font-size: 2.5rem;
}

.assumption-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-white);
}

.assumption-item p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.assumptions-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
}

.assumptions-note strong {
    color: var(--primary-orange);
}

/* Next Steps Section */
.next-steps-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.next-step-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.next-step-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.next-step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.next-step-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.next-steps-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ===== INDUSTRY PAGES ===== */

/* Industry Hero Section */
.industry-hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.industry-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.industry-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.industry-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.industry-breadcrumb a:hover {
    color: var(--primary-orange);
}

.industry-breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.3);
}

.industry-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.industry-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Industry Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Industry Challenges Section */
.industry-challenges {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

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

.challenge-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
}

.challenge-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.challenge-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.challenge-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Industry Solutions Section */
.industry-solutions {
    background: #000000;
}

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

.solution-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    font-size: 2.5rem;
}

.solution-header h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
}

.solution-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.solution-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.solution-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.impact-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Industry Use Cases Section */
.industry-use-cases {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

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

.use-case-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.use-case-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.use-case-scenario,
.use-case-solution {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.use-case-scenario strong,
.use-case-solution strong {
    color: #ffffff;
}

.use-case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.use-case-result {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Industry ROI Section */
.industry-roi {
    background: #000000;
}

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

.roi-left h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roi-left p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.roi-breakdown {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.roi-breakdown h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-item:last-of-type {
    border-bottom: none;
}

.roi-item-label {
    color: var(--text-gray);
    flex: 1;
}

.roi-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 0;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-orange);
}

.roi-total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.roi-total-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.roi-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3rem;
    height: 400px;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.roi-chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.roi-bar-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.roi-bar {
    width: 100%;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.5));
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 0.5rem;
    position: relative;
}

.roi-bar-positive {
    background: linear-gradient(to top, var(--primary-orange), #ff8c5a);
    border-color: var(--primary-orange);
}

.roi-bar-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.roi-chart-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* HIPAA Compliance Section (Healthcare only) */
.hipaa-compliance {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.compliance-box {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.compliance-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.compliance-box>p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.compliance-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.feature-check {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Industry CTA Section */
.industry-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.cta-box {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    background: #000000;
}

/* Checkbox styling for industry forms */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.checkbox-label:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 4rem 0 3rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.blog-back-link:hover {
    gap: 0.5rem;
}

.blog-post-hero-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.post-category-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.blog-post-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    color: var(--primary-white);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.post-meta-details {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.post-date,
.post-read-time {
    color: var(--text-gray);
}

.blog-post-featured-image {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    max-height: 500px;
}

.blog-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 4rem 0;
}

/* Blog content links styling */
.blog-post-content a,
.blog-content-link,
.post-body a {
    color: var(--primary-orange);
    text-decoration: underline;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.blog-post-content a:hover,
.blog-content-link:hover,
.post-body a:hover {
    color: var(--secondary-orange);
    text-decoration: none;
}

.blog-post-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    padding: 0 2rem;
}

.post-body {
    color: var(--text-gray);
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.post-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.post-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body ul,
.post-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-body li {
    margin-bottom: 0.75rem;
}

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

.blog-post-cta {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 4rem;
}

.blog-post-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.blog-post-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-normal);
}

.share-btn:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
}

.related-posts-list {
    list-style: none;
}

.related-posts-list li {
    margin-bottom: 1rem;
}

.related-posts-list a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-normal);
    display: block;
}

.related-posts-list a:hover {
    color: var(--secondary-orange);
    padding-left: 0.5rem;
}

.blog-newsletter-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

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

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-content .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content .newsletter-form input {
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-white);
    font-size: 1rem;
    font-family: var(--font-body);
    width: 100%;
}

.newsletter-content .newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-content .newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
    align-self: flex-start;
    min-width: 150px;
}

/* ===== PORTFOLIO PAGE ===== */

/* Portfolio Hero Section */
.portfolio-hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.portfolio-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 40%, rgba(255, 140, 66, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.portfolio-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.1;
    margin: 2rem 0 1.5rem;
    letter-spacing: -0.8px;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: var(--primary-black);
}

.portfolio-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    transition: var(--transition-normal);
}

.portfolio-project:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

.project-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-project:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.project-badge.restaurant {
    background: rgba(255, 107, 53, 0.3);
    color: #ffb88c;
}

.project-badge.retail {
    background: rgba(100, 200, 255, 0.3);
    color: #64c8ff;
}

.project-badge.healthcare {
    background: rgba(100, 255, 150, 0.3);
    color: #64ff96;
}

.project-badge.realestate {
    background: rgba(200, 150, 255, 0.3);
    color: #c896ff;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.2;
}

.project-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.metric-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.detail-group h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.project-testimonial {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-white);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Portfolio Stats Section */
.portfolio-stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.portfolio-stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.portfolio-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.portfolio-stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.portfolio-stat-card .stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.portfolio-stat-card .stat-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
}

.portfolio-stat-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Portfolio Process Section */
.portfolio-process-section {
    padding: 6rem 0;
    background: var(--primary-black);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 4rem;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.process-step {
    position: relative;
    padding: 3.5rem 2rem 2.5rem;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    justify-content: flex-start;
    padding-top: 4.5rem;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--primary-white);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.375rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    flex-grow: 1;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.6px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
        border-right: 2px solid rgba(255, 107, 53, 0.3);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0;
        background: rgba(255, 107, 53, 0.05);
        border: none;
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        max-height: 500px;
    }

    .dropdown-content a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .cta-button {
        display: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 0.9fr;
        gap: 3rem;
        max-width: 1000px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.2px;
    }

    .hero-image {
        height: 450px;
        object-fit: cover;
        object-position: center center;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -0.8px;
    }

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

    .timeline-item {
        grid-template-columns: 80px 1fr 250px;
    }

    .timeline-item:nth-child(even) {
        grid-template-columns: 250px 1fr 80px;
    }

    /* About Page - Desktop */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section - Tablet */
    .hero-section {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-text {
        order: 2;
        text-align: center;
        align-items: center;
        padding-right: 0;
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 auto;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .tools-grid {
        justify-content: center;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
        padding: 2.5rem 0;
        justify-content: center;
    }

    .hero-main-image {
        width: 100%;
    }

    .stat-card {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card {
        padding: 2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-container {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .timeline-visual {
        order: 1 !important;
    }

    .timeline-content {
        order: 2 !important;
    }

    .timeline-number {
        order: 3 !important;
    }

    .timeline-number::after {
        display: none;
    }

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

    .industry-card {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .consultation-form {
        padding: 2rem 1.5rem;
    }

    .trust-elements {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Better touch targets for mobile */
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Mobile-optimized cards */
    .service-card {
        margin-bottom: 1.5rem;
    }

    /* About Page - Tablet */
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-hero-visual {
        order: -1;
    }

    .about-stats-mini {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .mini-stat {
        padding: 1.25rem 1rem;
    }

    .mini-stat-number {
        font-size: 2rem;
    }

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
    }

    /* Portfolio Page - Tablet */
    .portfolio-hero-title {
        font-size: 2.5rem;
    }

    .portfolio-project {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .project-details {
        grid-template-columns: 1fr;
    }

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

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

    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {

    /* Disable heavy animations on mobile for performance */
    .orb,
    .floating-particles,
    .grid-overlay,
    .problem-card,
    .problem-icon,
    .floating-card {
        animation: none !important;
    }

    /* Hero Section - Mobile */
    .hero-section {
        padding: 8rem 1.25rem 2rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-text {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
        max-width: 95%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 320px;
    }

    .tool-logo {
        padding: 0.5rem;
    }

    .tool-logo img {
        height: 20px;
    }

    .hero-image-wrapper {
        max-width: 100%;
        padding: 1.5rem 0;
    }

    .hero-main-image {
        width: 100%;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -0.6px;
        margin-bottom: 3rem;
    }

    .section-container {
        padding: 4rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
        letter-spacing: -0.6px;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .consultation-form {
        padding: 2rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.9375rem;
        padding: 1rem 1.75rem;
        min-height: 48px;
    }

    /* Mobile typography improvements */
    .problem-card h3 {
        font-size: 1.1875rem;
    }

    .problem-card p {
        font-size: 0.9375rem;
    }

    /* Mobile spacing improvements */
    .problem-section,
    .services-section,
    .results-section,
    .industries-section {
        padding: 3rem 0;
    }

    /* Mobile card improvements */
    .stats-row {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .stat-card {
        padding: 2.5rem 2rem;
        min-height: 320px;
    }

    .service-card {
        border-radius: 16px;
        padding: 2rem 1.5rem;
    }

    /* Mobile service card button - ensure it fits properly */
    .service-card.featured .service-link.active {
        max-width: 100%;
        margin-left: 0;
        width: auto;
        padding: 0.8rem 1.5rem;
    }

    /* Mobile form improvements */
    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    /* Hide complex animations on mobile for performance */
    .orb {
        animation: none;
    }

    .grid-overlay {
        opacity: 0.2;
    }

    /* About Page - Mobile Tablet */
    .about-hero-section {
        padding: 5rem 1.25rem 2rem;
        min-height: auto;
    }

    .about-stats-mini {
        gap: 0.75rem;
    }

    .mini-stat {
        padding: 1.25rem 1rem;
    }

    .mini-stat-number {
        font-size: 1.75rem;
    }

    .mini-stat-label {
        font-size: 0.8125rem;
    }

    .mission-card {
        padding: 2.5rem 2rem;
    }

    .mission-icon {
        font-size: 3.5rem;
    }

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

    .team-image {
        height: 250px;
    }

    .visual-accent {
        top: -15px;
        right: -15px;
    }

    /* Portfolio Page - Mobile Tablet */
    .portfolio-hero-section {
        padding: 6rem 1.5rem 3rem;
    }

    .portfolio-hero-title {
        font-size: 2rem;
    }

    .portfolio-hero-subtitle {
        font-size: 1rem;
    }

    .portfolio-section {
        padding: 3rem 0;
    }

    .portfolio-project {
        margin-bottom: 4rem;
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .project-details {
        padding: 1.5rem;
    }

    .detail-group {
        margin-bottom: 1.5rem;
    }

    .portfolio-stats-section {
        padding: 3rem 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step {
        padding: 3rem 1.75rem 2rem;
        padding-top: 4rem;
        min-height: 280px;
    }

    .step-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .process-step h3 {
        font-size: 1.125rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .portfolio-cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {

    /* Header & Navigation */
    .nav-container {
        padding: 1.25rem 1.25rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    /* Hero Section - Extra Small Mobile */
    .hero-section {
        padding: 7.5rem 1rem 2rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text {
        gap: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.8px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-pulse {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 200px;
    }


    .hero-image-wrapper {
        padding: 1rem 0;
    }

    .hero-main-image {
        width: 100%;
        border-radius: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
        margin-bottom: 2.5rem;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Card Typography */
    .problem-card h3,
    .service-title,
    .timeline-content h3 {
        font-size: 1.125rem;
        letter-spacing: -0.3px;
    }

    /* Reset stats row margin for mobile */
    .stats-row {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .stat-card {
        padding: 2rem 1.75rem;
        min-height: 300px;
    }

    .problem-card,
    .service-card {
        padding: 2rem 1.75rem;
    }

    /* Mobile service card button - ensure it fits properly */
    .service-card.featured .service-link.active {
        max-width: 100%;
        margin-left: 0;
        width: auto;
        padding: 0.8rem 1.5rem;
    }

    /* Grid Layouts */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .industry-card {
        padding: 1.25rem;
    }

    /* Buttons */
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
        min-height: 48px;
    }

    /* Stats */
    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 0.9375rem;
    }

    /* Forms */
    .consultation-form {
        padding: 1.75rem 1.25rem;
    }

    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        border-radius: 10px;
    }

    /* Timeline */
    .timeline-number {
        font-size: 2.5rem;
    }

    /* Trust Bar */
    .trust-logos img {
        height: 32px;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }

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

    .social-links {
        justify-content: center;
    }

    /* Carousel Navigation */
    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    /* Badges & Tags */
    .badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.875rem;
    }

    .tag,
    .platform-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.875rem;
    }

    /* Service Icons */
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    /* Reduce spacing on very small screens */
    .problem-section,
    .services-section,
    .results-section,
    .industries-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 2.5rem 0;
    }

    /* Performance: Disable custom cursor on mobile */
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }

    /* Simplify background on small mobile */
    .background-animation {
        opacity: 0.7;
    }

    .floating-particles {
        display: none;
    }

    /* About Page - Small Mobile */
    .about-hero-section {
        padding: 4.5rem 1rem 2rem;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .mini-stat-number {
        font-size: 1.75rem;
    }

    .mini-stat-label {
        font-size: 0.8125rem;
    }

    .mission-card,
    .value-card,
    .why-card {
        padding: 2rem 1.5rem;
    }

    .mission-icon,
    .value-icon {
        font-size: 3rem;
    }

    .mission-card h3,
    .value-card h3,
    .why-card h3 {
        font-size: 1.1875rem;
    }

    .story-text h3 {
        font-size: 1.5rem;
    }

    .story-text p {
        font-size: 0.9375rem;
    }

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

    .team-image {
        height: 280px;
    }

    .why-number {
        font-size: 2.5rem;
    }

    .visual-accent {
        top: -10px;
        right: -10px;
    }

    .cta-buttons {
        gap: 1rem;
    }

    /* Contact Page - Small Mobile */
    .contact-quick-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .main-contact-form {
        padding: 2rem 1.5rem;
    }

    .sidebar-card {
        padding: 2rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Pricing Page - Small Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured-pricing {
        transform: scale(1);
    }

    .pricing-card.featured-pricing:hover {
        transform: scale(1) translateY(-10px);
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .roi-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .roi-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roi-calculator {
        padding: 2rem 1.5rem;
    }

    .roi-value {
        font-size: 2.5rem;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .guarantee-icon {
        font-size: 3rem;
    }
}

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

/* Service Hero Section */
.service-hero {
    padding: 10rem 0 5rem;
    position: relative;
    z-index: 1;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.service-hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 50px rgba(255, 107, 53, 0.2);
}

/* Service Benefits Section */
.service-benefits {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Capabilities/Categories Section */
.chatbot-capabilities,
.dev-capabilities {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 107, 53, 0.02);
}

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

.capability-category,
.automation-category {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.capability-category:hover,
.automation-category:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

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

.category-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

/* Process Timeline */
.our-process {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange), rgba(255, 107, 53, 0.2));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    border: 3px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Service Integrations */
.service-integrations {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.integration-category {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.integration-category:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.integration-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.integration-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Service Results */
.service-results {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 107, 53, 0.02);
}

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

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.result-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Service FAQ */
.service-faq {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.02));
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* Automations Page Specific */
.what-we-automate {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 107, 53, 0.02);
}

.what-we-automate .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ============================================
   SERVICE PAGES - RESPONSIVE STYLES
   ============================================ */

/* Large Tablets and Small Desktops - 1200px */
@media (max-width: 1200px) {
    .service-hero h1 {
        font-size: 3rem;
    }

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

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

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

/* Tablets - 992px */
@media (max-width: 992px) {
    .service-hero {
        padding: 8rem 0 4rem;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero-image {
        order: -1;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-subtitle {
        font-size: 1.125rem;
    }

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

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

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

    .process-timeline::before {
        left: 2rem;
    }

    .step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }
}

/* Small Tablets - 768px */
@media (max-width: 768px) {
    .service-hero {
        padding: 7rem 0 3rem;
    }

    .service-hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .service-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .service-hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .service-hero-ctas .cta-button,
    .service-hero-ctas .cta-button-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .benefit-card {
        padding: 2rem;
    }

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

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

    .result-number {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.125rem;
    }

    .process-timeline::before {
        left: 1.5rem;
    }

    .process-step {
        gap: 1.5rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .service-hero {
        padding: 6rem 0 2rem;
    }

    .service-hero h1 {
        font-size: 1.75rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .service-hero-image img {
        border-radius: 12px;
        border-width: 2px;
    }

    .benefit-card,
    .capability-category,
    .automation-category {
        padding: 1.5rem;
    }

    .benefit-icon,
    .category-icon {
        font-size: 2.5rem;
    }

    .benefit-card h3,
    .category-header h3 {
        font-size: 1.25rem;
    }

    .category-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-card {
        padding: 2rem 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .result-label {
        font-size: 0.875rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.125rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .final-cta {
        padding: 3rem 0;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .final-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .integration-category {
        padding: 1.5rem;
    }

    .integration-category h3 {
        font-size: 1.125rem;
    }

    .integration-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .process-timeline::before {
        left: 1.25rem;
    }

    .process-step {
        gap: 1rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .step-content {
        padding: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    /* Blog Page - Mobile */
    .blog-hero-section {
        padding: 7rem 1.5rem 4rem;
    }

    .blog-search-bar {
        padding: 0.875rem 1.25rem;
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .featured-post-content {
        padding: 2rem 1.5rem;
    }

    .featured-post-title {
        font-size: 1.5rem;
    }

    .featured-post-excerpt {
        font-size: 1rem;
    }

    .featured-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .blog-pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-numbers {
        order: -1;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .newsletter-input-group .btn-primary {
        width: 100%;
    }

    .newsletter-stats {
        flex-direction: row;
        gap: 1rem;
    }

    .newsletter-stat {
        padding: 1.25rem 1rem;
    }

    .newsletter-stat .stat-number {
        font-size: 1.5rem;
    }
}

/* Blog Page Responsive - Tablet */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

}

/* Knowledge Hub - Tablet */
.topics-grid {
    grid-template-columns: repeat(2, 1fr);
}

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

.quick-start-container {
    grid-template-columns: 1fr;
}

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

/* Knowledge Hub Responsive - Mobile (576px) */
@media (max-width: 576px) {
    .knowledge-hero-section {
        padding: 7rem 1.5rem 4rem;
    }

    .knowledge-search-bar {
        padding: 1rem 1.25rem;
    }

    .knowledge-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .topic-card {
        padding: 2rem;
    }

    .featured-guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-guide-card {
        padding: 2rem 1.5rem;
    }

    .guide-title {
        font-size: 1.25rem;
    }

    .quick-start-container {
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
    }

    .quick-start-title {
        font-size: 1.75rem;
    }

    .quick-start-subtitle {
        font-size: 1rem;
    }

    .quick-start-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .quick-start-item-content h4 {
        font-size: 1rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .resource-icon {
        font-size: 2rem;
    }

    .knowledge-cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* ROI Calculator - Mobile */
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator-form-card {
        position: static;
    }

    .results-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card.highlight-metric {
        grid-column: span 1;
    }

    .assumptions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ROI Calculator Responsive - Tablet (992px) */
@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .calculator-form-card {
        position: static;
    }

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

    .next-steps-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== INDUSTRY PAGES RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .industry-hero {
        padding: 140px 0 80px;
    }

    .industry-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .industry-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .roi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .roi-visual {
        height: 350px;
    }

    .compliance-box {
        padding: 3rem 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2.25rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .industry-hero {
        padding: 120px 0 60px;
    }

    .industry-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .industry-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .section-header h2 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .challenge-card {
        padding: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card {
        padding: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-case-card {
        padding: 2rem;
    }

    .use-case-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roi-left h2 {
        font-size: 2rem;
    }

    .roi-left p {
        font-size: 1rem;
    }

    .roi-breakdown {
        padding: 2rem;
    }

    .roi-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .roi-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .roi-visual {
        height: 300px;
        padding: 2rem;
        gap: 2rem;
    }

    .roi-chart-bar {
        width: 120px;
    }

    .roi-bar-value {
        font-size: 0.875rem;
    }

    .compliance-box {
        padding: 2rem 1.5rem;
    }

    .compliance-box h2 {
        font-size: 2rem;
    }

    .compliance-features {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    /* Portfolio Page - Small Mobile */
    .portfolio-hero-section {
        padding: 5rem 1rem 2rem;
    }

    .portfolio-hero-title {
        font-size: 1.75rem;
    }

    .portfolio-hero-subtitle {
        font-size: 0.9375rem;
    }

    .portfolio-project {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .project-title {
        font-size: 1.125rem;
    }

    .project-description {
        font-size: 0.9375rem;
    }

    .project-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .metric-item {
        padding: 1rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .project-details {
        padding: 1rem;
    }

    .detail-group h4 {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 0.875rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .project-testimonial {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.9375rem;
    }

    .portfolio-stats-section {
        padding: 2.5rem 1rem;
    }

    .portfolio-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-stat-card {
        padding: 1.5rem;
    }

    .portfolio-stat-card .stat-value {
        font-size: 2rem;
    }

    .portfolio-stat-card .stat-label {
        font-size: 1rem;
    }

    .portfolio-process-section {
        padding: 3rem 1rem;
    }

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

    .process-step {
        padding: 2.5rem 1.25rem 1.5rem;
        padding-top: 3.5rem;
        min-height: 260px;
    }

    .step-icon {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .process-step p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .portfolio-cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}