/* ================================================
   PLUSPULS Corporate Design System · styles.css
   Based on Styleguide v1.0 · März 2026
   ================================================ */

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --orange-500: #FF6B2C;
    --orange-400: #FF8A50;
    --orange-300: #FFB088;
    --orange-200: #FFD4BA;
    --orange-100: #FFF0E6;
    --orange-600: #E5551A;
    --orange-700: #C44510;
    --dark: #1A1A1A;
    --dark-800: #2D2D2D;
    --dark-700: #3A3A3A;
    --gray-50: #FAFAF8;
    --gray-100: #F8F7F5;
    --gray-200: #EDECEA;
    --gray-300: #D4D3D0;
    --gray-400: #9E9D9A;
    --gray-500: #6B6A67;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 40px rgba(255, 107, 44, 0.08);
    --shadow-btn: 4px 4px 0 var(--dark);
    --shadow-btn-hover: 2px 2px 0 var(--dark);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--gray-100);
    overflow-x: hidden
}


/* ===== PCB PATTERN (reusable SVG symbol) ===== */

.pcb-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}


/* ===== NAVIGATION ===== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(248, 247, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all .3s;
}

.nav.scrolled {
    padding: .75rem 3.5rem;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06)
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none
}

.logo svg {
    width: 34px;
    height: 34px
}

.logo-text {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    letter-spacing: -.03em
}

.logo-text span {
    color: var(--orange-500)
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: 1.5rem;
    align-self: stretch;
    align-items: stretch;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-500);
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-500);
    transition: width .3s;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--dark)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-links a.active {
    color: var(--orange-500)
}

.nav-links a.active::after {
    width: 100%
}


/* ===== NAV ITEM with DROPDOWN ===== */


/* position: static so the dropdown's absolute positioning
   is relative to .nav (the full-width fixed bar), not the tiny link */

.nav-item {
    position: static;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: .28rem;
    padding: 0 .2rem;
}

.nav-chevron {
    width: 11px;
    height: 11px;
    opacity: .4;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-item.is-open>a .nav-chevron,
.nav-item:hover>a .nav-chevron {
    transform: rotate(180deg);
    opacity: .8;
}


/* Dropdown panel */

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 5vw;
    width: 90vw;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    background: var(--dark);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25), 0 4px 20px rgba(0, 0, 0, .14);
    z-index: 200;
    overflow: visible;
}


/* Transparent cape above the panel — bridges the mouse gap
   so hover stays active as the cursor travels from link to panel */

.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}


/* Inner clip so the orange top-bar border-radius is visible */

.nav-dropdown-inner {
    border-radius: 14px;
    overflow: hidden;
}


/* Orange accent line on top */

.nav-dropdown::before {
    content: '';
    display: block;
    height: 2.5px;
    background: linear-gradient(90deg, var(--orange-500), #ff9f6b);
    border-radius: 14px 14px 0 0;
}


/* Arrow notch hidden for wide mega-menu */

.nav-dropdown-arrow {
    display: none;
}

.nav-item.is-open .nav-dropdown,
.nav-item:hover .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-items {
    padding: .75rem 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    justify-items: center;
}


/* Dropdown links — override generic .nav-links a rules */

.nav-links .nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem .75rem;
    border-radius: 9px;
    text-decoration: none;
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
    font-weight: 500;
    transition: background .18s ease, color .18s ease;
    position: static;
    white-space: nowrap;
}


/* When badges exist, keep centered alignment */

.nav-links .nav-dropdown-link:has(.nav-dropdown-badge) {
    align-items: center;
}

.nav-links .nav-dropdown-link::after {
    display: none;
}

.nav-links .nav-dropdown-link:hover {
    background: rgba(255, 107, 44, .12);
    color: #fff;
}

.nav-links .nav-dropdown-link:hover::after {
    display: none;
}

.nav-links .nav-dropdown-link.active {
    color: #ff8c5a;
    background: rgba(255, 107, 44, .08);
}

.nav-links .nav-dropdown-link.active::after {
    display: none;
}


