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

:root {
    /* Logo Colors - Pomarańczowo-żółte gradienty */
    --primary-orange: #FF8C00;
    --light-orange: #FFA500;
    --lighter-orange: #FFD700;
    --dark-orange: #FF7F00;
    --darker-orange: #FF6600;

    /* Dark Theme Backgrounds */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;

    /* Text Colors */
    --white: #FFFFFF;
    --light-gray: #1A1A1A;
    --gray: #888888;
    --dark-gray: #E5E5E5;
    --border-gray: #2A2A2A;
    --text-secondary: #CCCCCC;

    /* Accents */
    --accent-orange: #FF9500;
    --success-green: #059669;
    --warning-amber: #FFA500;

    /* Modern Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* B2B Design Spacing */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.6rem;
    --spacing-lg: 2.4rem;
    --spacing-xl: 3.2rem;
    --spacing-2xl: 4.8rem;
    --spacing-3xl: 6.4rem;

    /* Typography */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism */
    --glass-bg: rgba(17, 17, 17, 0.7);
    --glass-border: rgba(255, 140, 0, 0.1);
}

html {
    font-size: 80%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--dark-gray);
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-dark);
    letter-spacing: -0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 2.4rem;
    }
}

/* Header */
.header {
    background: rgba(5, 5, 5, 0.8);
    padding: 1.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    transition: all var(--transition-normal);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 9.6px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.logo-text::first-letter {
    text-transform: uppercase;
}

.logo-text::after {
    content: '';
    display: inline-block;
    width: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-fast);
}

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

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

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.625rem 0;
    letter-spacing: -0.01em;
}

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

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.nav-dropdown-row {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem 0 -0.5rem 2px;
    cursor: pointer;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 2;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
    color: var(--white);
}
.nav-item-dropdown .nav-link {
    padding-right: 0;
}

.nav-item-dropdown {
    position: relative;
}

/* Dropdown – ukryty domyślnie, widoczny tylko przy hover */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 220px;
    list-style: none;
    padding-left: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
    margin-top: 4px;
}

.nav-item-dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown li {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.nav-dropdown a,
.nav-dropdown a:link,
.nav-dropdown a:visited {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: background var(--transition-fast), color var(--transition-fast);
    border-radius: 6px;
    margin: 0 4px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
    background: rgba(255, 140, 0, 0.15);
    color: var(--white);
    text-decoration: none;
}

.btn {
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--lighter-orange) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
    border-radius: var(--radius-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--darker-orange) 0%, var(--primary-orange) 100%);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 140, 0, 0.05);
    color: var(--white);
    border: 1.5px solid rgba(255, 140, 0, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.7);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.2);
}

.btn-large {
    padding: 0.8rem 1.6rem;
    font-size: 0.88rem;
}

.btn-header {
    margin-left: 1rem;
}

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

.lang-switcher {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    backdrop-filter: blur(20px);
}

.lang-switcher:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.4);
}

.lang-code {
    display: inline-block;
    min-width: 28px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.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(7px, -7px);
}

@media (max-width: 768px) {
    /* Ukryty checkbox do sterowania menu (działa bez JS) */
    .nav-toggle {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

    /* Menu widoczne gdy checkbox zaznaczony (klik w burgera = label for="nav-toggle") */
    #nav-toggle:checked ~ .nav,
    .nav.active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    }

    #nav-toggle:checked ~ .nav .nav-list,
    .nav.active .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    #nav-toggle:checked ~ .nav .nav-link,
    .nav.active .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        width: 100%;
    }

    /* Na mobile: dropdown Rozwiązania – rozwijany przez checkbox (tap w strzałkę = label), bez JS */
    .dropdown-toggle-input {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }
    #nav-toggle:checked ~ .nav .nav-dropdown,
    .nav.active .nav-dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 1rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
    #nav-toggle:checked ~ .nav #dropdown-toggle:checked ~ .nav-dropdown,
    .nav.active #dropdown-toggle:checked ~ .nav-dropdown {
        display: block;
    }
    #nav-toggle:checked ~ .nav .nav-dropdown a,
    .nav.active .nav-dropdown a {
        padding: 0.5rem 0;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
    }
    #nav-toggle:checked ~ .nav .nav-dropdown a:hover,
    .nav.active .nav-dropdown a:hover {
        color: var(--white);
    }
    /* Na mobile wiersz Rozwiązania + strzałka */
    #nav-toggle:checked ~ .nav .nav-dropdown-row,
    .nav.active .nav-dropdown-row {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    #nav-toggle:checked ~ .nav .nav-dropdown-toggle,
    .nav.active .nav-dropdown-toggle {
        min-width: 48px;
        min-height: 48px;
        margin: -0.5rem 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    /* Strzałka obraca się gdy dropdown otwarty (checkbox zaznaczony) */
    #nav-toggle:checked ~ .nav #dropdown-toggle:checked ~ .nav-dropdown-row .dropdown-arrow,
    .nav.active #dropdown-toggle:checked ~ .nav-dropdown-row .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Ikona burgera → X gdy menu otwarte */
    #nav-toggle:checked ~ .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    #nav-toggle:checked ~ .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked ~ .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1A1A1A 100%);
    padding: 8rem 0 7.2rem;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    will-change: transform;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.13)),
        url('img/hero_background.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.04em;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: var(--font-weight-normal);
    line-height: 1.75;
    max-width: 480px;
    letter-spacing: -0.01em;
}

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

.hero-image {
    position: relative;
}



/* Features Section */
.features {
    background: var(--bg-dark);
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-slow);
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
    background: var(--bg-card-hover);
}

/* Ikony na stronie i podstronach – zwykłe (jednokolorowe). Nie dotyczy panelu z modułami. */
.feature-icon,
.benefit-icon,
.case-icon,
.tech-icon,
.why-icon,
.how-step-icon {
    color: var(--text-secondary);
}
/* Akcent pomarańczowy – część ikon w kolorze strony dla lepszego kontrastu */
.feature-icon.icon-accent,
.benefit-icon.icon-accent,
.case-icon.icon-accent,
.tech-icon.icon-accent,
.why-icon.icon-accent,
.how-step-icon.icon-accent,
.pipeline-box-icon.icon-accent {
    color: var(--primary-orange);
}
.tech-stack-section .tech-logo-pill {
    color: var(--text-secondary);
}

.feature-icon {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.03);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.8;
    min-height: 3.6em;
    letter-spacing: -0.01em;
}

/* Industries Section */
.industries {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-darker);
}

.section-title {
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-normal);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.industry-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-slow);
    background: var(--bg-card);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
}

.industry-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.construction-bg {
    background-image: url('img/construction_hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.manufacturing-bg {
    background-image: url('img/factory_hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.healthcare-bg {
    background-image: url('img/medicine_hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.others-bg {
    background-image: url('img/others_industry_hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.industry-content {
    padding: 2rem 2rem 2.4rem;
}

.industry-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.industry-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Why Choose Section */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-slow);
    position: relative;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
    background: var(--bg-card-hover);
}

.benefit-icon {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.03);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.8;
    min-height: 3.6em;
    letter-spacing: -0.01em;
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1A1A1A 100%);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 140, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-normal);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    float: none;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact span {
    word-break: break-word;
    flex: 1;
}

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

