/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
/* ============================================================ FONTS */

/* Ubuntu */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* FS Sinclair */
@font-face {
    font-family: 'FS Sinclair';
    src: url('fonts/FS-Sinclair-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Sinclair';
    src: url('fonts/FS-Sinclair-Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #0d0d0d;
    --dark: #141414;
    --dark2: #1a1a1a;
    --orange: #EF4123;
    --yellow: #F9A900;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --light-bg2: #eeeeee;
    --grey: #b0b0b0;
    --grey-dark: #555555;
    --grey-dim: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.07);
    --border-light: rgba(0, 0, 0, 0.08);
    --font-display: 'FS Sinclair', sans-serif;
    --font-main: 'Ubuntu', sans-serif;
    --grad: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: normal;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    background: none;
}

p {
    line-height: 1.6;
}

/* ============================================================ SCROLLBAR */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 2px;
}

/* ============================================================ TYPOGRAPHY SCALE */
h1 {
    font-size: clamp(2rem, 5vw, 80px);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 65px);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 48px);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 32px);
}

h5 {
    font-size: clamp(1rem, 2vw, 24px);
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 16px);
}

p {
    font-size: clamp(0.8rem, 1.2vw, 14px);
}

small {
    font-size: clamp(0.7rem, 1vw, 11px);
}

/* ============================================================ UTILITIES */
.d-none {
    display: none !important;
}

/* ============================================================ TYPOGRAPHY HELPERS */
h1,
h2,
h3 {
    font-family: var(--font-main);
}

.nav-links a,
.logo-text {
    font-family: var(--font-main);
}

.btn,
.btn-cta {
    font-family: var(--font-main);
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.section-label--dark {
    color: var(--orange);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.section-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title--dark {
    color: var(--black);
}

.section-title--dark span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.75;
    max-width: 56ch;
}

.section-body--dark {
    color: var(--grey-dark);
}

/* ============================================================ LAYOUT */
.container {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
}

/* ============================================================ BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad);
    color: var(--white);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.btn-primary:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline--dark {
    background: transparent;
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.btn-outline--dark:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================ NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 200px;
}

.logo img {
    width: 100%;
    height: auto;
}

.navbar-left-side {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-active {
    color: var(--white);
}

.nav-links a.nav-active::after {
    width: 100%;
}

/* ============================================================ LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 2.5rem;
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--grey);
    transition: color var(--transition);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-active {
    color: var(--orange);
    pointer-events: none;
}

.lang-divider {
    color: var(--border);
    font-size: 0.75rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--orange);
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--grey);
    cursor: pointer;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.mobile-lang-switcher .lang-btn {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--grey);
    transition: color var(--transition);
}

.mobile-lang-switcher .lang-btn:hover {
    color: var(--white);
}

.mobile-lang-switcher .lang-active {
    color: var(--orange);
}

.mobile-lang-switcher .lang-divider {
    color: var(--border);
    font-size: 1rem;
}

/* ============================================================ HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(239, 65, 35, 0.07) 0%, transparent 60%),
        var(--black);
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440;
}

.hero-heading {
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--grey);
    max-width: 52ch;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.25s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.4rem;
    border: 1px solid var(--orange);
    background: transparent;
    border-radius: 999px;
}

/* ============================================================ INTRO — light bg */
.intro {
    padding: 6rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text .section-title {
    color: var(--black);
}

.intro-text .section-body {
    color: var(--grey-dark);
}

.intro-visual {
    aspect-ratio: 4/3;
    background: var(--light-bg2);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.intro-visual-inner {
    width: 80px;
    height: 80px;
    background: var(--grad);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    opacity: 0.15;
}

/* ============================================================ PROBLEMS — dark bg */
.problems {
    padding: 6rem 0;
    background: var(--dark);
}

.problems-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.problems-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 30%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 30%, black 100%);
}

.problems-intro {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

/* ============================================================ SOLUTIONS — light bg */
.solutions {
    padding: 6rem 0;
    background: var(--white);
}

.solutions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.solutions-header .section-title {
    color: var(--black);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.solution-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.solution-item:hover::before {
    transform: scaleX(1);
}

.solution-item:hover {
    background: var(--light-bg);
}

.solution-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(239, 65, 35, 0.5);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.5;
}

.solution-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.solution-item p {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.65;
}

.solution-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.05em;
    transition: opacity var(--transition);
}

.solution-cta:hover {
    opacity: 0.7;
}

/* ============================================================ CLIENTS CARDS — dark bg  */
.clients {
    padding: 6rem 0;
    background: var(--dark);
}

/* ============================================================ CLIENTS SLIDER */
.clients-slider {
    position: relative;
    overflow: hidden;
}

.clients-track {
    display: flex;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    box-sizing: border-box;
    padding: 0 8px;
}

.client-slide-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dark2);
}