/* Icon pill */

.nav-dropdown-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 107, 44, .14);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s ease;
}

.nav-links .nav-dropdown-link:hover .nav-dropdown-icon {
    background: rgba(255, 107, 44, .26);
}

.nav-dropdown-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--orange-500);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-dropdown-name {
    font-weight: 600;
    font-size: .8rem;
    color: inherit;
    line-height: 1.3;
    letter-spacing: -.01em;
    word-break: break-word;
    hyphens: auto;
}


/* Category label at top of dropdown */

.nav-dropdown-header {
    padding: .6rem 1rem .55rem;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: .1rem;
}


/* Text column: name + optional badge */

.nav-dropdown-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .25rem;
    min-width: 0;
}


/* Badges */

.nav-dropdown-badge {
    display: inline-flex;
    align-self: center;
    padding: .1rem .45rem;
    border-radius: 4px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(255, 107, 44, .22);
    color: #ff9f6b;
    line-height: 1.5;
}

.nav-dropdown-badge--soon {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .3);
}


/* Coming-soon link: dimmer, no pointer */

.nav-links .nav-dropdown-link--soon {
    opacity: .55;
    pointer-events: none;
    cursor: default;
}

.nav-links .nav-dropdown-link--soon:hover {
    background: transparent;
    color: rgba(255, 255, 255, .6);
}

.nav-cta {
    margin-left: auto;
    padding: .55rem 1.3rem;
    background: var(--orange-500);
    color: var(--white);
    border: 2px solid var(--dark);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 3px 3px 0 var(--dark);
    text-decoration: none;
}

.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-cta:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--dark);
    background: var(--orange-600)
}


/* Mobile menu */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: all .3s
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ===== PAGE HERO (subpages) ===== */

.page-hero {
    padding: 10rem 3.5rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #2D1810 50%, var(--dark-800) 100%);
}

.page-hero .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: .12;
    z-index: 0;
}

.page-hero .orb1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -5%
}

.page-hero .orb2 {
    width: 300px;
    height: 300px;
    bottom: -10%;
    left: 5%
}

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

.page-hero .section-tag {
    background: rgba(255, 107, 44, .12);
    border-color: rgba(255, 107, 44, .25);
    color: var(--orange-400);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.page-hero h1 em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    max-width: 560px;
    margin-bottom: 2rem;
}

.page-hero .cta-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap
}


/* ===== SHARED ELEMENTS ===== */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .85rem;
    border-radius: 50px;
    background: rgba(255, 107, 44, .06);
    border: 1px solid rgba(255, 107, 44, .12);
    font-size: .72rem;
    font-weight: 600;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: .6rem;
}

.section-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--orange-500);
    background: none;
    -webkit-text-fill-color: var(--orange-500);
}

.section-sub {
    font-size: .95rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 2.5rem
}


/* ===== BUTTONS ===== */

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.8rem;
    background: var(--orange-500);
    color: var(--white);
    border: 2px solid var(--dark);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--dark);
    transition: all .25s;
    margin-right: 1rem;
}

.cta-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark);
    background: var(--orange-600)
}

.cta-secondary {
    padding: .85rem 1.8rem;
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.cta-secondary:hover {
    background: var(--dark);
    color: var(--white)
}

.cta-white {
    padding: .85rem 1.8rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .3);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.cta-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5)
}


/* ===== SECTIONS ===== */

.section {
    padding: 5.5rem 3.5rem;
}

.section-white {
    background: var(--white)
}

.section-gray {
    background: var(--gray-100)
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1810 50%, var(--dark-800) 100%);
    position: relative;
    overflow: hidden;
}

.section-dark .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: .12;
    z-index: 0;
}

.section-dark .section-tag {
    background: rgba(255, 107, 44, .12);
    border-color: rgba(255, 107, 44, .25);
    color: var(--orange-400)
}

.section-dark .section-title {
    color: var(--white)
}

.section-dark .section-title em {
    color: var(--orange-400)
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, .5)
}

.section-dark .inner {
    position: relative;
    z-index: 2
}