.footer-copyright {
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive Design - Large Tablets */
@media (max-width: 1200px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 6.4rem 0 5.6rem;
        min-height: 500px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.4rem;
    }

    .hero-title {
        font-size: 2.56rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-placeholder {
        height: 350px;
        max-width: 600px;
        margin: 0 auto;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .features-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }

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

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Responsive Design - Small Tablets */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-list {
        gap: 1.2rem;
    }

    .hero {
        padding: 5.6rem 0 4.8rem;
        min-height: 450px;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.24rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    .features,
    .industries,
    .why-choose,
    .cases-section,
    .tech-section,
    .stats-section {
        padding: 4.8rem 0;
    }

    .features-grid,
    .industries-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .section-title {
        font-size: 1.92rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }
}

/* Responsive Design - Mobile & Small Tablets */
@media (max-width: 768px) {
    html {
        font-size: 90%;
    }

    .container {
        padding: 0 1.25rem;
    }

    .header {
        padding: 1.2rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 36px;
    }

    .nav {
        display: none;
    }

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

    .btn-header {
        display: none;
    }

    .lang-switcher {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 4.8rem 0 4rem;
        min-height: 400px;
    }

    .hero-content {
        gap: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.4rem;
    }

    .hero-image-placeholder {
        height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-large {
        width: 100%;
    }

    .features,
    .industries,
    .why-choose,
    .cases-section,
    .tech-section,
    .stats-section,
    .contact-section,
    .know-how-section,
    .pricing-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2.4rem;
    }

    .feature-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon,
    .benefit-icon {
        margin-bottom: 1.6rem;
    }

    .feature-title,
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .feature-description,
    .benefit-description {
        font-size: 0.75rem;
    }

    .industry-card {
        margin-bottom: 1.6rem;
    }

    .industry-content {
        padding: 2rem 1.5rem 2.4rem;
    }

    .industry-title {
        font-size: 1.1rem;
    }

    .industry-description {
        font-size: 0.75rem;
    }

    .footer {
        padding: 2.4rem 0 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .footer-column {
        margin-bottom: 0;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer-links li {
        margin-bottom: 0.875rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        display: inline-block;
        padding: 0.25rem 0;
    }

    .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        word-break: break-word;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding-top: 1.6rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .footer-legal a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
        display: inline-block;
    }

    .stats-grid,
    .cases-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .case-card,
    .tech-card {
        padding: 2rem 1.5rem;
    }

    .case-title,
    .tech-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .case-description,
    .tech-description {
        font-size: 0.7rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 0.85rem;
        padding: 0.75rem 0.875rem;
    }

    .know-how-title,
    .pricing-title,
    .contact-title {
        font-size: 1.92rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        margin-bottom: 2.4rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.75rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        max-width: 100%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .pricing-plan-name {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.92rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 85%;
    }

    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .logo-image {
        height: 32px;
    }

    .hero {
        padding: 4rem 0 3.2rem;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .hero-image-placeholder {
        height: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }

    .features,
    .industries,
    .why-choose,
    .cases-section,
    .tech-section,
    .stats-section,
    .contact-section,
    .know-how-section,
    .pricing-section {
        padding: 3.2rem 0;
    }

    .feature-card,
    .benefit-card,
    .case-card,
    .tech-card,
    .why-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon,
    .benefit-icon {
        margin-bottom: 1.2rem;
    }

    .feature-icon svg,
    .benefit-icon svg,
    .case-icon svg,
    .tech-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-title,
    .benefit-title,
    .case-title,
    .tech-title,
    .industry-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description,
    .benefit-description,
    .case-description,
    .tech-description,
    .industry-description {
        font-size: 0.7rem;
    }

    .industry-content {
        padding: 1.75rem 1.25rem 2rem;
    }

    .stat-card {
        padding: 1.75rem 1.25rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-unit {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-subtitle {
        font-size: 0.8rem;
    }

    .know-how-title,
    .pricing-title {
        font-size: 1.6rem;
    }

    .know-how-subtitle,
    .pricing-subtitle {
        font-size: 0.8rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.7rem;
    }

    .pricing-plan-name {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 0 1.2rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
        word-break: break-word;
        line-height: 1.5;
    }

    .footer-contact svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        padding-top: 1.4rem;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .footer-legal {
        gap: 0.625rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }
}

/* Responsive Design - Extra Small Mobile */
@media (max-width: 360px) {
    html {
        font-size: 80%;
    }

    .container {
        padding: 0 0.875rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-card,
    .benefit-card,
    .case-card,
    .tech-card,
    .why-card {
        padding: 1.5rem 1rem;
    }

    .footer {
        padding: 1.8rem 0 1rem;
    }

    .footer-content {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.8rem;
    }

    .footer-links li {
        margin-bottom: 0.625rem;
    }

    .footer-contact li {
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        padding-top: 1.2rem;
    }

    .footer-copyright,
    .footer-legal a {
        font-size: 0.75rem;
    }
}

/* Contact Form Section */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

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

.contact-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form {
    background: var(--bg-card);
    padding: 2.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--white);
    background: var(--bg-dark);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    background: var(--bg-card);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF8C00' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.error-message {
    display: none;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-input:invalid:not(:placeholder-shown)+.error-message,
.form-textarea:invalid:not(:placeholder-shown)+.error-message {
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.form-message.show {
    display: block;
}

/* Contact form responsive is handled in main 768px media query */

/* Know How Section */
.know-how-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
}

.know-how-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.know-how-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.know-how-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

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

.step-number {
    flex-shrink: 0;
    width: 51.2px;
    height: 51.2px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--lighter-orange) 100%);
    color: var(--bg-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.why-work-section {
    background: var(--bg-card);
    padding: var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
    border: 1px solid var(--border-gray);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
    background: var(--bg-card-hover);
}

.why-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.why-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.why-description {
    color: var(--text-secondary);
    font-size: 0.76rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.know-how-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
}

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

.pricing-block {
    margin-bottom: var(--spacing-lg);
}
.pricing-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.pricing-block-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
}
.pricing-block-second {
    margin-top: 4rem;
}

.pricing-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-gray);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
    background: var(--bg-card-hover);
}

.pricing-card.featured {
    border: 2px solid rgba(255, 140, 0, 0.6);
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 140, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--lighter-orange) 100%);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pricing-plan-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.price-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 0.2rem;
}
.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    padding-left: 1.75rem;
}

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

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

.pricing-btn {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

/* Pricing and know-how responsive styles are handled in main media queries above */

/* Stats Section */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 140, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.stats-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-slow);
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Case Studies Section */
.cases-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.case-card {
    background: var(--bg-card);
    padding: 2.4rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.case-card:hover::before {
    left: 100%;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
    background: var(--bg-card-hover);
}

.case-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.case-card:nth-child(2) .case-icon {
    animation-delay: 0.5s;
}

.case-card:nth-child(3) .case-icon {
    animation-delay: 1s;
}

@keyframes float {

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

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

.case-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.case-description {
    color: var(--text-secondary);
    font-size: 0.76rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Technology Section */
.tech-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.tech-card {
    background: var(--bg-card);
    padding: 2.4rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--lighter-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tech-card:hover::after {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
    background: var(--bg-card-hover);
}

.tech-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.tech-card:hover .tech-icon {
    transform: scale(1.05) rotate(3deg);
}

.tech-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.tech-description {
    color: var(--text-secondary);
    font-size: 0.72rem;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse {

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

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-lg);
}

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

.feature-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.03) rotate(2deg);
}

/* Enhanced Industry Cards */
.industry-card {
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(255, 140, 0, 0.8), transparent);
    transition: height var(--transition-normal);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.industry-card:hover::after {
    height: 100%;
}

.industry-content {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-content {
    color: var(--white);
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cases-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================================
   NEW: Page Hero Visual (subpages)
   ======================================================== */
.page-hero-visual {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.8s ease-out;
}

.page-hero-visual svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.2));
}

/* ========================================================
   NEW: How We Work – 3-step inline infographic (index.php)
   ======================================================== */
.how-it-works {
    background: var(--bg-darker);
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.how-it-works-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.how-step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-slow);
}

.how-step:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
    transform: translateY(-4px);
}

.how-step-arrow {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--primary-orange);
    font-size: 1.8rem;
    align-self: center;
    flex-shrink: 0;
}

.how-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.how-step:hover .how-step-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

.how-step-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 0.6rem;
}

.how-step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.how-step-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .how-it-works-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .how-step-arrow {
        transform: rotate(90deg);
        padding: 0.2rem 0;
        justify-content: center;
    }
}

/* ========================================================
   NEW: Tech Stack Logos
   ======================================================== */
.tech-stack-section {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-gray);
}

.tech-stack-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.tech-logo-pill {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gray);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.tech-logo-pill:hover {
    border-color: rgba(255, 140, 0, 0.4);
    color: var(--white);
    background: var(--bg-card-hover);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.1);
}

.tech-logo-pill svg {
    flex-shrink: 0;
}

/* ========================================================
   NEW: Process Infographic (pipeline)
   ======================================================== */
.process-infographic {
    margin: 2.5rem 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.pipeline-flow {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 600px;
}

.pipeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.pipeline-box {
    background: var(--bg-card);
    border: 1.5px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    margin: 0 0.4rem;
    transition: all var(--transition-normal);
}

.pipeline-box:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
}

.pipeline-box-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pipeline-box-icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.pipeline-box-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.pipeline-arrow {
    color: var(--primary-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    padding: 0 0.2rem;
}

/* ========================================================
   NEW: LLM Comparison Table
   ======================================================== */
.comparison-section {
    margin: 2.5rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-col {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-gray);
}

.comparison-col.col-bad {
    border-color: rgba(255, 80, 80, 0.25);
}

.comparison-col.col-good {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 24px rgba(255, 140, 0, 0.1);
}

.comparison-col-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.comparison-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.comparison-col-subtitle {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.comparison-item .icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
}

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

/* ========================================================
   NEW: AI Consulting Timeline
   ======================================================== */
.timeline-section {
    margin: 2.5rem 0;
}

.timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2.5rem;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, rgba(255, 140, 0, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding: 1.2rem 0 1.2rem 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 28px;
    height: 28px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.timeline-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.timeline-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================================
   NEW: Metrics Grid (case study)
   ======================================================== */
.metrics-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    padding: var(--spacing-2xl) 0;
    margin: 3rem 0;
}

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

.metric-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-slow);
}

.metric-card:hover {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
    transform: translateY(-3px);
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--lighter-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
}

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