.client-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.client-slide:hover .client-slide-image img {
    transform: scale(1.04);
}

.client-slide-title {
    padding: 0.9rem 0.4rem 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    border-top: 2px solid var(--orange);
    margin-top: 2px;
}

.slider-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-btn--prev {
    left: 0;
}

.slider-btn--next {
    right: 0;
}

.slider-btn:hover {
    background: var(--black);
}

.slider-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
    padding: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

/* ============================================================ WHY US — light bg */
.why {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.why .solutions-header .section-title {
    color: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--light-bg);
}

.why-card-num {
    font-size: 3rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.8rem;
    opacity: 0.35;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--grey-dark);
    line-height: 1.7;
    margin-top: 0.5rem;
}

/* ============================================================ PROCESS — dark bg */
.process {
    padding: 6rem 0;
    background: var(--dark);
}

.process-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 1rem);
    right: calc(10% + 1rem);
    height: 1px;
    background: var(--grad);
}

.process-steps--4 {
    grid-template-columns: repeat(4, 1fr);
}

.process-steps--4::before {
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
}

.process-step {
    text-align: center;
    padding: 0 1rem;
}

.process-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--orange);
    transition: var(--transition);
}

.process-step:hover .process-dot {
    background: var(--orange);
    color: var(--white);
}

.process-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--grey);
    line-height: 1.6;
    margin-top: 0.4rem;
}