.section-center {
    text-align: center
}

.section-center .section-sub {
    margin-left: auto;
    margin-right: auto
}


/* ===== SERVICE CARDS (pillar cards) ===== */

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

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

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

.service-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.service-card .pcb-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 110% 120%, rgba(255, 107, 44, .06) 0%, transparent 70%);
}

.service-card:hover .pcb-layer {
    opacity: 1
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-300);
    box-shadow: 0 16px 48px rgba(255, 107, 44, .10), 0 2px 12px rgba(0, 0, 0, .04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

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

.service-card.priority {
    border-color: var(--orange-400);
    background: linear-gradient(135deg, rgba(255, 107, 44, .03), var(--white));
}

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

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    margin-bottom: 1.2rem;
    background: rgba(255, 107, 44, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.service-card:hover .card-icon {
    background: rgba(255, 107, 44, .14)
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1
}

.service-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.55;
    position: relative;
    z-index: 1
}

.service-card ul {
    list-style: none;
    margin-top: .8rem;
    position: relative;
    z-index: 1
}

.service-card ul li {
    font-size: .82rem;
    color: var(--gray-500);
    padding: .3rem 0 .3rem 1rem;
    position: relative;
    line-height: 1.5;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange-400);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--orange-500);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: gap .2s;
}

.card-link:hover {
    gap: .5rem
}

.card-arrow {
    transition: transform .2s
}

.card-link:hover .card-arrow {
    transform: translateX(3px)
}


/* Dark cards */

.dark-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--dark-800), var(--dark));
    border: 1px solid rgba(255, 107, 44, .15);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
}

.dark-card:hover {
    border-color: rgba(255, 107, 44, .4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 107, 44, .15);
}

.dark-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem
}

.dark-card p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55
}

.dark-card .card-icon {
    background: rgba(255, 107, 44, .12)
}

.dark-card:hover .card-icon {
    background: rgba(255, 107, 44, .22)
}


/* Glass stat cards */

.stat-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .35s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-3px)
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange-400);
    margin-bottom: .25rem;
}

.stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.4
}


/* ===== PROCESS STEPS ===== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-300), var(--orange-500), var(--orange-300));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    background: var(--orange-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(255, 107, 44, .2);
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .4rem
}

.step p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto
}


/* ===== FAQ ===== */

.faq-list {
    max-width: 720px;
    margin: 0 auto
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: .8rem;
    background: var(--white);
    overflow: hidden;
    transition: all .3s;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.faq-item:hover {
    border-color: var(--orange-300)
}

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: .95rem;
}

.faq-question .faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 44, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    background: var(--orange-500);
    transform: rotate(45deg)
}

.faq-item.open .faq-toggle svg {
    stroke: white
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem
}

.faq-answer p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.6
}


/* ===== BLOG CARDS ===== */

.blog-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all .35s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .25rem .7rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: .7rem;
    font-weight: 600;
    color: var(--orange-600);
}

.blog-body {
    padding: 1.4rem
}

.blog-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    line-height: 1.35
}

.blog-body p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.5
}

.blog-date {
    font-size: .72rem;
    color: var(--gray-400);
    margin-top: .6rem
}


/* ===== TEAM CARDS ===== */

.team-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all .35s;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 44, .06);
    border-color: var(--orange-300)
}

.team-photo {
    height: 260px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-photo .initials {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-300);
}

.team-info {
    padding: 1.4rem
}

.team-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .2rem
}

.team-info .role {
    font-size: .82rem;
    color: var(--orange-500);
    font-weight: 500;
    margin-bottom: .5rem
}

.team-info p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.5
}


/* ===== TESTIMONIALS ===== */

.testimonial {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all .35s;
}

.testimonial:hover {
    border-color: var(--orange-300);
    box-shadow: 0 8px 30px rgba(255, 107, 44, .06)
}

.testimonial blockquote {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -.2rem;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-400);
    font-weight: 700;
}