/* ========================================================
   NEW: Section with left image / right text split
   ======================================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.15));
}

.split-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.split-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.split-content ul {
    list-style: none;
    margin-top: 1rem;
}

.split-content ul li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.6;
}

.split-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-section.reverse {
        direction: ltr;
    }
}

/* ========================================================
   NEW: FAQ Section
   ======================================================== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-gray);
}

.faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    gap: 1rem;
    transition: color var(--transition-fast);
}

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

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.8rem 1.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ========================================================
   NEW: Highlight quote / callout box
   ======================================================== */
.callout-box {
    background: rgba(255, 140, 0, 0.06);
    border-left: 3px solid var(--primary-orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.2rem 1.6rem;
    margin: 2rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.callout-box strong {
    color: var(--white);
}

/* ========================================================
   HOMEPAGE LIFT: broader software house positioning
   ======================================================== */
:root {
    --accent-cyan: #38bdf8;
    --accent-lime: #a3e635;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 10px;
}

body,
body * {
    letter-spacing: 0 !important;
}

.hero {
    min-height: 680px;
    padding: 7.2rem 0 5.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-background {
    background-image:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 42%, rgba(5, 5, 5, 0.38) 100%),
        url('img/hero_platform.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    opacity: 1 !important;
}

.hero-background::before,
.hero-background::after {
    display: none !important;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
    gap: 4rem;
}

.hero-text {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.15rem;
    color: #f5f5f5;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
}

.hero-title {
    max-width: 760px;
    font-size: 3.6rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 700px;
    color: #d7d7d7;
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-buttons {
    margin-top: 2.2rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.7rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.38rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.055);
    color: #eeeeee;
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-image {
    justify-self: stretch;
}

.platform-preview {
    width: min(100%, 560px);
    margin-left: auto;
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
    background: rgba(9, 13, 18, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
}

.platform-card {
    min-height: 96px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    background: rgba(14, 18, 24, 0.78);
}

.platform-card-main {
    min-height: 150px;
    background:
        linear-gradient(135deg, rgba(255, 140, 0, 0.24), rgba(56, 189, 248, 0.12)),
        rgba(12, 16, 22, 0.86);
}

.platform-card span {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.platform-card strong {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.platform-card-main strong {
    font-size: 1.55rem;
}

.platform-bars {
    display: grid;
    gap: 0.45rem;
    margin-top: 1rem;
}

.platform-bars i {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
}

.platform-bars i:nth-child(2) {
    width: 72%;
    opacity: 0.78;
}

.platform-bars i:nth-child(3) {
    width: 48%;
    opacity: 0.58;
}

.feature-card,
.benefit-card,
.industry-card,
.case-card,
.stat-card {
    border-radius: var(--radius-lg);
}

.feature-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 1.15rem;
    color: var(--primary-orange);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

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

.section-title,
.feature-title,
.benefit-title,
.industry-title,
.case-title,
.cta-title {
    letter-spacing: 0;
}

.stats-section {
    background:
        linear-gradient(180deg, rgba(56, 189, 248, 0.05), rgba(255, 140, 0, 0.05)),
        var(--bg-darker);
}

.stat-label {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

.tech-stack-section .tech-logo-pill {
    border-radius: var(--radius-sm);
}

.cta {
    background:
        linear-gradient(135deg, rgba(255, 140, 0, 0.16), rgba(56, 189, 248, 0.09)),
        var(--bg-dark);
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 6.2rem 0 4rem;
    }

    .hero-background {
        background-position: center !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .platform-preview {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4.2rem 0 2.7rem;
    }

    .hero-title {
        font-size: 2.35rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-proof span {
        flex: 1 1 calc(50% - 0.4rem);
        justify-content: center;
        text-align: center;
    }

    .hero-image {
        display: none;
    }
}

/* ========================================================
   HOMEPAGE V3: full content with cleaner product-site style
   ======================================================== */
.home-v3 {
    background: #eef3f8;
    color: #17202a;
}

.home-v3 .hero {
    min-height: 680px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #d8dee8;
    transform: none !important;
}

.home-v3 .hero-background {
    background-image:
        linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.9) 42%, rgba(5, 8, 12, 0.52) 68%, rgba(5, 8, 12, 0.24) 100%),
        url('img/hero_suite_v2.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    opacity: 1 !important;
}

.home-v3 .hero-background::before,
.home-v3 .hero-background::after {
    display: none !important;
}

.home-v3 .hero .container {
    width: 100%;
}

.home-v3 .hero-content {
    display: block;
    max-width: 650px;
}

.home-v3 .hero-text {
    max-width: 650px;
    padding: 5.3rem 0 5.5rem;
}

.home-v3 .hero-image {
    display: none !important;
}

.home-v3 .hero-eyebrow {
    margin-bottom: 1.1rem;
    color: #ff9f1c;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .hero-eyebrow::before {
    display: none;
}

.home-v3 .hero-title {
    max-width: 650px;
    color: #fff;
    font-size: 3.75rem;
    line-height: 1.03;
    font-weight: 900;
}

.home-v3 .hero-subtitle {
    max-width: 610px;
    color: #e8edf2;
    font-size: 1.08rem;
    line-height: 1.75;
}

.home-v3 .hero-proof span {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.home-v3 .btn-outline {
    color: inherit;
}

.home-v3 .hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.home-v3 .features,
.home-v3 .industries,
.home-v3 .cases-section {
    background: #eef3f8;
    color: #17202a;
}

.home-v3 .features {
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
    border-bottom: 1px solid #d8e0ea;
}

.home-v3 .how-it-works {
    background:
        linear-gradient(135deg, #0b1118 0%, #101c2a 58%, #132235 100%);
    color: #f8fafc;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v3 .industries {
    background:
        linear-gradient(180deg, #edf4f9 0%, #e5eef6 100%);
    color: #17202a;
    border-bottom: 1px solid #d3dee9;
}

.home-v3 .why-choose {
    background:
        linear-gradient(135deg, #fffaf2 0%, #f7fbff 100%);
    color: #17202a;
    border-bottom: 1px solid #eadfce;
}

.home-v3 .stats-section {
    background:
        linear-gradient(135deg, #0b1118 0%, #101827 50%, #1b1f2a 100%);
    color: #fff;
}

.home-v3 .cases-section {
    background:
        linear-gradient(180deg, #f5f7fb 0%, #edf2f7 100%);
}

.home-v3 .tech-stack-section {
    background: #111827;
    color: #f8fafc;
}

.home-v3 .features,
.home-v3 .how-it-works,
.home-v3 .industries,
.home-v3 .why-choose,
.home-v3 .stats-section,
.home-v3 .cases-section,
.home-v3 .tech-stack-section {
    padding: 6.2rem 0;
    position: relative;
}

.home-v3 .section-title,
.home-v3 .feature-title,
.home-v3 .benefit-title,
.home-v3 .industry-title,
.home-v3 .case-title {
    color: #111827;
}

.home-v3 .stats-section .section-title,
.home-v3 .stats-section .stat-number,
.home-v3 .how-it-works .section-title,
.home-v3 .how-it-works .how-step-title,
.home-v3 .tech-stack-section .section-title {
    color: #fff;
}

.home-v3 .section-subtitle,
.home-v3 .feature-description,
.home-v3 .benefit-description,
.home-v3 .industry-description,
.home-v3 .case-description,
.home-v3 .how-step-desc,
.home-v3 .stat-label {
    color: #56616f;
}

.home-v3 .stats-section .stat-label {
    color: #d8dee7;
}

.home-v3 .how-it-works .section-subtitle,
.home-v3 .how-it-works .how-step-desc,
.home-v3 .tech-stack-section .section-subtitle {
    color: #cbd5e1;
}

.home-v3 .features-grid,
.home-v3 .benefits-grid,
.home-v3 .cases-grid,
.home-v3 .stats-grid {
    gap: 1rem;
}

.home-v3 .feature-card,
.home-v3 .benefit-card,
.home-v3 .case-card,
.home-v3 .stat-card,
.home-v3 .how-step {
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.home-v3 .features .feature-card {
    min-height: 310px;
}

.home-v3 .how-it-works .how-step {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.home-v3 .stats-section .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

.home-v3 .feature-card::before,
.home-v3 .industry-card::after,
.home-v3 .case-card::before {
    display: none !important;
}

.home-v3 .feature-card:hover,
.home-v3 .benefit-card:hover,
.home-v3 .case-card:hover,
.home-v3 .industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.34);
}

.home-v3 .feature-icon,
.home-v3 .benefit-icon,
.home-v3 .case-icon,
.home-v3 .how-step-icon {
    color: #ff8c00;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
}

.home-v3 .how-it-works .how-step-icon {
    background: rgba(255, 159, 28, 0.12);
    border-color: rgba(255, 159, 28, 0.34);
    color: #ffb84d;
}

.home-v3 .how-it-works .icon-accent {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.34);
    color: #67d7ff;
}

.home-v3 .how-step-number {
    color: #ffb84d;
}

.home-v3 .icon-accent {
    color: #0284c7;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.home-v3 .industries-grid {
    gap: 1rem;
}

.home-v3 .industry-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.home-v3 .industry-card:nth-child(even) {
    transform: translateY(1.2rem);
}

.home-v3 .industry-image {
    min-height: 220px;
    border-radius: 0;
    opacity: 1;
    filter: saturate(1.04) contrast(1.04);
}

.home-v3 .industry-overlay {
    background: linear-gradient(180deg, rgba(6, 10, 16, 0), rgba(6, 10, 16, 0.08));
}

.home-v3 .industry-content {
    background: #fff;
}

.home-v3 .how-it-works-flow {
    align-items: stretch;
}

.home-v3 .how-step-arrow {
    color: #94a3b8;
}

.home-v3 .tech-stack-section .tech-logo-pill,
.home-v3 .tech-logo-pill {
    background: rgba(255, 255, 255, 0.075);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: none;
}

.home-v3 .cta {
    background:
        linear-gradient(135deg, #0b1118 0%, #151a23 62%, #2a1906 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-v3 .cta-background {
    display: none;
}

.home-v3 .cta-title {
    color: #fff;
}

.home-v3 .cta-subtitle {
    color: #d8dee7;
}

@media (max-width: 980px) {
    .home-v3 .hero {
        min-height: 640px;
    }

    .home-v3 .hero-background {
        background-image:
            linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.82) 100%),
            url('img/hero_suite_v2.png') !important;
        background-position: 63% center !important;
    }

    .home-v3 .hero-title {
        font-size: 3rem;
    }

    .home-v3 .how-it-works-flow {
        grid-template-columns: 1fr;
    }

    .home-v3 .how-step-arrow {
        display: none;
    }

    .home-v3 .industry-card:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 640px) {
    .home-v3 .hero {
        min-height: 650px;
    }

    .home-v3 .hero-text {
        padding: 4.4rem 0 3.2rem;
    }

    .home-v3 .hero-title {
        font-size: 2.45rem;
        line-height: 1.09;
    }

    .home-v3 .hero-subtitle {
        font-size: 1rem;
    }

    .home-v3 .features,
    .home-v3 .how-it-works,
    .home-v3 .industries,
    .home-v3 .why-choose,
    .home-v3 .stats-section,
    .home-v3 .cases-section,
    .home-v3 .tech-stack-section {
        padding: 4.4rem 0;
    }
}

/* ========================================================
   HOMEPAGE V4: service imagery, editorial cards and motion
   ======================================================== */
.home-v3 .features {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #f7f9fc 0%, #edf4f9 46%, #fff7eb 100%);
    background-size: 56px 56px, 56px 56px, auto;
}

.home-v3 .features .section-subtitle {
    max-width: 690px;
}

.home-v3 .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "crm crm"
        "cms automation";
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1180px;
    margin: 3.4rem auto 0;
}

.home-v3 .feature-card-crm {
    grid-area: crm;
}

.home-v3 .feature-card-cms {
    grid-area: cms;
}

.home-v3 .feature-card-automation {
    grid-area: automation;
}

.home-v3 .features .feature-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(148, 163, 184, 0.34);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    animation: homeCardIn 0.72s ease both;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.home-v3 .features .feature-card:nth-child(2) {
    animation-delay: 0.08s;
}

.home-v3 .features .feature-card:nth-child(3) {
    animation-delay: 0.16s;
}

.home-v3 .features .feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, 0.52);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.17);
}

.home-v3 .feature-media {
    position: relative;
    flex: 0 0 220px;
    min-height: 220px;
    height: 220px;
    aspect-ratio: auto;
    overflow: hidden;
    background: #0b1118;
}

.home-v3 .features .feature-card-crm {
    display: grid;
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
        "media title"
        "media desc"
        "media tags"
        "media link";
    column-gap: 0;
    min-height: 350px;
}

.home-v3 .feature-card-crm .feature-media {
    grid-area: media;
    min-height: 100%;
    height: 100%;
}

.home-v3 .feature-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 10, 16, 0.02) 0%, rgba(7, 10, 16, 0.46) 100%),
        linear-gradient(90deg, rgba(255, 159, 28, 0.16), transparent 48%);
    pointer-events: none;
}

.home-v3 .feature-media::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -55%;
    z-index: 2;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    animation: mediaSweep 8s ease-in-out infinite;
}

.home-v3 .feature-card-cms .feature-media::after {
    animation-delay: 1.6s;
}

.home-v3 .feature-card-automation .feature-media::after {
    animation-delay: 3.2s;
}

.home-v3 .feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.home-v3 .features .feature-card:hover .feature-media img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.04);
}

.home-v3 .features .feature-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    width: 54px;
    height: 54px;
    margin: 0;
    color: #ffb13b;
    background: rgba(7, 12, 18, 0.72);
    border-color: rgba(255, 177, 59, 0.42);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.home-v3 .features .feature-icon svg {
    width: 30px;
    height: 30px;
}

.home-v3 .features .icon-accent {
    color: #67d7ff;
    background: rgba(7, 12, 18, 0.72);
    border-color: rgba(103, 215, 255, 0.42);
}

.home-v3 .features .feature-title {
    margin: 1.45rem 1.55rem 0.7rem;
    font-size: 1.24rem;
    line-height: 1.25;
}

.home-v3 .feature-card-crm .feature-title {
    font-size: 1.42rem;
}

.home-v3 .features .feature-description {
    margin: 0 1.55rem 1.35rem;
    line-height: 1.72;
}

.home-v3 .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 1.55rem 1.35rem;
}

.home-v3 .feature-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.42rem 0.62rem;
    color: #475569;
    background: #f3f7fb;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
}

