/* ============================================
   ProfitLayer SEO - Premium E-commerce SEO Agency
   Modern Dark Theme with Markupus-Inspired Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Dark Premium Theme (Markupus Inspired) */
    --bg-primary: #0e0e1b;
    --bg-secondary: #0a0a14;
    --bg-tertiary: #16162a;
    --bg-card: #121220;

    /* Text Colors */
    --text-primary: #f5f6f1;
    --text-secondary: #a8a8b8;
    --text-muted: #6b6b80;

    /* Accent Colors */
    --accent-orange: #ff691d;
    --accent-orange-hover: #ff8040;
    --accent-orange-dark: #d74800;
    --accent-purple: #6162fb;
    --accent-purple-light: #424292;
    --accent-blue: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #ff691d 0%, #ff8040 50%, #ff691d 100%);
    --accent-gradient-purple: linear-gradient(135deg, #6162fb 0%, #424292 100%);

    /* Success/Growth Colors */
    --success: #10b981;
    --success-light: #34d399;

    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Markupus Style */
    --section-padding: clamp(80px, 12.5vw, 200px);
    --container-max: 1400px;
    --container-padding: clamp(20px, 8vw, 134px);

    /* Border Radius - Markupus Style (40px) */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 48px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow-orange: 0 0 80px rgba(255, 105, 29, 0.2);
    --shadow-glow-purple: 0 0 80px rgba(97, 98, 251, 0.15);

    /* Transitions - Markupus Style */
    --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s ease-out;
    --transition-slow: 0.4s ease;
    --transition-image: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Blur Decorative Elements - Markupus Style */
.blur-decoration {
    position: fixed;
    border-radius: 50%;
    filter: blur(200px);
    pointer-events: none;
    z-index: 0;
}

.blur-orange {
    width: 600px;
    height: 600px;
    background: #ff691d;
    opacity: 0.08;
    top: -200px;
    right: -200px;
}

.blur-purple {
    width: 500px;
    height: 500px;
    background: #6162fb;
    opacity: 0.06;
    bottom: 20%;
    left: -150px;
}

.blur-purple-2 {
    width: 400px;
    height: 400px;
    background: #424292;
    opacity: 0.05;
    top: 50%;
    right: 10%;
}

/* Typography - Enhanced Responsive Scaling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(34px, 5.4vw, 80px);
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 4vw, 56px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 32px);
}

h4 {
    font-size: clamp(18px, 2vw, 24px);
}

p {
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 100px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 105, 29, 0.08);
    border: 1px solid rgba(255, 105, 29, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    margin-bottom: 24px;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: clamp(18px, 1.5vw, 24px);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ff691d 0%, #ff8040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(14, 14, 27, 0.95) 0%, rgba(14, 14, 27, 0.8) 50%, transparent 100%);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(14, 14, 27, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 105, 29, 0.35);
    transition: all var(--transition-base);
}

.logo:hover .logo-icon {
    box-shadow: 0 6px 24px rgba(255, 105, 29, 0.45);
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 105, 29, 0.12);
}

.nav-links a::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn-primary {
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 105, 29, 0.3);
}

.nav-cta .btn-primary:hover {
    background: var(--accent-orange-hover);
    box-shadow: 0 6px 28px rgba(255, 105, 29, 0.4);
    transform: translateY(-2px);
}

/* Language Switcher - Minimal Inline Design */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2px;
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.lang-link:hover {
    color: var(--text-secondary);
}

.lang-link.active {
    background: rgba(255, 105, 29, 0.15);
    color: var(--accent-orange);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-toggle.active {
    background: rgba(255, 105, 29, 0.1);
    border-color: rgba(255, 105, 29, 0.2);
}

.menu-toggle.active span {
    background: var(--accent-orange);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ============================================
   BUTTONS - Markupus Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 105, 29, 0.35);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 105, 29, 0.45);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 24px;
}

.btn-ghost:hover {
    color: var(--accent-orange);
}

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