/* ============================================================ CTA SECTION */
.cta {
    padding: 6rem 0;
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-content {
    max-width: 60%;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.cta-title em {
    font-style: normal;
    opacity: 0.7;
}

.cta-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.8rem;
    max-width: 60%;
    line-height: 1.65;
}

.btn-cta {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-cta:hover {
    background: var(--dark2);
    transform: translateY(-2px);
}

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-contact-info a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.cta-contact-info a:hover {
    color: var(--white);
}

.cta-contact-divider {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

/* ============================================================ CONTACT — dark bg */
.contact {
    padding: 6rem 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info>p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--grey-dim);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: var(--orange);
    padding: 0.5rem;
}

.contact-detail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.15rem;
}

.contact-detail-val {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

/* ============================================================ FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1.4fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: block;
    width: 160px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.5;
}

.footer-contact-item .item-name {
    font-weight: 600;
}

.footer-contact-item a {
    color: var(--grey);
    transition: color var(--transition);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav-list a {
    font-size: 0.82rem;
    color: var(--grey);
    transition: color var(--transition);
    position: relative;
}

.footer-eu {
    padding: 4rem 0;
}

.footer-eu-logo {
    width: 284px;
    height: auto;
    margin: auto;
}

.footer-eu-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(239, 65, 35, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.product-card-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.product-card-sub {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.product-card-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 1.8rem;
}

.product-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin-bottom: 1rem;
}

.product-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex: 1;
}

.product-card-features li {
    font-size: 0.82rem;
    color: var(--grey-dark);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.product-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: var(--grey-dim);
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: var(--transition);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ============================================================ SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.faq-list {
    max-width: 860px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--grey-dim);
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--orange);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

/* ---- Problem cards — 3 kolone ---- */
.problems-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.problem-card:hover {
    background: var(--light-bg);
    border-left-color: var(--orange);
}

.problem-bg-num {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    user-select: none;
    transition: color var(--transition);
}

.problem-card:hover .problem-bg-num {
    color: rgba(239, 65, 35, 0.05);
}

.problem-icon {
    width: 52px;
    height: 52px;
    background: rgba(239, 65, 35, 0.07);
    border: 1px solid rgba(239, 65, 35, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.problem-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
}

.problem-card:hover .problem-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.problem-card:hover .problem-icon svg {
    stroke: var(--white);
}

.problem-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.problem-card p {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.7;
}

/* ---- Reasons grid — 2 kolone ---- */
.reasons-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

/* ---- Reasons grid — 3 kolone ---- */
.reasons-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

/* ---- Reason item — dijeli se između reasons-grid-2 i reasons-grid-3 ---- */
.reason-item {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.reason-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.reason-item:hover::after {
    transform: scaleX(1);
}

.reason-item:hover {
    background: var(--light-bg);
}

/* Dark variant */
.reason-item--dark {
    background: var(--dark2);
}

.reason-item--dark:hover {
    background: var(--dark);
}

.reason-item--dark h4 {
    color: var(--white);
}

.reason-item--dark p {
    color: var(--grey);
}

.reason-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1.2rem;
    transition: opacity var(--transition);
}

.reason-item:hover .reason-num {
    opacity: 0.7;
}

.reason-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.reason-item p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.65;
}

.reason-item.grey-dark-text p {
    color: var(--grey-dark);
}

/* Reason item s ikonom (VID što rješava) */
.reason-item .reason-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 65, 35, 0.07);
    border: 1px solid rgba(239, 65, 35, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.reason-item .reason-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.reason-item:hover .reason-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.reason-item:hover .reason-icon svg {
    stroke: var(--white);
}

/* ---- Proof cards ---- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.proof-card {
    background: var(--dark2);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.proof-card:hover {
    background: var(--dark);
}

.proof-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(239, 65, 35, 0.1);
    border: 1px solid rgba(239, 65, 35, 0.25);
    border-radius: 999px;
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.proof-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.proof-card p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.65;
}

/* ---- Industry tags — pill ---- */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 3rem;
    justify-content: center;
}

.industry-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--dark2);
    border: 1px solid var(--grey-dim);
    border-radius: 999px;
    color: var(--grey);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
    cursor: default;
}

.industry-tag:hover {
    border-color: var(--orange);
    color: var(--white);
    background: var(--orange);
}

/* Light variant */
.industry-tag--dark {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 2px;
    padding: 0.7rem 1.5rem;
}

.industry-tag--dark:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ---- EU block ---- */
.eu-block {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--dark2);
    border: 1px solid var(--border);
}

.eu-text p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.eu-text p:last-child {
    margin-bottom: 0;
}

/* Light variant */
.eu-block--light {
    background: var(--light-bg);
    border-color: var(--border-light);
}

.eu-block--light .eu-text p {
    color: var(--grey-dark);
}

.eu-visual {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.eu-visual img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.2rem;
}

.eu-visual p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.eu-visual a {
    font-size: 0.82rem;
    color: var(--orange);
    border-bottom: 1px dashed var(--orange);
    transition: opacity var(--transition);
}

.eu-visual a:hover {
    opacity: 0.7;
}

.eu-block.only-child {
    grid-template-columns: 1fr;
}

.eu-block.only-child a {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--orange);
    border-bottom: 1px dashed var(--orange);
    transition: opacity var(--transition);
}

.eu-block.only-child a:hover {
    opacity: 0.7;
}