.home-v3 .features .feature-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: auto 1.55rem 1.55rem;
    padding: 0.72rem 0.95rem;
    color: #111827;
    background: linear-gradient(135deg, #ffb72c 0%, #ff9f1c 100%);
    border-radius: 8px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(255, 159, 28, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v3 .feature-card-crm .feature-title {
    grid-area: title;
    margin: 2.1rem 2rem 0.8rem;
    font-size: 1.6rem;
}

.home-v3 .feature-card-crm .feature-description {
    grid-area: desc;
    margin: 0 2rem 1.35rem;
}

.home-v3 .feature-card-crm .feature-tags {
    grid-area: tags;
    margin: 0 2rem 1.4rem;
}

.home-v3 .feature-card-crm .feature-link {
    grid-area: link;
    align-self: end;
    margin: 0 2rem 2rem;
}

.home-v3 .features .feature-link:hover {
    transform: translateX(3px);
    box-shadow: 0 16px 32px rgba(255, 159, 28, 0.34);
}

.home-v3 .how-it-works-flow {
    position: relative;
}

.home-v3 .how-it-works-flow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 177, 59, 0.72), rgba(103, 215, 255, 0.72), transparent);
    opacity: 0.58;
    transform: translateY(-50%);
    animation: flowLine 5.8s ease-in-out infinite;
}

.home-v3 .how-it-works .how-step {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.home-v3 .how-it-works .how-step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.08) 50%, transparent 62%, transparent 100%);
    transform: translateX(-120%);
    animation: panelSweep 8.5s ease-in-out infinite;
    pointer-events: none;
}

.home-v3 .how-it-works .how-step:nth-child(3)::after {
    animation-delay: 1.2s;
}

.home-v3 .how-it-works .how-step:nth-child(5)::after {
    animation-delay: 2.4s;
}

.home-v3 .industry-image {
    transition: transform 0.7s ease, filter 0.7s ease;
}

.home-v3 .industry-card:hover .industry-image {
    transform: scale(1.045);
    filter: saturate(1.12) contrast(1.06);
}

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

@keyframes mediaSweep {
    0%, 58% {
        opacity: 0;
        transform: translateX(0) skewX(-18deg);
    }
    66% {
        opacity: 0.72;
    }
    86%, 100% {
        opacity: 0;
        transform: translateX(520%) skewX(-18deg);
    }
}

@keyframes flowLine {
    0%, 100% {
        opacity: 0.36;
        filter: saturate(0.9);
    }
    50% {
        opacity: 0.86;
        filter: saturate(1.35);
    }
}

@keyframes panelSweep {
    0%, 56% {
        transform: translateX(-120%);
    }
    82%, 100% {
        transform: translateX(120%);
    }
}