/* Button with icon circle - Markupus style */
.btn-with-icon {
    padding: 4px 4px 4px 32px;
}

.btn-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon-circle {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Hero blur decorations */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: #ff691d;
    filter: blur(200px);
    opacity: 0.1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #6162fb;
    filter: blur(200px);
    opacity: 0.07;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge .pulse {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.hero-title {
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-description {
    font-size: clamp(18px, 1.5vw, 24px);
    margin-bottom: 44px;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 72px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
    text-align: left;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-number span {
    color: var(--accent-orange);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

.hero-image-container {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

.hero-dashboard {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dashboard-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-badge {
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.chart-placeholder {
    height: 200px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    height: 140px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 140'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%2310b981'/%3E%3Cstop offset='100%25' stop-color='%2334d399'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,120 Q40,100 80,95 T160,70 T240,50 T320,35 T400,15' stroke='url(%23grad)' fill='none' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: chartDraw 1.5s ease-out 0.5s both;
}

@keyframes chartDraw {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.metric-value {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.metric-value.up {
    color: var(--success);
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(12px);
}

.floating-card-1 {
    top: 18%;
    left: -70px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 28%;
    right: -60px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.floating-icon.orange {
    background: rgba(255, 105, 29, 0.12);
}

.floating-icon.purple {
    background: rgba(97, 98, 251, 0.12);
}

.floating-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-subtext {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-section {
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: var(--bg-secondary);
}

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

.trusted-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 36px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.trusted-logo:hover {
    opacity: 0.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 105, 29, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 29, 0.2);
    box-shadow: var(--shadow-glow-orange);
}

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

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

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 105, 29, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    transition: transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-card:nth-child(2) .service-icon {
    background: rgba(97, 98, 251, 0.1);
}

.service-card:nth-child(3) .service-icon {
    background: rgba(59, 130, 246, 0.1);
}

.service-title {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.service-description {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.service-card:hover .service-features li {
    color: var(--text-primary);
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

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

.results-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: #ff691d;
    filter: blur(250px);
    opacity: 0.04;
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.result-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 29, 0.15);
}

.result-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ff691d 0%, #ff8040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 48px;
    padding-bottom: 72px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 90px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-purple) 100%);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-orange);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--accent-orange);
    color: white;
    box-shadow: var(--shadow-glow-orange);
}

.step-content {
    padding-top: 20px;
}

.step-title {
    margin-bottom: 16px;
}

.step-description {
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-feature {
    padding: 10px 20px;
    background: rgba(255, 105, 29, 0.08);
    border: 1px solid rgba(255, 105, 29, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.step-feature:hover {
    background: rgba(255, 105, 29, 0.15);
    color: var(--text-primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--accent-orange);
    opacity: 0.2;
    position: absolute;
    top: 24px;
    right: 32px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 32px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.author-name {
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

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

.testimonial-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-badge {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: clamp(60px, 10vw, 100px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(255, 105, 29, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(5deg); }
}

.cta-title {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: clamp(18px, 1.5vw, 24px);
    margin-bottom: 44px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 100px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-brand p {
    margin: 24px 0;
    max-width: 320px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    margin-bottom: 28px;
    font-size: 1.0625rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color var(--transition-base);
}

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

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

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

.footer-legal {
    display: flex;
    gap: 36px;
}

.footer-legal a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: #ff691d;
    filter: blur(200px);
    opacity: 0.08;
    pointer-events: none;
}

.page-title {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.page-description {
    font-size: clamp(18px, 1.5vw, 24px);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 29, 0.2);
    box-shadow: var(--shadow-glow-orange);
}

.case-image {
    height: 280px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.case-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 29, 0.2) 0%, rgba(97, 98, 251, 0.2) 100%);
    transition: opacity var(--transition-slow);
}

.case-card:hover .case-image::before {
    opacity: 0.8;
}

/* Image scale on hover - Markupus style */
.case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform var(--transition-image);
    transform: scale(1);
}

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

.case-category {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 1;
}

.case-content {
    padding: 44px;
}

.case-title {
    margin-bottom: 18px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.35;
}

.case-description {
    margin-bottom: 28px;
}

.case-results {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
}

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

.case-result-value {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--success);
}

.case-result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1rem;
    transition: gap var(--transition-base);
}

.case-link:hover {
    gap: 16px;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-orange);
}

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

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--accent-orange);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-name {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-cta {
    width: 100%;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 44px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 29, 0.2);
}

.team-avatar {
    width: 130px;
    height: 130px;
    background: var(--accent-gradient);
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    transition: transform var(--transition-base);
}

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

.team-name {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

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

.team-bio {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 29, 0.2);
}

.blog-image {
    height: 220px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

/* Image scale on hover */
.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform var(--transition-image);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--accent-orange);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 1;
}

.blog-content {
    padding: 36px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1.375rem;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1rem;
    transition: gap var(--transition-base);
}

.blog-link:hover {
    gap: 16px;
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.process-section-alt {
    background: var(--bg-secondary);
}

.process-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 56px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 105, 29, 0.15);
}

.process-card::before {
    content: attr(data-step);
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 7rem;
    font-weight: 900;
    color: var(--accent-orange);
    opacity: 0.08;
    line-height: 1;
    transition: opacity var(--transition-base);
}

.process-card:hover::before {
    opacity: 0.12;
}

.process-card-icon {
    width: 76px;
    height: 76px;
    background: rgba(255, 105, 29, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 28px;
    transition: transform var(--transition-base);
}

.process-card:hover .process-card-icon {
    transform: scale(1.08);
}

.process-card-title {
    margin-bottom: 18px;
}

.process-card-description {
    margin-bottom: 28px;
    font-size: 1.0625rem;
}

.process-card-list {
    list-style: none;
}

.process-card-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.process-card-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 28px 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1875rem;
    transition: color var(--transition-base);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.75rem;
    color: var(--accent-orange);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 36px 28px;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 999;
    padding: 100px 32px 40px;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    filter: blur(200px);
    opacity: 0.08;
    pointer-events: none;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(180px);
    opacity: 0.06;
    pointer-events: none;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.mobile-nav-links li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.4s ease forwards;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-links a {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 16px;
    transition: all var(--transition-base);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: var(--accent-orange);
    background: rgba(255, 105, 29, 0.08);
    transform: translateX(8px);
}

.mobile-menu .btn {
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 18px 32px;
}

.mobile-menu-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-description {
        margin: 0 auto 44px;
    }

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

    .hero-stats {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .stat-item::after {
        display: none;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

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

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .language-switcher {
        margin-right: 12px;
    }

    .menu-toggle {
        display: flex;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .process-card-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

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

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

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-container {
        padding: 56px 32px;
    }

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

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .footer-brand p {
        margin: 24px auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step::before {
        display: none;
    }

    .step-number {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trusted-logos {
        gap: 36px;
    }

    .trusted-logo {
        font-size: 1.25rem;
    }

    .case-results {
        flex-wrap: wrap;
        gap: 24px;
    }

    .case-result {
        flex: 1;
        min-width: 80px;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grids */
[data-aos] > *:nth-child(1) { transition-delay: 0.1s; }
[data-aos] > *:nth-child(2) { transition-delay: 0.2s; }
[data-aos] > *:nth-child(3) { transition-delay: 0.3s; }
[data-aos] > *:nth-child(4) { transition-delay: 0.4s; }
[data-aos] > *:nth-child(5) { transition-delay: 0.5s; }
[data-aos] > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   CASE STUDIES FILTERS
   ============================================ */
.filters-section {
    margin-bottom: 48px;
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.filter-btn.active {
    background: rgba(97, 98, 251, 0.1);
    border-color: rgba(97, 98, 251, 0.3);
}

.filter-btn .filter-icon {
    width: 20px;
    height: 20px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn .filter-icon svg {
    width: 12px;
    height: 12px;
    stroke: white;
}

.filter-btn .arrow-icon {
    transition: transform var(--transition-base);
}

.filter-btn.active .arrow-icon {
    transform: rotate(180deg);
}

.filter-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.filter-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-base);
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.filter-option.selected .filter-checkbox {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

.filter-checkbox svg {
    width: 12px;
    height: 12px;
    stroke: white;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.filter-option.selected .filter-checkbox svg {
    opacity: 1;
}

.filter-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.filter-option:hover .filter-label,
.filter-option.selected .filter-label {
    color: var(--text-primary);
}

/* Active Filters Pills */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.active-filters:empty {
    display: none;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(97, 98, 251, 0.15);
    border: 1px solid rgba(97, 98, 251, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.filter-pill:hover {
    background: rgba(97, 98, 251, 0.25);
}

.filter-pill-remove {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-pill-remove:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filter-pill-remove svg {
    width: 10px;
    height: 10px;
    stroke: var(--text-secondary);
}

.clear-filters-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.clear-filters-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Case Card Filter Animation */
.case-card {
    transition: all var(--transition-slow), opacity 0.3s ease, transform 0.3s ease;
}

.case-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.case-studies-grid {
    position: relative;
}

/* Responsive Filters */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-dropdown {
        width: 100%;
    }

    .filter-btn {
        width: 100%;
        justify-content: space-between;
    }

    .filter-menu {
        width: 100%;
    }

    .active-filters {
        margin-top: 16px;
    }
}

/* ============================================
   CASE STUDY DETAIL PAGE
   ============================================ */
.case-study-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--accent-orange);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(200px);
    pointer-events: none;
}

.case-study-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(200px);
    pointer-events: none;
}

.case-study-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.9375rem;
}

.case-study-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.case-study-breadcrumb a:hover {
    color: var(--accent-orange);
}

.case-study-breadcrumb span {
    color: var(--text-muted);
}

.case-study-breadcrumb .current {
    color: var(--text-primary);
}

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

.case-study-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 105, 29, 0.1);
    border: 1px solid rgba(255, 105, 29, 0.2);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.case-study-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.case-study-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.case-study-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-badge {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Case Study Stats Bar */
.case-study-stats {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Case Study Content Sections */
.case-study-section {
    padding: 100px 0;
}

.case-study-section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-header .section-label {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    margin-top: 24px;
}

.content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.content-text ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
}

.content-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-image-placeholder {
    padding: 60px;
    text-align: center;
}

.content-image-placeholder .placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 105, 29, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.content-image-placeholder .placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.content-image-placeholder p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
    aspect-ratio: 16/10;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonial-card-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-card-large::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--accent-orange);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card-large blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.testimonial-info h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

/* Results Highlight */
.results-highlight {
    padding: 100px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.result-card {
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-slow);
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 105, 29, 0.2);
    box-shadow: var(--shadow-glow-orange);
}

.result-card-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.result-card-label {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.result-card-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Case Study CTA */
.case-study-cta {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.case-study-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.case-study-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Next Case Study */
.next-case-study {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.next-case-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-slow);
}

.next-case-link:hover {
    border-color: rgba(255, 105, 29, 0.2);
    transform: translateX(8px);
}

.next-case-content span {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.next-case-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.next-case-link svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

/* Responsive Case Study */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .case-study-hero {
        padding: 120px 0 60px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .testimonial-card-large {
        padding: 40px 24px;
    }

    .testimonial-card-large blockquote {
        font-size: 1.25rem;
    }

    .next-case-link {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ============================================
   NEWSLETTER SUBSCRIBE SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.newsletter-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

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

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 105, 29, 0.1);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--accent-orange);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 105, 29, 0.3);
}

.newsletter-consent {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.newsletter-consent a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.newsletter-consent a:hover {
    color: var(--accent-orange);
}

.newsletter-success {
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    color: var(--success);
    display: none;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Selection color */
::selection {
    background: rgba(255, 105, 29, 0.3);
    color: var(--text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}