.testimonial .author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.testimonial .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-300), var(--orange-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial .author-name {
    font-size: .85rem;
    font-weight: 600
}

.testimonial .author-role {
    font-size: .75rem;
    color: var(--gray-400)
}


/* ===== CONTACT FORM ===== */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

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

.form-group.full {
    grid-column: 1/-1
}

.form-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--dark)
}

.form-input {
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--dark);
    transition: all .3s;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255, 107, 44, .1)
}

textarea.form-input {
    min-height: 140px;
    resize: vertical
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%239E9D9A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center
}


/* ===== ROI CALCULATOR ===== */

.roi-calculator {
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
}

.roi-slider-group {
    margin-bottom: 1.5rem
}

.roi-slider-group label {
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark);
    display: block;
    margin-bottom: .5rem
}

.roi-slider-group .slider-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-500);
    float: right;
}

.roi-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange-500);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 44, .3);
    cursor: pointer;
}

.roi-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 107, 44, .04), rgba(255, 107, 44, .08));
    border: 1px solid rgba(255, 107, 44, .15);
}

.roi-result h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--orange-600);
    margin-bottom: .6rem;
    font-weight: 700
}

.roi-result .roi-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--orange-500);
}

.roi-result .roi-detail {
    font-size: .85rem;
    color: var(--gray-500);
    margin-top: .3rem
}


/* ===== TECH STACK ===== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem
}

.tech-item {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all .3s;
}

.tech-item:hover {
    border-color: var(--orange-300);
    transform: translateY(-2px)
}

.tech-item .tech-name {
    font-size: .82rem;
    font-weight: 600;
    margin-top: .5rem
}

.tech-item svg {
    width: 32px;
    height: 32px;
    margin: 0 auto
}


/* ===== FOOTER ===== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .4);
    padding: 4rem 3.5rem 2rem
}

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

.footer-brand p {
    font-size: .85rem;
    line-height: 1.6;
    margin-top: .7rem;
    max-width: 280px
}

.footer h4 {
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .9rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .85rem;
    display: block;
    margin-bottom: .45rem;
    transition: color .2s
}

.footer a:hover {
    color: var(--orange-400)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.4rem;
    font-size: .78rem;
    display: flex;
    justify-content: space-between;
}


/* ===== COOKIE BANNER ===== */

.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    background: rgba(26, 26, 26, .96);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookie-banner__copy {
    max-width: 720px;
}

.cookie-banner__copy strong {
    display: block;
    font-size: .98rem;
    margin-bottom: .4rem;
}

.cookie-banner__copy p {
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .72);
}

.cookie-banner__copy a {
    color: var(--orange-300);
    text-decoration: none;
}

.cookie-banner__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    min-height: 46px;
    padding: .8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.cookie-btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .2);
}

.cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, .06);
}

.cookie-btn--primary {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .25);
}

.cookie-btn--primary:hover {
    background: var(--orange-600);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .25);
}


/* ===== REVEAL ANIMATION ===== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all .7s ease
}

.reveal.v {
    opacity: 1;
    transform: translateY(0)
}


/* ===== BADGE ===== */

.badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 50px;
    background: var(--orange-500);
    color: var(--white);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge-outline {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 50px;
    background: rgba(255, 107, 44, .07);
    color: var(--orange-500);
    border: 1px solid rgba(255, 107, 44, .15);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* ===== USE CASE CARD ===== */

.usecase-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all .4s;
}

.usecase-card:hover {
    border-color: var(--orange-300);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 44, .08)
}

.usecase-card .case-tag {
    font-size: .72rem;
    font-weight: 700;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .6rem
}

.usecase-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.usecase-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.55
}

.usecase-card .case-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.usecase-card .result-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-500)
}

.usecase-card .result-label {
    font-size: .78rem;
    color: var(--gray-400)
}


/* ===== VALUE GRID (features w/ icon) ===== */

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 11px;
    background: rgba(255, 107, 44, .07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .3rem
}

.value-item p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.5
}


/* ===== RESPONSIVE ===== */