@media (max-width: 1080px) {
    .home-v3 .features-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "crm"
            "cms"
            "automation";
    }

    .home-v3 .features .feature-card-crm {
        display: flex;
        min-height: 0;
    }

    .home-v3 .feature-card-crm .feature-media,
    .home-v3 .feature-media {
        min-height: 240px;
        height: 240px;
        aspect-ratio: 16 / 9;
    }

    .home-v3 .feature-card-crm .feature-title,
    .home-v3 .feature-card-crm .feature-description,
    .home-v3 .feature-card-crm .feature-tags,
    .home-v3 .feature-card-crm .feature-link {
        margin-right: 1.55rem;
        margin-left: 1.55rem;
    }
}

@media (max-width: 980px) {
    .home-v3 .how-it-works-flow::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .home-v3 .features-grid {
        margin-top: 2.4rem;
    }

    .home-v3 .feature-card-crm .feature-media,
    .home-v3 .feature-media {
        min-height: 190px;
        height: 190px;
    }

    .home-v3 .features .feature-title {
        margin-right: 1.2rem;
        margin-left: 1.2rem;
        font-size: 1.14rem;
    }

    .home-v3 .feature-card-crm .feature-title {
        font-size: 1.22rem;
    }

    .home-v3 .features .feature-description,
    .home-v3 .features .feature-tags,
    .home-v3 .features .feature-link {
        margin-right: 1.2rem;
        margin-left: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3 .features .feature-card,
    .home-v3 .feature-media::after,
    .home-v3 .how-it-works-flow::before,
    .home-v3 .how-it-works .how-step::after {
        animation: none;
    }

    .home-v3 .features .feature-card:hover,
    .home-v3 .features .feature-link:hover {
        transform: none;
    }
}

/* ========================================================
   HOMEPAGE V5: implementation scenarios
   ======================================================== */
.home-v3 .cases-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 159, 28, 0.18) 0, transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.14) 0, transparent 28%),
        linear-gradient(180deg, #f7fafc 0%, #edf4f8 100%);
}

.home-v3 .cases-section .section-subtitle {
    max-width: 680px;
}

.home-v3 .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 1180px;
    margin: 3.3rem auto 0;
}

.home-v3 .cases-section .case-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    animation: homeCardIn 0.72s ease both;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.home-v3 .cases-section .case-card:nth-child(2) {
    animation-delay: 0.08s;
}

.home-v3 .cases-section .case-card:nth-child(3) {
    animation-delay: 0.16s;
}

.home-v3 .cases-section .case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 159, 28, 0.5);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.17);
}

.home-v3 .case-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #0b1118;
}

.home-v3 .case-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 12, 18, 0.04) 0%, rgba(7, 12, 18, 0.46) 100%),
        linear-gradient(90deg, rgba(255, 159, 28, 0.12), transparent 54%);
    pointer-events: none;
}

.home-v3 .case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.home-v3 .case-card:hover .case-media img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.04);
}

.home-v3 .cases-section .case-icon {
    position: absolute;
    top: -38px;
    left: 1rem;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin: 0;
    color: #ffb13b;
    background: rgba(7, 12, 18, 0.74);
    border: 1px solid rgba(255, 177, 59, 0.42);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.home-v3 .cases-section .case-icon svg {
    width: 30px;
    height: 30px;
}

.home-v3 .cases-section .icon-accent {
    color: #67d7ff;
    border-color: rgba(103, 215, 255, 0.42);
    background: rgba(7, 12, 18, 0.74);
}

.home-v3 .case-content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.home-v3 .case-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    margin-bottom: 1.05rem;
    padding-left: 68px;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-v3 .case-topline span:last-child {
    color: #c76a00;
}

.home-v3 .cases-section .case-title {
    margin: 0 0 0.7rem;
    font-size: 1.18rem;
    line-height: 1.28;
}

.home-v3 .cases-section .case-description {
    margin: 0 0 1.15rem;
    color: #56616f;
    line-height: 1.68;
}

.home-v3 .case-result {
    margin: auto 0 1rem;
    padding: 0.95rem 1rem;
    background: #f7fafc;
    border: 1px solid #dde7f1;
    border-left: 3px solid #ff9f1c;
    border-radius: 8px;
}

.home-v3 .case-result span {
    display: block;
    margin-bottom: 0.4rem;
    color: #c76a00;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .case-result strong {
    display: block;
    color: #17202a;
    font-size: 0.91rem;
    line-height: 1.55;
}

.home-v3 .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.1rem;
}

.home-v3 .case-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.4rem 0.6rem;
    color: #475569;
    background: #f3f7fb;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1;
}

.home-v3 .case-card-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.68rem 0.9rem;
    color: #111827;
    background: linear-gradient(135deg, #ffb72c 0%, #ff9f1c 100%);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(255, 159, 28, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v3 .case-card-link:hover {
    transform: translateX(3px);
    box-shadow: 0 16px 32px rgba(255, 159, 28, 0.34);
}

@media (max-width: 1080px) {
    .home-v3 .cases-grid {
        grid-template-columns: 1fr;
    }

    .home-v3 .cases-section .case-card {
        display: grid;
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    }

    .home-v3 .case-media {
        height: auto;
        min-height: 100%;
    }
}