/* ---- Spec grid ---- */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.spec-item {
    background: var(--dark2);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.spec-item:hover::before {
    transform: scaleX(1);
}

.spec-item:hover {
    background: var(--dark);
}

.spec-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.spec-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.spec-text {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.65;
}

/* ---- Features list ---- */
.features-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.feature-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.8rem 2rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    background: var(--white);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row:hover {
    background: var(--light-bg);
}

.feature-row:hover .feature-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.feature-row:hover .feature-icon svg {
    stroke: var(--white);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 65, 35, 0.07);
    border: 1px solid rgba(239, 65, 35, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
}

.feature-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.6;
    max-width: 70ch;
}

.feature-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.feature-row:hover .feature-num {
    opacity: 0.5;
}

/* ---- Industry grid (s opisom, ne pill) ---- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    margin-top: 3rem;
}

.industry-row {
    background: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.industry-row:hover {
    background: var(--light-bg);
    border-left-color: var(--orange);
}

.industry-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 160px;
}

.industry-desc {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.55;
}

/* ---- i40 (Industrija 4.0 blok) ---- */
.i40-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.i40-item {
    background: var(--dark2);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.i40-item:hover {
    background: var(--dark);
}

.i40-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.i40-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 65, 35, 0.1);
    border: 1px solid rgba(239, 65, 35, 0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.i40-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    transition: var(--transition);
}

.i40-item:hover .i40-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.i40-item:hover .i40-icon svg {
    stroke: var(--white);
}

.i40-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.i40-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.i40-item p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.75;
}

.i40-line {
    height: 2px;
    background: var(--grad);
    margin-top: 2rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.i40-item:hover .i40-line {
    transform: scaleX(1);
}

/* ---- Delivery grid ---- */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.delivery-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--orange);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}

.delivery-item:hover {
    border-color: rgba(239, 65, 35, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.delivery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.delivery-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 65, 35, 0.07);
    border: 1px solid rgba(239, 65, 35, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.delivery-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.delivery-item:hover .delivery-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.delivery-item:hover .delivery-icon svg {
    stroke: var(--white);
}

.delivery-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.45;
}

.delivery-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.delivery-item p {
    font-size: 0.82rem;
    color: var(--grey-dark);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.delivery-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
}

.delivery-bullets li {
    font-size: 0.78rem;
    color: var(--grey-dark);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.delivery-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

.video-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--grey);
    padding: 2rem;
}

.video-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.35;
    margin-bottom: 1.2rem;
    stroke: var(--orange);
}

.video-placeholder-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.video-playlist-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--grey);
}

.video-playlist-link a {
    color: var(--orange);
    border-bottom: 1px dashed var(--orange);
    transition: opacity var(--transition);
}

.video-playlist-link a:hover {
    opacity: 0.7;
}

/* ============================================================ RESPONSIVE — 1200px */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-visual {
        display: none;
    }
}

/* ============================================================ RESPONSIVE — 1024px */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .eu-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-item--accent {
        transform: none;
    }
}

/* ============================================================ RESPONSIVE — 768px */
@media (max-width: 768px) {
    .lang-switcher {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .problems-bg-image {
        width: 100%;
        opacity: 0.08;
    }

    .problems-intro {
        max-width: 100%;
    }

    .client-slide {
        flex: 0 0 50%;
        width: 50%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-sub {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .product-card:hover {
        transform: none;
    }

    .problems-grid-3 {
        grid-template-columns: 1fr;
    }

    .reasons-grid-2 {
        grid-template-columns: 1fr;
    }

    .reasons-grid-3 {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .i40-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .eu-block {
        padding: 2rem;
    }

    .industry-row {
        flex-direction: column;
        gap: 0.4rem;
    }

    .industry-name {
        min-width: auto;
    }

    .feature-row {
        grid-template-columns: 44px 1fr;
        gap: 1rem;
    }

    .feature-num {
        display: none;
    }
}

/* ============================================================ RESPONSIVE — 480px */
@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .client-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section.hero {
        padding-top: 7.5rem;
    }
}

@media print {
    body {
        margin: 0;
    }

    .no-print {
        display: none;
    }

    .page-break {
        page-break-before: always;
    }
}