@media(max-width:1100px) {
    .card-grid-4 {
        grid-template-columns: 1fr 1fr
    }
    .card-grid-3 {
        grid-template-columns: 1fr 1fr
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner__actions {
        justify-content: flex-start;
    }
    .page-hero {
        padding: 8rem 2rem 4rem
    }
    .form-grid {
        grid-template-columns: 1fr
    }
    .form-group.full {
        grid-column: auto
    }
}

@media(max-width:700px) {
    .nav {
        padding: .85rem 1rem;
        gap: .75rem;
        justify-content: space-between;
        flex-wrap: wrap
    }
    .nav-links {
        display: none
    }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        gap: .35rem;
        order: 4;
        width: 100%;
        margin: .5rem 0 0;
        padding: .8rem;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 16px;
        background: rgba(248, 247, 245, .98);
        box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.mobile-open > a,
    .nav-links.mobile-open .nav-item > a {
        width: 100%;
        justify-content: space-between;
        padding: .75rem .3rem;
        color: var(--dark);
    }
    .nav-links.mobile-open .nav-item {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links.mobile-open .nav-dropdown {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        margin-top: .15rem;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .nav-links.mobile-open .nav-dropdown::before,
    .nav-links.mobile-open .nav-dropdown::after,
    .nav-links.mobile-open .nav-dropdown-arrow {
        display: none;
    }
    .nav-links.mobile-open .nav-dropdown-inner {
        border-radius: 0;
        overflow: visible;
    }
    .nav-links.mobile-open .nav-dropdown-header {
        padding: .35rem .25rem .5rem;
        font-size: .72rem;
    }
    .nav-links.mobile-open .nav-dropdown-items {
        padding: 0;
        grid-template-columns: 1fr;
        gap: .35rem;
        justify-items: stretch;
    }
    .nav-links.mobile-open .nav-dropdown-link {
        width: 100%;
        white-space: normal;
        color: var(--gray-500);
        background: rgba(255, 107, 44, .04);
    }
    .nav-actions {
        margin-left: 0;
        flex: 0 0 auto;
    }
    .logo {
        min-width: 0;
        flex: 1 1 auto
    }
    .logo svg {
        width: 30px;
        height: 30px
    }
    .logo-text {
        font-size: .94rem
    }
    .nav-cta {
        margin-left: 0;
        flex: 0 0 auto;
        padding: .5rem .85rem;
        font-size: .74rem;
        box-shadow: 2px 2px 0 var(--dark);
        white-space: nowrap
    }
    .nav-toggle {
        display: block;
        flex: 0 0 auto;
        order: 3
    }
    .card-grid-4,
    .card-grid-3,
    .card-grid-2,
    .steps {
        grid-template-columns: 1fr
    }
    .steps::before {
        display: none
    }
    .section,
    .section-white,
    .section-gray {
        padding: 3rem 1.5rem
    }
    .page-hero {
        padding: 7rem 1.5rem 3rem
    }
    .footer {
        padding: 3rem 1.5rem 1.5rem
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    .cookie-banner__inner {
        padding: 1rem;
    }
    .cookie-banner__actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
    .page-hero h1 {
        font-size: 2rem
    }
}

@media(max-width:420px) {
    .nav {
        padding: .75rem .85rem;
        gap: .5rem
    }
    .logo-text {
        display: none
    }
    .nav-cta {
        padding: .48rem .72rem;
        font-size: .7rem
    }
    .nav-links.mobile-open {
        padding: .7rem;
    }
}


/* ================================================
   HOMEPAGE-SPECIFIC STYLES (index.html)
   ================================================ */


/* ===== HOMEPAGE HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 7rem 3.5rem 4rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
    flex-shrink: 0
}


/* Image Comparison Slider */

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    overflow: hidden;
    pointer-events: auto;
}

.img-compare {
    position: relative;
    width: calc(100% - 16px);
    height: calc(100% - 32px);
    padding-right: 16px;
    padding-bottom: 32px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.img-compare img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.img-compare-before {
    z-index: 1
}

.img-compare-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.img-compare-after-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3px;
    background: rgba(255, 255, 255, .85);
    transform: translateX(-50%);
    cursor: ew-resize;
}

.img-compare-handle::before,
.img-compare-handle::after {
    content: '';
    display: block;
    width: 3px;
    flex: 1;
    background: rgba(255, 255, 255, .85);
}

.img-compare-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .15s, box-shadow .15s;
}

.img-compare.dragging .img-compare-btn {
    transform: scale(1.12);
    box-shadow: 0 4px 22px rgba(0, 0, 0, .30);
}

.img-compare-btn svg {
    width: 22px;
    height: 22px;
    color: #444
}

.img-compare-label {
    position: absolute;
    bottom: 1.6rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem 1rem .45rem .75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    pointer-events: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.img-compare-label .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.img-compare-label.before {
    left: 1.4rem;
    background: rgba(15, 15, 15, .42);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}

.img-compare-label.before .badge-dot {
    background: rgba(255, 255, 255, .55)
}

.img-compare-label.after {
    right: 1.4rem;
    background: rgba(255, 107, 44, .28);
    border: 1px solid rgba(255, 107, 44, .45);
    color: rgba(255, 255, 255, .96);
    box-shadow: 0 4px 18px rgba(255, 107, 44, .18);
}

.img-compare-label.after .badge-dot {
    background: var(--orange-400);
    box-shadow: 0 0 6px rgba(255, 107, 44, .7);
}


/* Hero text elements */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    border-radius: 50px;
    background: rgba(255, 107, 44, .07);
    border: 1px solid rgba(255, 107, 44, .14);
    font-size: .78rem;
    font-weight: 500;
    color: var(--orange-600);
    margin-bottom: 1.4rem;
    width: fit-content;
    animation: fadeUp .8s ease both;
}

.hero-tag i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

h1.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 1.4rem;
    animation: fadeUp .8s ease .12s both;
}

h1.hero-title em {
    font-style: italic;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 2.2rem;
    animation: fadeUp .8s ease .24s both;
}

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


/* CTA row in hero */

.hero .cta-row {
    animation: fadeUp .8s ease .36s both
}


/* Trust indicators */

.trust-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeUp .8s ease .48s both;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: var(--gray-400)
}