@media (max-width: 760px) {
    .home-v3 .cases-section .case-card {
        display: flex;
    }

    .home-v3 .case-media {
        height: 205px;
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .home-v3 .cases-grid {
        margin-top: 2.35rem;
    }

    .home-v3 .case-media {
        height: 185px;
    }

    .home-v3 .case-content {
        padding: 1.15rem;
    }

    .home-v3 .case-topline {
        display: grid;
        gap: 0.28rem;
        justify-content: start;
        min-height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3 .cases-section .case-card {
        animation: none;
    }

    .home-v3 .cases-section .case-card:hover,
    .home-v3 .case-card-link:hover {
        transform: none;
    }
}

/* ========================================================
   HOMEPAGE V6: why StructaAI proof section
   ======================================================== */
.home-v3 .why-choose {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 159, 28, 0.18) 0, transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(56, 189, 248, 0.12) 0, transparent 26%),
        linear-gradient(135deg, #0b1118 0%, #101827 55%, #171a22 100%);
    color: #f8fafc;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v3 .why-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    gap: 2rem;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.home-v3 .why-intro {
    position: relative;
    min-height: 520px;
    padding: 2.2rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.home-v3 .why-intro::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    background:
        linear-gradient(90deg, rgba(255, 159, 28, 0.18) 1px, transparent 1px),
        linear-gradient(rgba(255, 159, 28, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    border-radius: 50%;
    opacity: 0.7;
    transform: rotate(-14deg);
}

.home-v3 .why-kicker {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0.72rem;
    color: #ffb13b;
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid rgba(255, 159, 28, 0.28);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .why-choose .section-title {
    max-width: 430px;
    margin: 0 0 1.15rem;
    color: #fff;
    text-align: left;
    font-size: 2.6rem;
    line-height: 1.08;
}

.home-v3 .why-lead {
    position: relative;
    max-width: 430px;
    margin: 0;
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.78;
}

.home-v3 .why-proof {
    position: absolute;
    right: 2.2rem;
    bottom: 2.2rem;
    left: 2.2rem;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-v3 .why-proof div {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.home-v3 .why-proof strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffb13b;
    font-size: 2rem;
    line-height: 1;
}

.home-v3 .why-proof span {
    display: block;
    color: #d8dee7;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
}

.home-v3 .why-choose .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
}

.home-v3 .why-choose .benefit-card {
    position: relative;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 1.2rem;
    min-height: 0;
    padding: 1.35rem;
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: none;
    animation: homeCardIn 0.72s ease both;
    transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.home-v3 .why-choose .benefit-card:nth-child(2) {
    animation-delay: 0.08s;
}

.home-v3 .why-choose .benefit-card:nth-child(3) {
    animation-delay: 0.16s;
}

.home-v3 .why-choose .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(255, 159, 28, 0.42);
}

.home-v3 .benefit-card-head {
    display: grid;
    align-content: space-between;
    min-height: 100%;
}

.home-v3 .benefit-copy {
    min-width: 0;
}

.home-v3 .benefit-number {
    color: rgba(255, 255, 255, 0.34);
    font-size: 2.35rem;
    font-weight: 950;
    line-height: 1;
}

.home-v3 .why-choose .benefit-icon {
    width: 54px;
    height: 54px;
    margin: 0;
    color: #ffb13b;
    background: rgba(7, 12, 18, 0.74);
    border-color: rgba(255, 177, 59, 0.42);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.home-v3 .why-choose .benefit-icon svg {
    width: 30px;
    height: 30px;
}

.home-v3 .why-choose .icon-accent {
    color: #67d7ff;
    background: rgba(7, 12, 18, 0.74);
    border-color: rgba(103, 215, 255, 0.42);
}

.home-v3 .why-choose .benefit-title {
    margin: 0 0 0.6rem;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.3;
}

.home-v3 .why-choose .benefit-description {
    margin: 0 0 1rem;
    color: #cbd5e1;
    line-height: 1.66;
}

.home-v3 .benefit-points {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-v3 .benefit-points li {
    position: relative;
    padding-left: 1.05rem;
    color: #e5e7eb;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.42;
}

.home-v3 .benefit-points li::before {
    content: "";
    position: absolute;
    top: 0.48rem;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ff9f1c;
    border-radius: 999px;
}

@media (max-width: 1040px) {
    .home-v3 .why-layout {
        grid-template-columns: 1fr;
    }

    .home-v3 .why-intro {
        min-height: 0;
        padding-bottom: 2.2rem;
    }

    .home-v3 .why-proof {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .home-v3 .why-intro {
        padding: 1.35rem;
    }

    .home-v3 .why-choose .section-title {
        font-size: 2rem;
    }

    .home-v3 .why-proof {
        grid-template-columns: 1fr;
    }

    .home-v3 .why-choose .benefit-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }

    .home-v3 .benefit-card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3 .why-choose .benefit-card {
        animation: none;
    }

    .home-v3 .why-choose .benefit-card:hover {
        transform: none;
    }
}

/* ========================================================
   HOMEPAGE V7: remaining section system refresh
   ======================================================== */
.home-v3 .how-it-works {
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 159, 28, 0.16) 0, transparent 30%),
        linear-gradient(135deg, #0b1118 0%, #101827 54%, #142234 100%);
}

.home-v3 .how-it-works .section-title,
.home-v3 .stats-section .section-title,
.home-v3 .tech-stack-section .section-title {
    letter-spacing: 0;
}

.home-v3 .how-it-works-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 0.85rem;
    max-width: 1180px;
    margin: 3.2rem auto 0;
}

.home-v3 .how-it-works-flow::before {
    display: none;
}

.home-v3 .how-it-works .how-step::after {
    display: none;
}

.home-v3 .how-it-works .how-step {
    display: flex;
    flex-direction: column;
    min-height: 278px;
    gap: 0.65rem;
    padding: 1.55rem;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: none;
}

.home-v3 .how-it-works .how-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 159, 28, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
}

.home-v3 .how-it-works .how-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 0.8rem;
    border-radius: 8px;
}

.home-v3 .how-it-works .how-step-number {
    margin-top: 0;
    margin-bottom: 0.25rem;
    color: #ffb13b;
}

.home-v3 .how-it-works .how-step-title {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.18rem;
}

.home-v3 .how-it-works .how-step-arrow {
    display: grid;
    place-items: center;
    color: rgba(255, 177, 59, 0.72);
    font-size: 1.5rem;
}

.home-v3 .industries {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #f7f9fc 0%, #eef5fa 54%, #fff8ed 100%);
    background-size: 56px 56px, 56px 56px, auto;
}

.home-v3 .industries .section-subtitle {
    max-width: 740px;
}

.home-v3 .industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 1180px;
    margin: 3.2rem auto 0;
}

.home-v3 .industry-card,
.home-v3 .industry-card:nth-child(even) {
    display: grid;
    grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1fr);
    transform: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.home-v3 .industry-card:hover,
.home-v3 .industry-card:nth-child(even):hover {
    transform: translateY(-5px);
    border-color: rgba(255, 159, 28, 0.48);
}

.home-v3 .industry-image {
    position: relative;
    min-height: 100%;
    background-image: none !important;
    background:
        radial-gradient(circle at 24% 22%, rgba(255, 159, 28, 0.34), transparent 28%),
        linear-gradient(145deg, #0b1118 0%, #152033 100%);
}

.home-v3 .industry-card:nth-child(2) .industry-image {
    background:
        radial-gradient(circle at 28% 20%, rgba(103, 215, 255, 0.3), transparent 30%),
        linear-gradient(145deg, #0b1118 0%, #12263a 100%);
}

.home-v3 .industry-card:nth-child(3) .industry-image {
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 159, 28, 0.22), transparent 30%),
        linear-gradient(145deg, #101827 0%, #213047 100%);
}

.home-v3 .industry-card:nth-child(4) .industry-image {
    background:
        radial-gradient(circle at 28% 20%, rgba(103, 215, 255, 0.24), transparent 30%),
        linear-gradient(145deg, #0b1118 0%, #1f2937 100%);
}

.home-v3 .industry-visual {
    position: absolute;
    inset: 1.15rem;
    display: grid;
    align-content: center;
    gap: 0.65rem;
}

.home-v3 .industry-visual span {
    display: block;
    height: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.home-v3 .industry-visual span:nth-child(1) {
    width: 72%;
    background: rgba(255, 159, 28, 0.42);
}

.home-v3 .industry-visual span:nth-child(2) {
    width: 92%;
}

.home-v3 .industry-visual span:nth-child(3) {
    width: 58%;
    background: rgba(103, 215, 255, 0.28);
}

.home-v3 .industry-content {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    background: #fff;
}

.home-v3 .industry-meta {
    margin-bottom: 0.8rem;
    color: #c76a00;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .industry-title {
    margin-bottom: 0.7rem;
    font-size: 1.18rem;
}

.home-v3 .industry-description {
    margin-bottom: 1rem;
    line-height: 1.65;
}

.home-v3 .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.home-v3 .industry-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.4rem 0.58rem;
    color: #475569;
    background: #f3f7fb;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 850;
}

.home-v3 .stats-section {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #0b1118 0%, #101827 52%, #182235 100%);
    background-size: 72px 72px, 72px 72px, auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v3 .stats-section::before {
    display: none;
}

.home-v3 .stats-subtitle {
    max-width: 680px;
    margin-bottom: 0;
}

.home-v3 .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1180px;
    margin: 3rem auto 0;
}

.home-v3 .stats-section .stat-card {
    position: relative;
    min-height: 250px;
    padding: 1.35rem;
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(18px);
}

.home-v3 .stats-section .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 159, 28, 0.42);
    box-shadow: none;
}

.home-v3 .stat-eyebrow {
    margin-bottom: 1.6rem;
    color: #ffb13b;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .stats-section .stat-number {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 950;
}

.home-v3 .stats-section .stat-unit {
    display: inline-block;
    color: #ffb13b;
}

.home-v3 .stats-section .stat-label {
    color: #d8dee7;
    font-weight: 800;
    line-height: 1.5;
}

.home-v3 .tech-stack-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(103, 215, 255, 0.12) 0, transparent 28%),
        linear-gradient(135deg, #0b1118 0%, #111827 100%);
}