.trust-item strong {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem
}

.trust-item .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-300);
    margin: 0 .3rem
}


/* Client logos bar */

.client-bar {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    animation: fadeUp .8s ease .6s both;
}

.client-bar span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-300);
    letter-spacing: .015em;
    transition: color .3s;
}

.client-bar span:hover {
    color: var(--gray-400)
}


/* ===== PROBLEMS SECTION ===== */

.problems {
    background: var(--white);
    padding: 5.5rem 3.5rem
}

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

.problem-card {
    padding: 1.8rem;
    border-radius: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all .35s;
}

.problem-card:hover {
    border-color: var(--orange-300);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 44, .06)
}

.problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    margin-bottom: 1rem;
    background: rgba(255, 107, 44, .07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 22px;
    height: 22px
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.problem-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.55
}


/* ===== 4 PILLARS ===== */

.pillars {
    padding: 5.5rem 3.5rem
}

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

.pillar-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-300);
    box-shadow: 0 12px 40px rgba(255, 107, 44, .08)
}

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

.pillar-card.priority {
    border-color: var(--orange-400);
    background: linear-gradient(135deg, rgba(255, 107, 44, .03), var(--white))
}

.pillar-card.priority::before {
    transform: scaleX(1)
}

.pillar-badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 50px;
    background: var(--orange-500);
    color: var(--white);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.pillar-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.pillar-card ul {
    list-style: none;
    margin-top: .8rem
}

.pillar-card ul li {
    font-size: .82rem;
    color: var(--gray-500);
    padding: .3rem 0 .3rem 1rem;
    position: relative;
    line-height: 1.5;
}

.pillar-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange-400);
}


/* ===== SPOTLIGHT (Automatisierung) ===== */