.home-v3 .tech-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.home-v3 .tech-copy {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.home-v3 .tech-kicker,
.home-v3 .cta-kicker {
    display: inline-flex;
    margin-bottom: 1.1rem;
    padding: 0.5rem 0.72rem;
    color: #ffb13b;
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid rgba(255, 159, 28, 0.28);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-v3 .tech-stack-section .section-title,
.home-v3 .tech-stack-section .section-subtitle {
    text-align: left;
}

.home-v3 .tech-principles {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.home-v3 .tech-principles span {
    padding: 0.82rem 0.95rem;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    font-weight: 850;
}

.home-v3 .tech-stack-section .tech-stack-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 0;
}

.home-v3 .tech-stack-section .tech-logo-pill {
    justify-content: flex-start;
    min-height: 72px;
    padding: 1rem;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.home-v3 .tech-stack-section .tech-logo-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 28, 0.42);
    background: rgba(255, 255, 255, 0.095);
}

.home-v3 .cta {
    padding: 6.2rem 0;
    background:
        linear-gradient(135deg, #0b1118 0%, #151a23 54%, #2a1906 100%);
}

.home-v3 .cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.home-v3 .cta-content {
    max-width: 720px;
    text-align: left;
}

.home-v3 .cta-title {
    margin-bottom: 1rem;
    font-size: 2.35rem;
    line-height: 1.12;
}

.home-v3 .cta-subtitle {
    max-width: 660px;
}

.home-v3 .cta-steps {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.home-v3 .cta-steps div {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(7, 12, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.home-v3 .cta-steps span {
    color: #ffb13b;
    font-weight: 950;
}

.home-v3 .cta-steps strong {
    color: #f8fafc;
    font-size: 0.95rem;
}

.footer {
    background:
        linear-gradient(180deg, #0b1118 0%, #070a0f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    gap: 1rem;
}

.footer-column {
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.footer-title {
    color: #fff;
}

.footer-links a,
.footer-contact li,
.footer-copyright,
.footer-legal a {
    color: #cbd5e1;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffb13b;
}

@media (max-width: 1080px) {
    .home-v3 .how-it-works-flow,
    .home-v3 .tech-layout,
    .home-v3 .cta-panel {
        grid-template-columns: 1fr;
    }

    .home-v3 .how-step-arrow {
        display: none;
    }

    .home-v3 .industries-grid,
    .home-v3 .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-v3 .industry-card,
    .home-v3 .industry-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .home-v3 .industry-image {
        min-height: 170px;
    }

    .home-v3 .tech-stack-section .tech-stack-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-v3 .industries-grid,
    .home-v3 .stats-grid,
    .home-v3 .tech-stack-section .tech-stack-logos {
        grid-template-columns: 1fr;
    }

    .home-v3 .how-it-works .how-step,
    .home-v3 .stats-section .stat-card {
        min-height: 0;
    }

    .home-v3 .tech-copy,
    .home-v3 .cta-panel {
        padding: 1.25rem;
    }

    .home-v3 .cta-title {
        font-size: 1.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v3 .how-it-works .how-step:hover,
    .home-v3 .industry-card:hover,
    .home-v3 .stats-section .stat-card:hover,
    .home-v3 .tech-stack-section .tech-logo-pill:hover {
        transform: none;
    }
}

/* ========================================================
   SUBPAGES V1: shared service, pricing and contact refresh
   ======================================================== */
body.subpage {
    background: #eef5fa;
}

body.subpage.page-computer-vision,
body.subpage.page-case-study-skora-glowy {
    --subpage-hero-image: linear-gradient(90deg, rgba(7, 10, 15, 0.28), rgba(7, 10, 15, 0.72)), url("img/case-ai-v1.jpg");
}

body.subpage.page-llm-nlp {
    --subpage-hero-image: linear-gradient(90deg, rgba(7, 10, 15, 0.24), rgba(7, 10, 15, 0.72)), url("img/offer-automation-v1.jpg");
}

body.subpage.page-ai-consulting {
    --subpage-hero-image: linear-gradient(90deg, rgba(7, 10, 15, 0.22), rgba(7, 10, 15, 0.7)), url("img/offer-crm-v1.jpg");
}

body.subpage.page-know-how {
    --subpage-hero-image: linear-gradient(90deg, rgba(7, 10, 15, 0.18), rgba(7, 10, 15, 0.68)), url("img/hero_suite_v2.png");
}

body.subpage.page-pricing,
body.subpage.page-contact {
    --subpage-hero-image: linear-gradient(90deg, rgba(7, 10, 15, 0.2), rgba(7, 10, 15, 0.7)), url("img/hero_platform.png");
}

body.subpage .know-how-section,
body.subpage .pricing-section,
body.subpage .contact-section {
    position: relative;
    overflow: hidden;
    padding: 7.5rem 0 6rem;
    color: #17202f;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #f7f9fc 0%, #eef5fa 54%, #fff8ed 100%);
    background-size: 56px 56px, 56px 56px, auto;
}

body.subpage .know-how-section::before,
body.subpage .pricing-section::before,
body.subpage .contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 510px;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 159, 28, 0.22) 0, transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(103, 215, 255, 0.14) 0, transparent 26%),
        linear-gradient(135deg, #070a0f 0%, #0f172a 56%, #172033 100%);
    pointer-events: none;
}

body.subpage .know-how-section > .container,
body.subpage .pricing-section > .container,
body.subpage .contact-section > .container {
    position: relative;
    z-index: 1;
}

body.subpage .know-how-header,
body.subpage .pricing-header,
body.subpage .contact-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    min-height: 420px;
    margin: 0 0 4rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    text-align: left;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(11, 17, 24, 0.96), rgba(16, 24, 39, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

body.subpage .know-how-header::after,
body.subpage .pricing-header::after,
body.subpage .contact-header::after {
    content: "";
    display: block;
    grid-column: 2;
    grid-row: 1 / span 3;
    min-height: 300px;
    align-self: stretch;
    background-image:
        var(--subpage-hero-image, linear-gradient(135deg, rgba(7, 10, 15, 0.32), rgba(7, 10, 15, 0.72)), url("img/hero_suite_v2.png"));
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.subpage .know-how-header > *,
body.subpage .pricing-header > *,
body.subpage .contact-header > * {
    grid-column: 1;
    max-width: 760px;
}

body.subpage .know-how-header > p:first-child {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 0.9rem !important;
    padding: 0.5rem 0.72rem;
    color: #ffb13b !important;
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid rgba(255, 159, 28, 0.28);
    border-radius: 8px;
    font-size: 0.78rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0 !important;
}

body.subpage .know-how-title,
body.subpage .pricing-title,
body.subpage .contact-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: 0;
}

body.subpage .know-how-subtitle,
body.subpage .pricing-subtitle,
body.subpage .contact-subtitle {
    max-width: 720px;
    margin: 1.2rem 0 0;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

body.subpage .process-infographic,
body.subpage .comparison-section,
body.subpage .timeline-section,
body.subpage .metrics-section,
body.subpage .pricing-block,
body.subpage .pricing-note {
    margin: 0 auto 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

body.subpage .process-infographic > p,
body.subpage .comparison-section > p,
body.subpage .timeline-section > p {
    display: inline-flex;
    width: fit-content;
    margin: 0 auto 1.35rem !important;
    padding: 0.46rem 0.65rem;
    color: #c76a00 !important;
    background: rgba(255, 159, 28, 0.09);
    border: 1px solid rgba(255, 159, 28, 0.24);
    border-radius: 8px;
    letter-spacing: 0 !important;
}

body.subpage .pipeline-flow,
body.subpage .comparison-grid,
body.subpage .timeline-flow,
body.subpage .metrics-grid,
body.subpage .why-grid,
body.subpage .pricing-grid {
    gap: 1rem;
}

body.subpage .pipeline-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
    align-items: stretch;
}

body.subpage .pipeline-step {
    min-width: 0;
}

body.subpage .pipeline-box,
body.subpage .comparison-col,
body.subpage .timeline-item,
body.subpage .metric-card,
body.subpage .why-card,
body.subpage .pricing-card,
body.subpage .faq-item,
body.subpage .contact-form {
    border-radius: 8px;
}

body.subpage .pipeline-box {
    min-height: 132px;
    padding: 1rem;
    color: #17202f;
    background: #f8fafc;
    border: 1px solid #dce5ef;
}

body.subpage .pipeline-box-icon,
body.subpage .why-icon {
    border-radius: 8px;
}

body.subpage .pipeline-box-icon {
    color: #ff9f1c;
    opacity: 1;
}

body.subpage .pipeline-box-icon.icon-accent {
    color: #38bdf8;
}

body.subpage .pipeline-box-label {
    color: #334155;
    font-weight: 850;
    line-height: 1.45;
}

body.subpage .pipeline-box-label span {
    color: #66758a !important;
}

body.subpage .pipeline-arrow {
    color: #ff9f1c;
    font-weight: 900;
}

body.subpage .process-steps {
    display: grid;
    gap: 1rem;
    margin: 2.5rem 0;
}

body.subpage .process-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1.1rem;
    padding: clamp(1.2rem, 3vw, 1.65rem);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body.subpage .process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 159, 28, 0.46);
}

body.subpage .step-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #ffb13b;
    background: #0f172a;
    border: 1px solid rgba(255, 159, 28, 0.36);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 950;
}

body.subpage .step-title,
body.subpage .why-title,
body.subpage .pricing-plan-name {
    color: #17202f;
    letter-spacing: 0;
}

body.subpage .step-description,
body.subpage .why-description,
body.subpage .pricing-plan-desc,
body.subpage .faq-answer,
body.subpage .contact-subtitle {
    color: #586577;
    line-height: 1.7;
}

body.subpage .contact-header .contact-subtitle {
    color: #cbd5e1;
}

body.subpage .callout-box {
    margin: 2.3rem 0;
    padding: 1.35rem 1.5rem;
    color: #17202f;
    background:
        linear-gradient(90deg, rgba(255, 159, 28, 0.12), rgba(103, 215, 255, 0.08)),
        #fff;
    border: 1px solid rgba(255, 159, 28, 0.34);
    border-left: 4px solid #ff9f1c;
    border-radius: 8px;
}

body.subpage .callout-box strong {
    color: #c76a00;
}

body.subpage .why-work-section {
    margin: 3rem 0;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #0b1118 0%, #101827 54%, #182235 100%);
    background-size: 72px 72px, 72px 72px, auto;
    border-radius: 8px;
}

body.subpage .why-work-section .section-title {
    color: #fff;
}

body.subpage .why-work-section .section-subtitle {
    color: #cbd5e1;
}

body.subpage .why-work-section .why-card {
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

body.subpage .why-work-section .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 28, 0.42);
}

body.subpage .why-work-section .why-title {
    color: #fff;
}

body.subpage .why-work-section .why-description {
    color: #cbd5e1;
}

body.subpage .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.subpage .metric-card {
    min-height: 178px;
    padding: 1.35rem;
    text-align: left;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.subpage .metric-value {
    color: #ffb13b;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 950;
}

body.subpage .metric-label {
    color: #e5e7eb;
    line-height: 1.55;
}

body.subpage .comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.subpage .comparison-col {
    padding: 1.35rem;
    background: #f8fafc;
    border: 1px solid #dce5ef;
}

body.subpage .comparison-col.col-good {
    background: linear-gradient(180deg, #f8fafc, #eef8ff);
    border-color: rgba(103, 215, 255, 0.32);
}

body.subpage .comparison-col.col-bad {
    background: linear-gradient(180deg, #fff, #fff7f4);
    border-color: rgba(255, 159, 28, 0.2);
}

body.subpage .timeline-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.subpage .timeline-item {
    padding: 1.15rem;
    background: #f8fafc;
    border: 1px solid #dce5ef;
}

body.subpage .timeline-dot {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.8rem;
    color: #ffb13b;
    background: #0f172a;
    border: 1px solid rgba(255, 159, 28, 0.36);
    border-radius: 8px;
}

body.subpage .timeline-title {
    color: #17202f;
    font-weight: 900;
}

body.subpage .timeline-desc {
    color: #586577;
    line-height: 1.62;
}

body.subpage .know-how-cta {
    margin: 3rem 0 0;
    padding: 2rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(42, 25, 6, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

body.subpage .know-how-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.05);
}

body.subpage .know-how-cta .btn-outline:hover {
    border-color: rgba(255, 159, 28, 0.72);
    background: rgba(255, 159, 28, 0.12);
}

body.subpage .pricing-block {
    max-width: 900px;
    text-align: center;
}

body.subpage .pricing-block-title {
    margin-bottom: 0.55rem;
    color: #17202f;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

body.subpage .pricing-block-desc {
    max-width: 720px;
    margin: 0 auto;
    color: #586577;
    line-height: 1.7;
}

body.subpage .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2rem 0;
}

body.subpage .pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.34);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body.subpage .pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 28, 0.44);
}

body.subpage .pricing-card.featured {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045)),
        #0f172a;
    border-color: rgba(255, 159, 28, 0.42);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

body.subpage .pricing-card.featured .pricing-plan-name,
body.subpage .pricing-card.featured .price-amount,
body.subpage .pricing-card.featured .pricing-features li {
    color: #fff;
}

body.subpage .pricing-card.featured .pricing-plan-desc,
body.subpage .pricing-card.featured .price-note,
body.subpage .pricing-card.featured .price-unit {
    color: #cbd5e1;
}

body.subpage .pricing-badge {
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.42rem 0.62rem;
    color: #0f172a;
    background: #ffb13b;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

body.subpage .pricing-price {
    margin: 1rem 0;
}

body.subpage .price-amount {
    color: #17202f;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

body.subpage .price-note,
body.subpage .price-unit {
    color: #66758a;
}

body.subpage .pricing-features {
    display: grid;
    gap: 0.62rem;
    margin: 1rem 0 1.35rem;
}

body.subpage .pricing-features li {
    color: #334155;
    line-height: 1.45;
}

body.subpage .pricing-features li::before {
    color: #ff9f1c;
}

body.subpage .pricing-btn {
    margin-top: auto;
}

body.subpage .pricing-card:not(.featured) .pricing-btn.btn-outline,
body.subpage .contact-form .btn-outline {
    color: #17202f;
    background: rgba(255, 159, 28, 0.08);
    border-color: rgba(255, 159, 28, 0.42);
}

body.subpage .pricing-card:not(.featured) .pricing-btn.btn-outline:hover,
body.subpage .contact-form .btn-outline:hover {
    color: #0f172a;
    background: rgba(255, 159, 28, 0.16);
    border-color: rgba(255, 159, 28, 0.72);
}

body.subpage .faq-section {
    padding: 5.5rem 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #0b1118 0%, #111827 100%);
    background-size: 72px 72px, 72px 72px, auto;
}

body.subpage .faq-section .section-title {
    color: #fff;
}

body.subpage .faq-list {
    max-width: 980px;
}

body.subpage .faq-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.subpage .faq-question {
    color: #fff;
    background: transparent;
}

body.subpage .faq-answer {
    color: #cbd5e1;
    background: rgba(7, 12, 18, 0.36);
}

body.subpage .contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
    margin: 0 auto;
}

body.subpage .contact-form {
    padding: clamp(1.25rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.34);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

body.subpage .form-label {
    color: #17202f;
    font-weight: 850;
}

body.subpage .form-input,
body.subpage .form-select,
body.subpage .form-textarea {
    min-height: 50px;
    color: #17202f;
    background: #f8fafc;
    border: 1px solid #dce5ef;
    border-radius: 8px;
}

body.subpage .form-textarea {
    min-height: 150px;
}

body.subpage .form-input:focus,
body.subpage .form-select:focus,
body.subpage .form-textarea:focus {
    border-color: rgba(255, 159, 28, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.14);
}

@media (max-width: 1180px) {
    body.subpage .timeline-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    body.subpage .know-how-header,
    body.subpage .pricing-header,
    body.subpage .contact-header,
    body.subpage .comparison-grid,
    body.subpage .pricing-grid {
        grid-template-columns: 1fr;
    }

    body.subpage .know-how-header::after,
    body.subpage .pricing-header::after,
    body.subpage .contact-header::after {
        grid-column: 1;
        grid-row: auto;
        min-height: 220px;
    }

    body.subpage .metrics-grid,
    body.subpage .why-grid {
        grid-template-columns: 1fr;
    }

    body.subpage .pipeline-flow {
        grid-template-columns: 1fr;
    }

    body.subpage .pipeline-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    body.subpage .know-how-section,
    body.subpage .pricing-section,
    body.subpage .contact-section {
        padding: 5.8rem 0 4rem;
    }

    body.subpage .know-how-header,
    body.subpage .pricing-header,
    body.subpage .contact-header {
        min-height: 0;
        margin-bottom: 2.5rem;
        padding: 1.25rem;
    }

    body.subpage .know-how-header::after,
    body.subpage .pricing-header::after,
    body.subpage .contact-header::after {
        min-height: 180px;
    }

    body.subpage .process-step {
        grid-template-columns: 1fr;
    }

    body.subpage .timeline-flow {
        grid-template-columns: 1fr;
    }

    body.subpage .form-row {
        grid-template-columns: 1fr;
    }

    body.subpage .know-how-cta {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.subpage .process-step:hover,
    body.subpage .why-card:hover,
    body.subpage .pricing-card:hover {
        transform: none;
    }
}

/* ========================================================
   MOBILE QA: compact cards and safer mobile rhythm
   ======================================================== */
@media (max-width: 760px) {
    .home-v3 .industries-grid {
        gap: 0.9rem;
        margin-top: 2rem;
    }

    .home-v3 .industry-card,
    .home-v3 .industry-card:nth-child(even) {
        grid-template-columns: 8px minmax(0, 1fr);
        min-height: 0;
    }

    .home-v3 .industry-image {
        min-height: 0 !important;
        height: auto;
        background:
            linear-gradient(180deg, #ffb13b 0%, #67d7ff 100%) !important;
    }

    .home-v3 .industry-overlay,
    .home-v3 .industry-visual {
        display: none;
    }

    .home-v3 .industry-content {
        padding: 1.2rem;
    }

    .home-v3 .industry-title {
        font-size: 1.06rem;
        line-height: 1.25;
    }

    .home-v3 .industry-description {
        margin-bottom: 0.9rem;
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .home-v3 .industry-tags {
        gap: 0.38rem;
    }

    .home-v3 .industry-tags span {
        min-height: 28px;
        padding: 0.34rem 0.48rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 640px) {
    .home-v3 .features,
    .home-v3 .how-it-works,
    .home-v3 .industries,
    .home-v3 .why-choose,
    .home-v3 .stats-section,
    .home-v3 .cases-section,
    .home-v3 .tech-stack-section,
    .home-v3 .cta {
        padding: 3.6rem 0;
    }

    .home-v3 .hero {
        min-height: auto;
    }

    .home-v3 .hero-text {
        padding: 4rem 0 2.7rem;
    }

    .home-v3 .section-title {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.08;
    }

    .home-v3 .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .home-v3 .feature-card-crm .feature-media,
    .home-v3 .feature-media {
        min-height: 160px;
        height: 160px;
    }

    .home-v3 .how-it-works .how-step {
        padding: 1.2rem;
    }

    .home-v3 .stats-section .stat-card {
        min-height: 0;
        padding: 1.15rem;
        text-align: left;
    }

    .home-v3 .stats-section .stat-number {
        font-size: 2.55rem;
    }

    .home-v3 .stats-section .stat-label {
        max-width: none;
        margin: 0.65rem 0 0;
        text-align: left;
    }

    .home-v3 .tech-copy,
    .home-v3 .cta-panel {
        padding: 1.15rem;
    }

    body.subpage .know-how-header,
    body.subpage .pricing-header,
    body.subpage .contact-header {
        gap: 1rem;
    }

    body.subpage .know-how-title,
    body.subpage .pricing-title,
    body.subpage .contact-title {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1.04;
    }

    body.subpage .know-how-header::after,
    body.subpage .pricing-header::after,
    body.subpage .contact-header::after {
        min-height: 150px;
    }
}