.spotlight {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1810 50%, var(--dark-800) 100%);
    padding: 5.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.spotlight .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: .12;
    z-index: 0;
}

.spotlight .bo1 {
    width: 400px;
    height: 400px;
    top: -15%;
    right: 8%
}

.spotlight .bo2 {
    width: 280px;
    height: 280px;
    bottom: -8%;
    left: 4%
}

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

.spot-text .section-tag {
    background: rgba(255, 107, 44, .12);
    border-color: rgba(255, 107, 44, .25);
    color: var(--orange-400)
}

.spot-text .section-title {
    color: var(--white)
}

.spot-text .section-title em {
    color: var(--orange-400)
}

.spot-text p {
    color: rgba(255, 255, 255, .5);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem
}

.spot-text .cta-primary {
    border-color: var(--orange-500)
}

.spot-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}


/* ===== PROCESS ===== */

.process {
    background: var(--white);
    padding: 5.5rem 3.5rem
}


/* ===== BLOG TEASER ===== */

.blog-section {
    padding: 5.5rem 3.5rem
}

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


/* ===== FINAL CTA ===== */

.final-cta {
    margin: 0 3.5rem 3.5rem;
    border-radius: 20px;
    padding: 4rem;
    background: linear-gradient(135deg, var(--dark), #2D1810);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: .1;
}

.final-cta .fo1 {
    width: 300px;
    height: 300px;
    top: -20%;
    right: -5%
}

.final-cta .fo2 {
    width: 200px;
    height: 200px;
    bottom: -15%;
    left: 10%
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: .8rem;
    position: relative;
    z-index: 2;
}

.final-cta h2 em {
    font-style: italic;
    font-weight: 700;
    color: var(--orange-400)
}

.final-cta p {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta .cta-primary {
    position: relative;
    z-index: 2;
    border-color: var(--orange-500)
}


/* ===== HOMEPAGE RESPONSIVE ===== */

@media(max-width:1100px) {
    .hero {
        padding: 7rem 2rem 3rem
    }
    .hero-visual {
        width: 50%
    }
    .pillars-grid,
    .problems-grid {
        grid-template-columns: 1fr 1fr
    }
    .spot-inner {
        grid-template-columns: 1fr
    }
}

@media(max-width:700px) {
    .hero {
        padding: 6rem 1.5rem 2.5rem;
        flex-direction: column
    }
    .hero-visual {
        position: relative;
        width: 100%;
        height: 320px;
        margin-top: 2rem
    }
    h1.hero-title {
        font-size: 2.2rem
    }
    .pillars-grid,
    .problems-grid,
    .blog-grid,
    .spot-stats {
        grid-template-columns: 1fr
    }
    .steps::before {
        display: none
    }
    .client-bar {
        flex-wrap: wrap;
        gap: 1.2rem
    }
    .problems,
    .process,
    .blog-section,
    .pillars,
    .spotlight {
        padding: 3rem 1.5rem
    }
    .final-cta {
        margin: 0 1.5rem 1.5rem;
        padding: 2.5rem 1.5rem
    }
}


/* ===== RESPONSIVE IMAGES (ImageOptimizer Plugin) ===== */

.responsive-image {
    display: block;
    width: 100%;
    height: auto;
}

.responsive-image img,
.responsive-image picture img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* Image Compare mit responsive Bildern */

.img-compare .responsive-image,
.img-compare .responsive-image picture,
.img-compare-after-wrap .responsive-image,
.img-compare-after-wrap .responsive-image picture {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-compare .responsive-image img,
.img-compare-after-wrap .responsive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===== SUBPAGE HERO (shared) ===== */

.section-wide {
    padding: 5rem 3.5rem;
}

.subpage-hero {
    padding: 9rem 3.5rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.subpage-hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color .2s;
}

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

.breadcrumb .sep {
    color: var(--gray-300);
}

.subpage-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.subpage-hero h1 em {
    font-style: italic;
    font-weight: 700;
    color: var(--orange-500);
}

.subpage-hero p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 520px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-500);
    margin-bottom: .3rem;
}

.stat-label {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.4;
}


/* ===== PROZESSAUTOMATISIERUNG: Sections ===== */

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.overview-text {
    align-self: start;
}

.overview-img {
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    border-radius: 16px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

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

.overview-img .placeholder {
    color: var(--gray-400);
    font-size: .85rem;
    font-weight: 500;
}

.overview-text p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

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

.benefit-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.8rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

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

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 44, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange-500);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.benefit-card p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.55;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 2rem;
    transition: all .3s;
    align-items: start;
}

.service-item:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-num {
    width: 40px;
    height: 40px;
    background: var(--orange-500);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.service-item p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    opacity: .2;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--orange-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    border: 4px solid var(--gray-100);
}

.step-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.step-card p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

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

.case-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all .3s;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.case-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.case-body {
    padding: 1.4rem;
}

.case-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.case-body p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.case-result {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    padding-top: .8rem;
    border-top: 1px solid var(--gray-200);
}

.case-result strong {
    font-size: 1.3rem;
    color: var(--orange-500);
    font-weight: 800;
}

.case-result span {
    font-size: .8rem;
    color: var(--gray-500);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
}

.tech-tag {
    padding: .55rem 1.2rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--dark);
    transition: all .2s;
}

.tech-tag:hover {
    border-color: var(--orange-500);
    color: var(--orange-500);
    transform: translateY(-2px);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
}

.faq-item.active {
    border-color: rgba(255, 107, 44, 0.2);
}

.faq-q {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    user-select: none;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--orange-500);
}

.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform .3s;
}

.faq-item.active .faq-q::after {
    content: '\2212';
    color: var(--orange-500);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.faq-a p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.final-cta {
    text-align: center;
    padding: 5rem 3.5rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 44, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--orange-500);
}

.final-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
}

.final-cta .cta-primary {
    position: relative;
}


/* ===== SUBPAGE RESPONSIVE ===== */

@media (max-width: 1024px) {
    .subpage-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before {
        display: none;
    }
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }
    .subpage-hero h1 {
        font-size: 2rem;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .section-wide {
        padding: 3rem 1.5rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-num {
        margin: 0 auto 1rem;
    }
    .final-cta {
        padding: 3.5rem 1.5rem;
    }
    .final-cta h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .subpage-hero h1 {
        font-size: 1.7rem;
    }
    .hero .cta-row,
    .page-hero .cta-row {
        gap: .75rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* ===== OVERVIEW SPOTLIGHT (Prozessautomatisierung) ===== */

.overview-spotlight {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1810 50%, var(--dark-800) 100%);
    padding: 5.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.overview-spotlight .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-500), transparent 70%);
    opacity: .12;
    z-index: 0;
}

.overview-spotlight .bo1 {
    width: 400px;
    height: 400px;
    top: -15%;
    right: 8%;
}

.overview-spotlight .bo2 {
    width: 280px;
    height: 280px;
    bottom: -8%;
    left: 4%;
}

.overview-spotlight-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-spotlight-text {
    padding: 0 2rem;
}

.overview-spotlight-text .text-wrapper {
    max-width: 600px;
}

.overview-spotlight-text .section-tag {
    background: rgba(255, 107, 44, .12);
    border: 1px solid rgba(255, 107, 44, .25);
    color: var(--orange-400);
}

.overview-spotlight-text .section-title {
    color: var(--white);
}

.overview-spotlight-text .section-title em {
    color: var(--orange-400);
    background: none;
    -webkit-text-fill-color: var(--orange-400);
}

.overview-spotlight-text p {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.overview-spotlight-image {
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
    border-radius: 16px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.overview-spotlight-image .placeholder {
    color: var(--gray-400);
    font-size: .85rem;
    font-weight: 500;
}


/* Responsive für Overview Spotlight */

@media (max-width: 1024px) {
    .overview-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .overview-spotlight-text {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .overview-spotlight {
        padding: 3.5rem 1.5rem;
    }
    .overview-spotlight-text .text-wrapper {
        max-width: 100%;
    }
}
