/* ============================================
   iTax - Knjigovodstveni servis
   Color Palette:
   - Primary Dark: #3d4f4a
   - Accent Green: #7daa98
   - Mint: #b5cec3
   - Footer BG: #2d3d36
   - Background: #e8e8e8
   - Text: #1a1a1a
   ============================================ */

:root {
    --color-primary: #3d4f4a;
    --color-accent: #7daa98;
    --color-mint: #b5cec3;
    --color-bg: #e8e8e8;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-white: #ffffff;
    --color-footer-bg: #2d3d36;
    --color-card-bg: rgba(255, 255, 255, 0.45);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-height: 80px;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --overlay-bg: rgba(248, 249, 250, 0.75);
    --overlay-blur: 6px;
    --header-bg-scrolled: rgba(248, 249, 250, 0.75);
    --divider: rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --container-narrow: 1060px;
}

@media screen and (min-width: 1440px) {
    :root {
        --container-width: 1320px;
        --container-narrow: 1120px;
    }
}

@media screen and (min-width: 1600px) {
    :root {
        --container-width: 1480px;
        --container-narrow: 1240px;
    }
}

@media screen and (min-width: 1920px) {
    :root {
        --container-width: 1640px;
        --container-narrow: 1360px;
    }
}

@media screen and (min-width: 2200px) {
    :root {
        --container-width: 1800px;
        --container-narrow: 1500px;
    }
}

@media screen and (max-width: 1100px) {
    .header-primary-nav { display: none; }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: #050b1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 2.5vw, 48px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: none;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 2.5vw, 48px);
}

.header-primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
    min-width: 0;
    padding-right: 26px;
}

.header-primary-nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.8);
    padding: 9px 12px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-primary-nav a:hover {
    background: rgba(61, 79, 74, 0.12);
    color: var(--color-primary);
}

.header-primary-nav a.is-active {
    background: rgba(61, 79, 74, 0.16);
    color: var(--color-primary);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: calc(var(--header-height) + 34px);
    width: auto;
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.hamburger {
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger input { display: none; }

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #1a202c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke 300ms ease;
}

.line-top-bottom { stroke-dasharray: 12 63; }

.hamburger input:checked + svg { transform: rotate(-45deg); }
.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* ============================================
   FULLSCREEN MENU OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-smooth), visibility 0s linear var(--transition-smooth);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity var(--transition-smooth), visibility 0s linear 0s;
}

.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 32px 40px;
}

.menu-columns {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ============================================
   MENU ITEMS
   ============================================ */
.menu-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.active .menu-section { opacity: 1; transform: translateY(0); }
.menu-overlay.active .menu-section:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-section:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .menu-section:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .menu-section:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .menu-section:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .menu-section:nth-child(6) { transition-delay: 0.35s; }
.menu-overlay.active .menu-section:nth-child(7) { transition-delay: 0.4s; }

.main-link {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

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

.menu-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.menu-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ============================================
   TREE-STYLE SUB ITEMS
   ============================================ */
.menu-sub-items {
    position: relative;
    margin-left: 20px;
    padding-left: 24px;
    margin-top: 2px;
    margin-bottom: 6px;
}

.menu-sub-items::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 10px;
    width: 1.5px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.sub-link {
    display: block;
    position: relative;
    padding: 5px 0 5px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sub-link:hover { color: var(--color-primary); padding-left: 20px; }

.sub-link::before {
    content: '';
    position: absolute;
    left: -24px; top: 50%;
    width: 24px; height: 1.5px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.sub-link::after {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.4;
}

/* ============================================
   DESKTOP MENU LAYOUT
   ============================================ */
@media (min-width: 769px) {
    .menu-columns {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px 40px;
        align-items: start;
    }
    .menu-text { font-size: 1.5rem; }
    .menu-number { font-size: 0.65rem; }
}

@media (min-width: 1100px) {
    .menu-columns {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 48px;
    }
}

/* ============================================
   PEARL BUTTON
   ============================================ */
.pearl-button {
    --pearl-bg: #111111;
    outline: none;
    cursor: pointer;
    border: 0;
    position: relative;
    border-radius: 100px;
    background-color: var(--pearl-bg);
    transition: all 0.2s ease;
    box-shadow:
        inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
    font-family: var(--font-main);
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    text-decoration: none;
}

.pearl-button .wrap {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 26px;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
}

.pearl-button .wrap p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    transition: all 0.2s ease;
    transform: translateY(2%);
    mask-image: linear-gradient(to bottom, white 50%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, white 50%, transparent);
    color: rgba(255, 255, 255, 0.98);
}

.pearl-button .wrap p span:nth-child(2) { display: none; }
.pearl-button:hover .wrap p span:nth-child(1) { display: none; }
.pearl-button:hover .wrap p span:nth-child(2) { display: inline-block; }

.pearl-button .wrap::before,
.pearl-button .wrap::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease;
}

.pearl-button .wrap::before {
    left: -15%; right: -15%; bottom: 25%; top: -100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
}

.pearl-button .wrap::after {
    left: 6%; right: 6%; top: 12%; bottom: 40%;
    border-radius: 22px 22px 0 0;
    box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%, transparent 100%);
}

.pearl-button:hover {
    box-shadow:
        inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.4),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.7),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.pearl-button:hover .wrap::before { transform: translateY(-5%); }
.pearl-button:hover .wrap::after { opacity: 0.4; transform: translateY(5%); }
.pearl-button:hover .wrap p { transform: translateY(-4%); }

.pearl-button:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.5),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

/* ============================================
   PEARL SOCIAL BUTTON (icon variant)
   ============================================ */
.pearl-social {
    border-radius: 50%;
}

.pearl-social .wrap {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: none;
    -webkit-mask-image: none;
}

.pearl-social .wrap p { display: none; }

.pearl-social .social-icon {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, 0.95);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* ============================================
   MENU FOOTER
   ============================================ */
.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 32px;
    border-top: 1px solid var(--divider);
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.menu-overlay.active .menu-footer { opacity: 1; transform: translateY(0); }

.menu-email a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.email-underline {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-primary);
    margin-top: 2px;
}

.menu-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at 30% 50%, rgba(181, 206, 195, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: var(--container-width);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 42px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
    max-width: 920px;
    transform: translateX(-14px);
}

.hero-media {
    justify-self: end;
    width: min(100%, 620px);
}

.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 920px;
    margin-bottom: 28px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.text-accent { color: var(--color-primary); }

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-light);
    max-width: 760px;
    margin-bottom: 48px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.hero-services {
    list-style: disc;
    margin: 0 0 42px;
    padding-left: 30px;
    max-width: 980px;
    display: grid;
    gap: 12px;
}

.hero-services li {
    font-size: 1.1rem;
    line-height: 1.45;
    color: rgba(26, 26, 26, 0.92);
    letter-spacing: 0.01em;
}

.hero-services li::marker {
    color: var(--color-primary);
    font-size: 1.1em;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 50px 0; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

/* ============================================
   SERVICES SECTION (homepage, 100vh)
   ============================================ */
.services-preview {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.service-card {
    background-color: var(--color-card-bg);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.service-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4a6058, #35453f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(61, 79, 74, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon-circle {
    box-shadow:
        0 12px 32px rgba(61, 79, 74, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.service-icon-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.service-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    letter-spacing: -3px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .pearl-button { align-self: flex-start; }
.service-card .pearl-button .wrap { font-size: 13px; padding: 14px 26px; }

/* ============================================
   REFERENCE / CLIENT GRID (6 per row)
   ============================================ */
.ref-section {
    padding: 100px 0;
}

.ref-container {
    width: 90vw;
    max-width: 90vw;
    margin: 0 auto;
    padding: 0;
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ref-card {
    position: relative;
    background: var(--color-card-bg);
    border-radius: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.ref-front {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    padding: 16px;
    text-align: center;
}

.ref-logo-text {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.ref-logo-image {
    max-width: 82%;
    max-height: 82%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.ref-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: var(--color-card-bg);
}

.ref-card:hover .ref-front { opacity: 0; }
.ref-card:hover .ref-back { opacity: 1; }
.ref-card.active .ref-front { opacity: 0; }
.ref-card.active .ref-back { opacity: 1; }

.ref-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    margin-bottom: 10px;
}

.ref-name {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.ref-service {
    font-size: 0.72rem;
    color: var(--color-text);
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: none;
    border-bottom: 1px solid rgba(61, 79, 74, 0.12);
}

.faq-item[open] {
    box-shadow: none;
}

.faq-item summary {
    padding: 24px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover { color: var(--color-primary); }

.faq-answer {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    overflow: hidden;
    padding-left: 28px;
    padding-right: 0;
}

.faq-item[open] .faq-answer {
    padding-left: 28px;
}

.faq-answer p + p { margin-top: 12px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    position: relative;
    padding: calc(var(--header-height) + 8px) 0 10px;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(61, 79, 74, 0.5);
    letter-spacing: 0.06em;
    text-align: center;
    opacity: 0.82;
}

/* Breadcrumbs - normal scroll behavior on all pages */
main:has(.stacking-layout) .breadcrumb {
    position: relative;
    padding: calc(var(--header-height) + 8px) 0 10px;
}

.breadcrumb .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(61, 79, 74, 0.52); transition: color 0.25s ease; }
.breadcrumb a:hover { color: rgba(61, 79, 74, 0.78); }
.breadcrumb span { color: rgba(61, 79, 74, 0.66); font-weight: 500; }

.breadcrumb-fixed {
    position: relative;
    /* No longer sticky - scrolls normally like other pages */
    margin: 0;
    padding: 8px 0 10px;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero { 
    padding-top: 60px; 
    padding-bottom: 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.reference-hero {
    position: relative;
    padding-top: 54px;
    padding-bottom: 56px;
    overflow: hidden;
}

.reference-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(125, 170, 152, 0.22), transparent 52%),
        radial-gradient(circle at 78% 82%, rgba(61, 79, 74, 0.15), transparent 45%);
    pointer-events: none;
}

.reference-hero .container {
    position: relative;
    z-index: 2;
}

.reference-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin: 0 0 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(61, 79, 74, 0.16);
}

.reference-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 3.4vw, 3.25rem);
}

.reference-hero .page-intro {
    max-width: 760px;
    font-size: 1.08rem;
}

/* ============================================
   CONTACT INFO (kontakt page)
   ============================================ */
.contact-info p { margin-bottom: 12px; font-size: 1rem; line-height: 1.8; }
.contact-info a { color: var(--color-primary); font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }

/* Contact page layout */
.contact-info-grid {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 24px;
}

.contact-info-block-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Contact Page Grid */
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.35fr) 1fr;
    gap: clamp(60px, 5vw, 100px);
}

.contact-info-sticky {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: flex-start;
    max-height: calc(100vh - var(--header-height) - 48px);
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    border-radius: 0;
    padding: 0 0 24px 22px;
    border: 0;
    box-shadow: none;
    width: clamp(320px, 38vw, 480px);
}

.contact-info-sticky::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 2px;
    height: calc(100% - 12px);
    background: linear-gradient(180deg, rgba(61, 79, 74, 0.78) 0%, rgba(125, 170, 152, 0.44) 58%, rgba(61, 79, 74, 0.16) 100%);
}

.contact-info-header {
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(61, 79, 74, 0.12);
}

.contact-info-header h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.03em;
    line-height: 1.06;
}

.contact-info-header p {
    font-size: 0.95rem;
    color: rgba(28, 34, 38, 0.78);
    margin: 0;
    line-height: 1.55;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgba(61, 79, 74, 0.12);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-info-item:hover {
    border-bottom-color: rgba(61, 79, 74, 0.3);
    transform: translateX(2px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: rgba(61, 79, 74, 0.9);
    margin-top: 4px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-info-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(28, 34, 38, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.contact-info-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(20, 24, 27, 0.94);
    text-decoration: none;
    transition: color 0.25s ease;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

a.contact-info-value:hover {
    color: rgba(61, 79, 74, 0.72);
}

.contact-info-hours {
    padding: 24px 0 0;
    background: transparent;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(61, 79, 74, 0.14);
}

.contact-info-hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-info-hours-header svg {
    width: 20px;
    height: 20px;
    color: rgba(61, 79, 74, 0.86);
}

.contact-info-hours-header span {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(28, 34, 38, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.contact-info-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 20px;
    font-size: 1rem;
}

.hours-day {
    font-weight: 600;
    color: rgba(20, 24, 27, 0.95);
    letter-spacing: -0.01em;
}

.hours-time {
    color: rgba(28, 34, 38, 0.7);
    text-align: right;
    font-weight: 500;
}

/* ============================================
   KONTAKT — Dark Hero
   ============================================ */
.contact-hero-dark {
    background: #1e2e28;
    padding: calc(var(--header-height) + clamp(40px, 6vh, 80px)) clamp(24px, 3vw, 60px) clamp(48px, 6vh, 72px);
    position: relative;
    overflow: hidden;
}

.contact-hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 70% 60% at 0% 0%, rgba(125, 170, 152, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 100% 100%, rgba(125, 170, 152, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 170, 152, 0.25), transparent);
    pointer-events: none;
}

.contact-hero-dark-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.contact-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 20px;
}

.contact-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

.contact-hero-dark h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0 0 18px;
}

.contact-hero-dark p {
    font-size: clamp(1.02rem, 1.12vw, 1.16rem);
    line-height: 1.6;
    color: rgba(181, 206, 195, 0.72);
    margin: 0;
}

/* ============================================
   SERVICE CONTENT - Layout for service pages
   ============================================ */
.service-content {
    padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 10vh, 120px);
}

.service-content .container {
    max-width: var(--container-width);
}

.service-content p {
    font-size: clamp(1.04rem, 1.1vw, 1.14rem);
    line-height: 1.72;
    color: #3d4f4a;
    margin-bottom: 24px;
}

.service-content h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #050b1a;
    margin: 48px 0 20px;
    letter-spacing: -0.02em;
}

.service-content h2:first-child {
    margin-top: 0;
}

.service-highlight {
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f2ed 100%);
    border-left: 4px solid var(--color-accent);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 40px 0;
}

.service-highlight p {
    font-size: clamp(1.06rem, 1.12vw, 1.16rem);
    line-height: 1.68;
    color: #1e2e28;
    margin: 0;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .service-content {
        padding: 48px 0 60px;
    }
    
    .service-content h2 {
        margin: 36px 0 16px;
    }
    
    .service-highlight {
        padding: 24px 28px;
        margin: 32px 0;
    }
}

/* ============================================
   KONTAKT — Dark Contact Info Card
   ============================================ */
.contact-info-card-dark {
    background: #1e2e28 !important;
    border-radius: 24px !important;
    padding: clamp(28px, 3.5vh, 40px) clamp(24px, 2.5vw, 36px) !important;
    border: 1px solid rgba(125, 170, 152, 0.15) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12) !important;
    position: sticky;
    top: calc(var(--header-height) + 24px);
    overflow: hidden;
    width: 100%;
}

.contact-info-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 100% at 0% 0%, rgba(125, 170, 152, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact-dark-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    position: relative;
}

.contact-dark-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(125, 170, 152, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.contact-dark-item:last-child {
    border-bottom: none;
}

a.contact-dark-item:hover {
    transform: translateX(4px);
}

.contact-dark-item svg {
    width: 24px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-accent);
}

.contact-dark-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-dark-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(181, 206, 195, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.contact-dark-value {
    font-size: 1.02rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}

.contact-dark-hours {
    padding-top: 20px;
    border-top: 1px solid rgba(125, 170, 152, 0.12);
    position: relative;
}

.contact-dark-hours-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(181, 206, 195, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}

.contact-dark-hours-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.contact-dark-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.contact-dark-hours-grid span:nth-child(odd) {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.contact-dark-hours-grid span:nth-child(even) {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(181, 206, 195, 0.6);
    text-align: right;
}

@media screen and (max-width: 768px) {
    .contact-hero-dark {
        padding: 32px 20px 40px;
        min-height: calc(100vh - var(--header-height) - 36px);
    }
    .contact-hero-dark h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .contact-hero-dark-content {
        max-width: 100%;
    }
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-page-card {
    background: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: none;
    transition: none;
}

.contact-page-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.contact-page-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #4a6058, #35453f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(61,79,74,0.35);
}

.contact-page-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page-card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.contact-page-card-content p,
.contact-page-card-content a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-page-card-content a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-page-card-content a:hover { opacity: 0.7; }

.contact-page-hours {
    background: none;
    border-radius: 0;
    padding: 0;
}

.contact-page-hours h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.contact-page-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 0.85rem;
}

.contact-page-hours-day {
    font-weight: 600;
    color: var(--color-text);
}

.contact-page-hours-time {
    color: var(--color-text-light);
}

/* Contact Form - Premium Design */
.contact-form-wrapper {
    background: none;
    border-radius: 0;
    padding: 0;
    border: none;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.contact-form-wrapper .form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Human Verification */
.human-verification-box {
    background: rgba(61, 79, 74, 0.03);
    border: 1px solid rgba(61, 79, 74, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.verification-label {
    font-size: 0.95rem;
    color: #3d4f4a;
    margin-bottom: 12px;
    font-weight: 500;
}

.verification-word {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #3d4f4a;
    text-align: center;
    padding: 16px;
    background: rgba(125, 170, 152, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
    .human-verification-box {
        padding: 20px;
    }
    
    .verification-word {
        font-size: 1.3rem;
        letter-spacing: 2px;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .human-verification-box {
        padding: 16px;
    }
    
    .verification-label {
        font-size: 0.9rem;
    }
    
    .verification-word {
        font-size: 1.2rem;
        letter-spacing: 2px;
        padding: 12px;
    }
}

/* Form Message */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0;
    text-align: center;
}

.form-message.success {
    background: rgba(125, 170, 152, 0.15);
    color: #2d5a47;
    border: 1px solid rgba(125, 170, 152, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #b02a37;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.form-field {
    position: relative;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 16px 0 12px 0;
    border: none;
    border-bottom: 1px solid rgba(61, 79, 74, 0.2);
    background: transparent;
    color: var(--color-text);
    transition: all 0.3s ease;
    outline: none;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: rgba(61, 79, 74, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--color-primary);
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:not([value=""]):valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.form-field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.form-field input:focus ~ .form-field-line,
.form-field select:focus ~ .form-field-line,
.form-field textarea:focus ~ .form-field-line {
    width: 100%;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233d4f4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
}

.form-field-textarea textarea {
    resize: none;
    min-height: 100px;
    padding-top: 20px;
    border-bottom: 0 !important;
    background-image: none !important;
    background-repeat: no-repeat;
}

.form-field-textarea .form-field-line {
    display: block;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(61, 79, 74, 0.2);
    transition: background 0.3s ease, height 0.3s ease;
}

.form-field-textarea textarea:focus ~ .form-field-line {
    background: var(--color-primary);
    height: 2px;
}

.form-field-checkbox-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(61, 79, 74, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.form-submit-btn {
    margin-top: -15px;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .form-section {
        gap: 24px;
    }

    .form-section-title {
        font-size: 1rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea,
    .form-field label {
        font-size: 0.95rem;
    }

    .form-field-checkbox-group {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper h2 {
        font-size: 1.3rem;
    }

    .contact-form-wrapper .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .contact-form-premium {
        gap: 36px;
    }

    .form-section {
        gap: 20px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px 0 10px 0;
    }
}

/* Reference review cards — premium alternating layout */
.reference-page {
    height: 100vh;
    min-height: 100vh;
}

.reference-page #mainContent {
    min-height: 100vh;
}



/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-section {
    padding: 80px 24px;
    background-color: var(--color-bg);
}

.clients-container {
    max-width: var(--container-width);
    margin: 0 auto;
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 3vw, 40px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(61, 79, 74, 0.1);
    transition: all 0.3s ease;
    min-height: clamp(120px, 14vw, 180px);
    position: relative;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(61, 79, 74, 0.2);
}

.client-logo img {
    width: 100%;
    height: clamp(100px, 12vw, 160px);
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    max-width: 85%;
}

.client-logo:hover img {
    opacity: 1;
}

/* Individual logo size adjustments for better visibility */
/* Row 1 (1-5): Increase all, some more than others */
.client-logo:nth-child(1) img { max-width: 100%; height: clamp(140px, 15vw, 200px); }
.client-logo:nth-child(2) img { max-width: 100%; height: clamp(115px, 13.5vw, 175px); }
.client-logo:nth-child(3) img { max-width: 100%; height: clamp(170px, 15vw, 200px); }
.client-logo:nth-child(4) img { max-width: 100%; height: clamp(115px, 13.5vw, 175px); }
.client-logo:nth-child(5) img { max-width: 100%; height: clamp(140px, 15vw, 200px); }

/* Row 2 (6-10): Increase 3rd, 4th, 5th (8, 9, 10) */
.client-logo:nth-child(8) img { max-width: 100%; height: clamp(140px, 15vw, 200px); }
.client-logo:nth-child(9) img { max-width: 90%; height: clamp(115px, 13.5vw, 175px); }
.client-logo:nth-child(10) img { max-width: 100%; height: clamp(115px, 13.5vw, 175px); }

/* Row 3 (11-15): Increase all, some more than others */
.client-logo:nth-child(11) img { max-width: 100%; height: clamp(120px, 13.5vw, 180px); }
.client-logo:nth-child(12) img { max-width: 95%; height: clamp(115px, 13.5vw, 175px); }
.client-logo:nth-child(13) img { max-width: 95%; height: clamp(110px, 13vw, 170px); }
.client-logo:nth-child(14) img { max-width: 100%; height: clamp(145px, 15.5vw, 205px); }
.client-logo:nth-child(15) img { max-width: 100%; height: clamp(130px, 14.5vw, 190px); }

/* Row 4 (16-20): Same as row 3 - increase all, some more than others */
.client-logo:nth-child(16) img { max-width: 100%; height: clamp(120px, 13.5vw, 180px); }
.client-logo:nth-child(17) img { max-width: 100%; height: clamp(145px, 15.5vw, 205px); }
.client-logo:nth-child(18) img { max-width: 100%; height: clamp(135px, 14.5vw, 195px); }
.client-logo:nth-child(19) img { max-width: 100%; height: clamp(110px, 13vw, 170px); }
.client-logo:nth-child(20) img { max-width: 100%; height: clamp(100px, 14vw, 170px); }

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }

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

    .client-logo {
        padding: 14px;
        min-height: 110px;
    }

    .client-logo img {
        width: 100%;
        max-width: 90%;
        height: clamp(66px, 8.8vw, 82px);
        max-height: none;
        object-fit: contain;
    }

    .client-logo:nth-child(6) img,
    .client-logo:nth-child(7) img {
        max-width: 100%;
        height: clamp(82px, 11vw, 108px);
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 16px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo {
        padding: 12px;
        min-height: 98px;
    }

    .client-logo img {
        width: 100%;
        max-width: 90%;
        height: clamp(58px, 12.5vw, 68px);
        max-height: none;
        object-fit: contain;
    }

    .client-logo:nth-child(6) img,
    .client-logo:nth-child(7) img {
        max-width: 100%;
        height: clamp(72px, 16vw, 92px);
    }
}

.reviews-section {
    position: relative;
    padding: 0;
}

.reviews-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.reviews-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 900;
    color: #161616;
    opacity: 0.24;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.reviews-floating-kicker {
    position: absolute;
    top: clamp(84px, 15vh, 132px);
    left: 50%;
    transform: translateX(-50%) translateY(32px);
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(61, 79, 74, 0.88);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reviews-floating-kicker.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.reviews-floating-intro {
    position: absolute;
    left: 50%;
    bottom: clamp(138px, 25vh, 232px);
    transform: translateX(-50%) translateY(32px);
    width: min(88vw, 860px);
    margin: 0;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.68;
    color: rgba(26, 26, 26, 0.84);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reviews-floating-intro.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.reviews-scroll-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.reviews-list {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
    padding: calc(100vh + 120px) 32px 24px;
    will-change: transform;
}

.review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    height: auto;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "✓ Provjerena recenzija";
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    background-color: #111111;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.07) 45%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(140deg, #3c4f48 0%, #25312d 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 7px 12px;
    box-shadow:
        inset 0 0.2rem 0.6rem rgba(255, 255, 255, 0.28),
        inset 0 -0.12rem 0.3rem rgba(0, 0, 0, 0.55),
        inset 0 -0.32rem 0.7rem rgba(255, 255, 255, 0.24),
        0 12px 20px rgba(24, 34, 31, 0.28),
        0 5px 8px -4px rgba(0, 0, 0, 0.5);
}

.review-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(61, 79, 74, 0.85), rgba(125, 170, 152, 0.75));
}

.reviews-list > .review-card:nth-child(1) { grid-column: 1 / span 8; }
.reviews-list > .review-card:nth-child(2) { grid-column: 6 / span 7; }
.reviews-list > .review-card:nth-child(3) { grid-column: 1 / span 8; }
.reviews-list > .review-card:nth-child(4) { grid-column: 6 / span 7; }
.reviews-list > .review-card:nth-child(5) { grid-column: 1 / span 8; }
.reviews-list > .review-card:nth-child(6) { grid-column: 6 / span 7; }
.reviews-list > .review-card:nth-child(7) { grid-column: 2 / span 10; }

.review-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(61, 79, 74, 0.22);
    background: linear-gradient(145deg, rgba(125, 170, 152, 0.2), rgba(61, 79, 74, 0.1));
}

.review-card-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
    stroke: none;
}

.review-card-stars::after {
    content: "5.0 ocjena";
    margin-left: 9px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(44, 60, 55, 0.92);
}

.review-card-text {
    font-size: 1.02rem;
    color: var(--color-text);
    line-height: 1.62;
    margin: 0;
    font-weight: 400;
    flex: 1;
    position: relative;
    padding-left: 24px;
}

.review-card-text::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 2rem;
    line-height: 1;
    color: rgba(61, 79, 74, 0.32);
}

.review-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(61, 79, 74, 0.24);
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-white);
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.review-card-author-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 2px;
}

.review-card-author-info p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 0;
}

.review-card-glink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.review-card-glink:hover { opacity: 0.65; }

.review-card-glink svg {
    width: 14px;
    height: 14px;
}

.reviews-cta {
    position: relative;
    margin-top: 0;
    padding-bottom: 60px;
    text-align: center;
    z-index: 2;
}

.reviews-cta-bottom {
    padding-top: 6px;
}

@media screen and (max-width: 768px) {
    .header-primary-nav { display: none; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-sticky {
        position: static;
        max-height: none;
        padding: 0;
    }
    .contact-info-card-dark {
        padding: clamp(24px, 3vh, 36px) clamp(20px, 2.5vw, 30px) !important;
        position: static;
    }
    .reviews-bg-text { opacity: 0.24; }
    .reviews-floating-kicker {
        top: clamp(76px, 13vh, 108px);
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }
    .reviews-floating-intro {
        width: min(92vw, 680px);
        bottom: clamp(124px, 22vh, 186px);
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .reviews-list {
        grid-template-columns: 1fr;
        row-gap: 34px;
        column-gap: 0;
        padding: calc(100vh + 84px) 24px 22px;
    }
    .review-card {
        grid-column: 1 !important;
        width: 100%;
        height: auto;
    }
    .review-card::before { top: 10px; right: 10px; font-size: 0.56rem; padding: 5px 8px; }
    .review-card-stars { padding: 6px 10px; }
    .review-card-stars::after { font-size: 0.64rem; }
    .review-card-text { padding-left: 20px; }
    .review-card-text::before { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media screen and (max-width: 480px) {
    .contact-info-sticky {
        position: static;
        top: auto;
        padding: 0;
    }
    .contact-info-sticky::before { display: none; }
    .contact-info-header { margin-bottom: 18px; padding-bottom: 12px; }
    .contact-info-header h3 { font-size: 1.2rem; }
    .contact-info-header p { font-size: 0.88rem; }
    .contact-info-item { padding: 14px 0; }
    .contact-info-value { font-size: 0.98rem; line-height: 1.3; }
    .contact-info-hours-grid { grid-template-columns: 1fr; gap: 8px; }
    .hours-time { text-align: left; }

    .reviews-bg-text {
        font-size: clamp(2.8rem, 18vw, 5rem);
        opacity: 0.28;
        translate: 0 -100px;
        text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }
    .reviews-floating-kicker {
        top: clamp(72px, 12vh, 96px);
        font-size: 0.66rem;
        letter-spacing: 0.08em;
    }
    .reviews-floating-intro {
        width: min(92vw, 420px);
        translate: 0 -100px;
        bottom: clamp(112px, 21vh, 170px);
        font-size: 0.82rem;
        line-height: 1.52;
    }
    .reviews-list { padding: calc(100vh + 72px) 16px 14px; row-gap: 28px; }
    .review-card { width: 100%; padding: 24px 20px; }
    .review-card::before { position: static; align-self: flex-start; margin-bottom: 4px; }
    .review-card-stars { padding: 5px 9px; }
    .review-card-stars::after { font-size: 0.62rem; margin-left: 6px; }
    .review-card-text { font-size: 0.9rem; padding-left: 18px; }
    .review-card-bottom { flex-direction: column; align-items: flex-start; }
    .reviews-cta-bottom { padding-top: 4px; padding-bottom: 40px; }
    .contact-form-wrapper { padding: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: clamp(120px, 24vh, 260px);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        to top,
        var(--color-footer-bg) 0%,
        color-mix(in srgb, var(--color-footer-bg) 96%, transparent) 14%,
        color-mix(in srgb, var(--color-footer-bg) 88%, transparent) 30%,
        color-mix(in srgb, var(--color-footer-bg) 72%, transparent) 48%,
        color-mix(in srgb, var(--color-footer-bg) 46%, transparent) 66%,
        color-mix(in srgb, var(--color-footer-bg) 22%, transparent) 82%,
        transparent 100%
    );
}

.contact-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.2vh, 28px);
    padding: clamp(20px, 3.2vh, 38px) clamp(22px, 3.2vw, 46px);
    position: relative;
    z-index: 1;
}

.contact-panels {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: clamp(14px, 1.8vw, 22px);
    align-items: stretch;
}

.contact-panel {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: clamp(22px, 2.8vh, 34px) clamp(20px, 2.4vw, 36px);
    min-height: clamp(170px, 24vh, 240px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-panel-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    gap: clamp(16px, 2vh, 22px);
}

.contact-left {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) auto;
    column-gap: clamp(18px, 3vw, 44px);
    row-gap: clamp(14px, 2.2vh, 20px);
    align-items: center;
}

.contact-left > .contact-info-label {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 12px;
}

.contact-info-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-company-name {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin: 0;
    opacity: 0.95;
}

.contact-left-primary,
.contact-left-secondary {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    height: auto;
}

.contact-left-secondary {
    align-items: flex-start;
    text-align: left;
}

.contact-left-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.2px;
    opacity: 0.95;
    width: fit-content;
    line-height: 1.32;
    transition: opacity 180ms ease;
}

.contact-left-link:hover { opacity: 0.7; }

.contact-left-text,
.contact-left-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.contact-mini-social {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
}

/* Footer pearl social buttons */
.site-footer .pearl-social .wrap {
    padding: 14px;
}
.site-footer .pearl-social .social-icon {
    width: 19px;
    height: 19px;
    stroke: rgba(255, 255, 255, 0.95);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 2vw, 28px);
    align-items: start;
    justify-items: end;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.contact-info-block-right { text-align: right; }

.contact-developed-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    line-height: 1.32;
    margin: 0;
}

.site-footer .contact-developed {
    padding-top: 0;
    margin-top: 0;
    align-items: flex-end;
    text-align: right;
    gap: 10px;
}

.contact-developed-link {
    display: inline-flex;
    align-items: flex-start;
    width: fit-content;
    overflow: visible;
    margin-top: 0;
}

.site-footer .contact-developed-link {
    align-self: flex-end;
}

.contact-developed-logo {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.contact-wordmark {
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 0.86;
    font-size: clamp(56px, 18vw, 240px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    opacity: 0.06;
    flex-shrink: 1;
    min-width: 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 28px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    animation: wa-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1s;
}

@keyframes wa-entrance {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float .wa-pill {
    background: #25D366;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 14px 22px 14px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .wa-pill {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.whatsapp-float:active .wa-pill { transform: translateY(1px); }

.whatsapp-float .wa-icon {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
}

/* ============================================
   O NAMA SECTION (homepage)
   ============================================ */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: 20%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(125, 170, 152, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    width: 100%;
}

.about-text-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

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

.about-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}

.about-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 20px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(125, 170, 152, 0.2);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #4a6058, #35453f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(61,79,74,0.35);
}

.about-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card-content {
    flex: 1;
    min-width: 0;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
}

.about-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DISCOUNT BANNER (morph animation)
   ============================================ */
.promo-wrapper {
    position: fixed;
    bottom: 20px;
    left: 28px;
    z-index: 91;
    display: flex;
    align-items: flex-end;
}

.promo-container {
    position: relative;
    --promo-badge-width: 180px;
    --promo-badge-height: 54px;
    --promo-banner-width: 440px;
    --promo-banner-height: 340px;
    width: max-content;
    height: 54px;
}

.promo-banner,
.promo-badge {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-main);
    border: none;
    box-shadow:
        inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),
        0 1rem 2rem rgba(0, 0, 0, 0.3),
        0 0.5rem 1rem -0.5rem rgba(0, 0, 0, 0.8);
    transform-origin: bottom left;
    overflow: hidden;
    pointer-events: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width, height, opacity, transform;
}

.promo-banner {
    z-index: 4;
    width: var(--promo-banner-width);
    max-width: calc(100vw - 56px);
    height: var(--promo-banner-height);
    max-height: var(--promo-banner-height);
    border-radius: 24px;
    padding: 36px 36px 32px;
}

.promo-banner.hidden {
    width: var(--promo-badge-width);
    max-width: calc(100vw - 56px);
    height: var(--promo-badge-height);
    max-height: var(--promo-badge-height);
    border-radius: 100px;
    padding: 14px 22px 14px 18px;
    opacity: 1;
    transform: none;
    pointer-events: none;
    visibility: visible;
}

.promo-banner.fully-hidden {
    opacity: 0;
    visibility: hidden;
}

.promo-badge {
    z-index: 3;
    border-radius: 100px;
    padding: 14px 22px 14px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    width: var(--promo-badge-width);
    height: var(--promo-badge-height);
    max-width: calc(100vw - 56px);
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    user-select: none;
    animation: badge-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1s;
}

@media screen and (max-width: 768px) {
    .promo-container {
        --promo-badge-width: 140px;
        --promo-badge-height: 56px;
    }
    .promo-badge {
        width: 140px;
        height: 56px;
        border-radius: 100px;
        padding: 14px 18px;
        gap: 8px;
        font-size: 0.75rem;
    }
    .promo-badge svg {
        width: 20px;
        height: 20px;
    }
}

.promo-badge > * {
    transition: opacity 0.22s ease;
}

.promo-badge:not(.hidden) > * {
    opacity: 1;
}

@keyframes badge-entrance {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.promo-badge.hidden {
    width: var(--promo-banner-width);
    max-width: calc(100vw - 56px);
    height: var(--promo-banner-height);
    max-height: var(--promo-banner-height);
    border-radius: 20px;
    padding: 28px 24px 24px;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: none;
    animation: none;
}

.promo-badge.fully-hidden {
    opacity: 0;
    visibility: hidden;
}

.promo-badge.hidden > * {
    opacity: 0;
}

.promo-badge svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.promo-banner-content {
    opacity: 1;
    transition: opacity 0.35s ease 0.2s;
}

.promo-banner.hidden .promo-banner-content {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.2s ease;
}

.promo-banner-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s ease;
}

.promo-banner-close:hover { color: #fff; }

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(125, 170, 152, 0.15);
    border: 1px solid rgba(125, 170, 152, 0.25);
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-mint);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-mint);
}

.promo-headline {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.promo-headline strong {
    color: var(--color-mint);
    font-weight: 800;
}

.promo-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.promo-timer {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.promo-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 12px 8px;
    min-width: 56px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.promo-timer-num {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: rgba(255, 255, 255, 0.98);
}

.promo-timer-label {
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    color: var(--color-footer-bg);
    font-family: var(--font-main);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.promo-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promo-badge:hover {
    transform: translateY(-2px);
}

.promo-badge:focus-visible,
.promo-banner-close:focus-visible,
.promo-cta:focus-visible {
    outline: 2px solid rgba(255,255,255,0.65);
    outline-offset: 2px;
}


/* ============================================
   TEAM SECTION (O nama)
   ============================================ */
.team-intro {
    max-width: var(--container-narrow);
    margin: 0 auto 72px;
    text-align: left;
}

.team-intro-hero {
    max-width: 100%;
    margin: 0;
    padding: clamp(60px, 8vh, 100px) clamp(24px, 4vw, 56px);
    border-radius: 0;
    background: #1e2e28;
    position: relative;
    overflow: hidden;
}

.team-intro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 0% 0%, rgba(125, 170, 152, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(125, 170, 152, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.team-intro-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 170, 152, 0.3), transparent);
    pointer-events: none;
}

.team-intro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 24px;
    position: relative;
}

.team-intro-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.team-intro-hero h1 {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 32px;
    max-width: 980px;
    position: relative;
}

.team-intro-inner {
    display: flex;
    gap: clamp(40px, 6vw, 80px);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
    position: relative;
}

.team-intro-left {
    flex: 0 0 48%;
}

.team-intro-right {
    flex: 1;
    padding-top: clamp(36px, 4vh, 52px);
}

.team-intro-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.6vh, 18px);
    position: relative;
}

.team-intro-copy p {
    margin: 0;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.66;
    color: rgba(181, 206, 195, 0.78);
}

.team-intro-copy p:first-child {
    font-size: clamp(1.02rem, 1.14vw, 1.14rem);
    color: rgba(181, 206, 195, 0.92);
    font-weight: 500;
}

.team-intro h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.te.about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 16px;
}

.team-intro p:last-child {
    margin-bottom: 0;
}

.team-member-modern {
    display: flex;
    gap: 1.5vw;
    width: 100vw;
    max-width: 100vw;
    padding: 0 1.5vw;
    box-sizing: border-box;
    margin: 40px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    justify-content: center;
    align-items: stretch;
}

.team-member-modern .content-panel {
    flex: none;
    width: 52.5vw;
    height: 80vh;
    background: #ffffff;
    border-radius: 32px;
    padding: clamp(28px, 4.5vh, 52px) clamp(22px, 2.4vw, 44px);
    color: #132722;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 54px rgba(28, 57, 48, 0.10);
    border: 1px solid rgba(61, 79, 74, 0.10);
}

.team-member-modern .content-panel::before,
.team-member-modern .content-panel::after,
.team-member-modern .content-bottom-dots::before,
.team-member-modern .content-bottom-dots::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(61, 79, 74, 0.18);
    border-radius: 50%;
}

.team-member-modern .content-panel::before { top: 24px; left: 24px; }
.team-member-modern .content-panel::after { top: 24px; right: 24px; }
.team-member-modern .content-bottom-dots::before { bottom: 24px; left: 24px; }
.team-member-modern .content-bottom-dots::after { bottom: 24px; right: 24px; }

.team-member-modern .image-panel {
    flex: none;
    width: 40vw;
    height: 80vh;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-member-modern .image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 26, 0.08) 0%, rgba(5, 11, 26, 0.3) 42%, rgba(5, 11, 26, 0.74) 100%);
    pointer-events: none;
    z-index: 1;
}

.team-member-modern .image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-modern .image-title-block {
    position: absolute;
    bottom: clamp(24px, 3vh, 38px);
    left: clamp(24px, 2.2vw, 34px);
    right: clamp(24px, 2.2vw, 34px);
    z-index: 2;
}

.team-member-modern .image-title-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.82rem, 0.88vw, 0.96rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: clamp(14px, 1.8vh, 20px);
}

.team-member-modern .image-title-tag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(14px, 1.8vh, 20px);
}

.team-member-modern .image-title-tag-row .image-title-tag {
    margin-top: 0;
}

.team-member-modern .coming-soon-tag {
    font-size: clamp(0.75rem, 0.82vw, 0.88rem);
    font-weight: 600;
    color: #a3e635;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.team-member-modern .image-title-tag svg {
    width: 18px;
    height: 18px;
    color: #a3e635;
}

.team-member-modern .image-title-block h3 {
    font-size: clamp(2rem, 2.7vw, 2.95rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 clamp(8px, 1vh, 12px) 0;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
    padding-bottom: clamp(10px, 1.2vh, 14px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.team-member-modern .bio {
    font-size: clamp(0.95rem, 1.03vw, 1.02rem);
    line-height: 1.45;
    color: rgba(20, 38, 33, 0.82);
    margin-bottom: clamp(14px, 2vh, 24px);
    max-width: 95%;
}

.team-member-modern .bio-intro {
    font-size: clamp(1.08rem, 1.24vw, 1.28rem);
    line-height: 1.58;
    color: #1e2e28;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: clamp(16px, 2.2vh, 24px);
    padding: clamp(16px, 2vh, 24px) clamp(18px, 2vw, 28px);
    border-left: 3px solid var(--color-accent);
    background: linear-gradient(135deg, rgba(125, 170, 152, 0.08) 0%, rgba(125, 170, 152, 0.03) 100%);
    border-radius: 0 16px 16px 0;
}

.team-member-modern .team-bio p {
    font-size: clamp(0.98rem, 1.02vw, 1.06rem);
    line-height: 1.72;
    color: rgba(16, 35, 30, 0.85);
    max-width: 98%;
}

.team-member-modern .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: clamp(12px, 2vh, 22px);
}

.team-member-modern .actions .pearl-button {
    margin: 0;
    min-width: clamp(190px, 16vw, 260px);
}

.team-member-modern .actions .pearl-button .wrap p {
    margin: 0;
}

.team-member-modern .btn-filled {
    background: #6f8f81;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.team-member-modern .btn-outline {
    border: 1.5px solid rgba(61, 79, 74, 0.45);
    color: #1f3a31;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.team-member-modern .btn-filled::before,
.team-member-modern .btn-outline::before {
    content: '';
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
}

.team-member-modern .btn-filled:hover { 
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(61, 79, 74, 0.28);
}

.team-member-modern .btn-outline:hover { 
    background: rgba(111, 143, 129, 0.12);
    border-color: rgba(61, 79, 74, 0.65);
}

.team-member-modern .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    margin-top: auto;
    padding-top: clamp(12px, 1.8vh, 24px);
}

.team-member-modern .stat-item {
    position: relative;
}

.team-member-modern .stat-item::before {
    content: '';
    position: absolute;
    top: calc(-1 * clamp(12px, 1.8vh, 24px));
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(61, 79, 74, 0.12);
}

.team-member-modern .stat-item h4 {
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.team-member-modern .stat-item p {
    font-size: clamp(0.72rem, 0.8vw, 0.82rem);
    color: rgba(31, 58, 49, 0.7);
    margin: 0;
    line-height: 1.28;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-modern .image-overlay-card {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(248, 252, 249, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(61, 79, 74, 0.2);
    max-width: 360px;
    box-shadow: 0 16px 36px rgba(24, 49, 41, 0.24);
    z-index: 2;
}

.team-member-modern .overlay-icon {
    width: 56px;
    height: 56px;
    background: #6f8f81;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-member-modern .overlay-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.team-member-modern .overlay-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #17342b;
    line-height: 1.4;
}

.team-member-modern.reversed {
    flex-direction: row-reverse;
}

.team-member-modern.reversed .image-overlay-card {
    right: auto;
    left: 32px;
}

@media screen and (max-width: 1024px) {
    .team-member-modern {
        flex-direction: column !important;
        gap: 24px;
        width: 92vw;
        max-width: 92vw;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .team-member-modern .content-panel,
    .team-member-modern .image-panel {
        width: 100%;
        height: auto;
        flex: none;
    }
    /* Mobile: Show image first, then content */
    .team-member-modern .image-panel {
        order: 1;
    }
    .team-member-modern .content-panel {
        order: 2;
    }
    .team-member-modern .image-title-block h3 { font-size: 2.4rem; }
    .team-member-modern .image-panel { min-height: 450px; }
}

@media screen and (max-width: 768px) {
    .team-member-modern .content-panel { padding: 42px 26px; }
    .team-member-modern .image-title-block { left: 22px; right: 22px; bottom: 22px; top: auto; }
    .team-member-modern .image-title-block h3 { font-size: 2.05rem; }
    .team-member-modern .image-title-block h3::after { margin-top: 10px; }
    .team-member-modern .bio { font-size: 0.97rem; line-height: 1.55; }
    .team-member-modern .actions { gap: 12px; }
    .team-member-modern .actions .pearl-button { min-width: 0; width: 100%; }
    .team-member-modern .image-panel { min-height: 420px; }
}

@media screen and (max-width: 480px) {
    .team-member-modern .content-panel { padding: 50px 24px; border-radius: 24px; }
    .team-member-modern .image-panel { border-radius: 24px; min-height: 400px; }
    .team-member-modern .image-title-tag { font-size: 0.76rem; letter-spacing: 1px; }
    .team-member-modern .image-title-block h3 { font-size: 1.58rem; line-height: 1.14; }
    .team-member-modern .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .team-member-modern .actions { flex-direction: column; }
    .team-member-modern .image-overlay-card { left: 16px; right: 16px; bottom: 16px; padding: 16px; }
}

/* Stacking Layout - Hero left, Cards right */
main:has(.stacking-layout) > .container {
    overflow: visible;
}

.stacking-layout {
    display: flex;
    gap: clamp(40px, 8vw, 120px);
    padding: 0;
    align-items: flex-start;
    min-height: 100vh;
}

.stacking-hero-panel {
    flex: 0 0 clamp(360px, 44%, 600px);
    width: clamp(360px, 44%, 600px);
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    height: auto;
    margin-left: clamp(-18px, -1.2vw, -8px);
    align-self: flex-start;
}

.stacking-hero-panel .hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #050b1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.stacking-hero-panel .hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #050b1a;
    border-radius: 50%;
}

.stacking-hero-panel h1 {
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: #050b1a;
}

.stacking-hero-panel .page-intro {
    font-size: clamp(1.05rem, 1.15vw, 1.25rem);
    line-height: 1.5;
    color: #3d4f4a;
    text-align: justify;
    margin-bottom: 36px;
    max-width: 100%;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: clamp(32px, 4vw, 48px);
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

/* O nama page specific - reduce spacing to fit left panel in viewport */
/* Target the stacking-hero-panel that contains .partner-logos */
.stacking-hero-panel:has(.partner-logos) .hero-tag {
    margin-bottom: 14px;
}

.stacking-hero-panel:has(.partner-logos) h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    line-height: 1.02;
}

.stacking-hero-panel:has(.partner-logos) .page-intro {
    margin-bottom: 14px;
}

.stacking-hero-panel .partner-logos {
    gap: clamp(16px, 2.2vw, 28px);
    margin-bottom: 18px;
}

.stacking-hero-panel .partner-logos img {
    height: clamp(24px, 3vw, 36px);
}

.stacking-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-top: 0;
    padding-bottom: calc(50vh - 250px);
}

.stacking-card {
    position: sticky;
    top: calc(50vh - 250px);
    border-radius: 32px;
    padding: clamp(30px, 4.2vw, 52px);
    min-height: 500px;
    max-height: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(5, 11, 26, 0.12);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
    transform-origin: center center;
}

/* Individual Card Styling - theme colors */
.stacking-card:nth-child(1) { 
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f2ed 100%);
    z-index: 1; 
    border: 1px solid rgba(125, 170, 152, 0.15);
}

.stacking-card:nth-child(1):not(.visible) {
    transform: rotate(-1.2deg) translateY(32px);
}

.stacking-card:nth-child(1).visible {
    transform: rotate(-1.2deg) translateY(0);
}

.stacking-card:nth-child(2) { 
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    z-index: 2; 
    border: 1px solid rgba(61, 79, 74, 0.1);
    margin-top: 180px;
}

.stacking-card:nth-child(2):not(.visible) {
    transform: rotate(0.9deg) translateY(32px);
}

.stacking-card:nth-child(2).visible {
    transform: rotate(0.9deg) translateY(0);
}

.stacking-card:nth-child(3) { 
    background: linear-gradient(135deg, #e3ede8 0%, #d8e6df 100%);
    z-index: 3; 
    border: 1px solid rgba(125, 170, 152, 0.18);
}

.stacking-card:nth-child(3):not(.visible) {
    transform: rotate(-0.7deg) translateY(32px);
}

.stacking-card:nth-child(3).visible {
    transform: rotate(-0.7deg) translateY(0);
}

.stacking-card:nth-child(4) { 
    background: linear-gradient(135deg, #f5f9f7 0%, #edf3f0 100%);
    z-index: 4; 
    border: 1px solid rgba(61, 79, 74, 0.12);
}

.stacking-card:nth-child(4):not(.visible) {
    transform: rotate(1.1deg) translateY(32px);
}

.stacking-card:nth-child(4).visible {
    transform: rotate(1.1deg) translateY(0);
}

.stacking-card:nth-child(5) { 
    background: linear-gradient(135deg, #dce9e2 0%, #cfe0d7 100%);
    z-index: 5; 
    border: 1px solid rgba(125, 170, 152, 0.2);
}

.stacking-card:nth-child(5):not(.visible) {
    transform: rotate(-0.9deg) translateY(32px);
}

.stacking-card:nth-child(5).visible {
    transform: rotate(-0.9deg) translateY(0);
}

.stacking-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(5, 11, 26, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stacking-card-icon svg {
    width: 36px;
    height: 36px;
    color: #050b1a;
}

.stacking-card h3 {
    font-size: clamp(1.64rem, 2.2vw, 2.18rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 14px;
    color: #050b1a;
    letter-spacing: -0.02em;
}

.stacking-card p {
    font-size: clamp(1.02rem, 1.08vw, 1.12rem);
    line-height: 1.52;
    color: #4b5e58;
    margin-bottom: 18px;
    max-width: 100%;
    display: block;
    overflow: visible;
}

.stacking-card .pearl-button {
    margin-top: auto;
}

@media screen and (max-width: 992px) {
    .team-intro-hero {
        padding: calc(var(--header-height) + 32px) 24px 48px;
        margin-bottom: 0;
    }
    .team-intro-inner {
        flex-direction: column;
        gap: 28px;
    }
    .team-intro-left {
        flex: none;
    }
    .team-intro-right {
        padding-top: 0;
    }
    .team-intro-hero h1 {
        font-size: clamp(1.55rem, 4.4vw, 2.25rem);
    }
    .stacking-layout {
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
        align-items: stretch;
        min-height: auto;
    }
    .stacking-hero-panel {
        position: static;
        flex: none;
        width: 100%;
        text-align: left;
        margin-left: 0;
        align-self: auto;
        transform: none;
    }
    .stacking-hero-panel .hero-tag {
        justify-content: flex-start;
    }
    .stacking-hero-panel .page-intro {
        max-width: 600px;
        text-align: justify;
    }
    .stacking-cards-container {
        gap: 24px;
        padding-top: 0;
    }
    .stacking-card:nth-child(2) {
        margin-top: 0;
    }
    .stacking-card {
        position: relative;
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 40px 28px;
        border-radius: 24px;
    }
    .stacking-card p {
        display: block;
        overflow: visible;
    }
    main:has(.stacking-layout) .breadcrumb {
        position: relative;
        padding: calc(var(--header-height) + 8px) 0 10px;
    }
    .breadcrumb-fixed {
        position: relative;
        /* No longer sticky on mobile */
    }
}

@media screen and (max-width: 768px) {
    .team-intro-hero {
        padding: 30px 22px;
        margin-bottom: 0;
    }
    .team-intro-kicker {
        font-size: 0.7rem;
    }
    .team-intro-hero h1 {
        font-size: clamp(1.35rem, 6.8vw, 1.95rem);
        margin-bottom: 16px;
    }
    .team-intro-copy p {
        font-size: 0.95rem;
        line-height: 1.58;
    }
    .team-member-modern .bio-intro {
        font-size: 1.02rem;
        line-height: 1.48;
        padding: 14px;
    }
    .team-member-modern .team-bio p {
        font-size: 0.95rem;
        line-height: 1.62;
    }
}

@media screen and (max-width: 480px) {
    .stacking-card:nth-child(1):not(.visible),
    .stacking-card:nth-child(1).visible,
    .stacking-card:nth-child(2):not(.visible),
    .stacking-card:nth-child(2).visible,
    .stacking-card:nth-child(3):not(.visible),
    .stacking-card:nth-child(3).visible,
    .stacking-card:nth-child(4):not(.visible),
    .stacking-card:nth-child(4).visible,
    .stacking-card:nth-child(5):not(.visible),
    .stacking-card:nth-child(5).visible {
        transform: none;
    }
    .stacking-card:nth-child(n):not(.visible) {
        transform: translateY(32px);
    }

    .team-intro-hero {
        padding: 32px 16px;
        margin-bottom: 0;
    }
    .team-intro-kicker {
        margin-bottom: 10px;
        letter-spacing: 0.1em;
    }
    .team-intro-kicker::before {
        width: 6px;
        height: 6px;
    }
    .team-intro-hero h1 {
        font-size: clamp(1.2rem, 7.6vw, 1.55rem);
    }
    .team-intro-copy p {
        font-size: 0.9rem;
        line-height: 1.54;
    }
    .team-member-modern .bio-intro {
        font-size: 0.95rem;
        line-height: 1.45;
        border-left-width: 3px;
    }
    .team-member-modern .team-bio p {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

.team-bio p {
    margin-bottom: 16px;
}

.team-bio p:last-child {
    margin-bottom: 0;
}

.mission-vision-wrapper {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 64px;
}

.mission-card,
.vision-card {
    background: var(--color-card-bg);
    border-radius: 24px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.vision-card {
    border-left-color: var(--color-accent);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(61, 79, 74, 0.05), transparent 70%);
    pointer-events: none;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.vision-card h3 {
    color: var(--color-accent);
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.mission-card p:last-child,
.vision-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MISIJA & VIZIJA — premium layout
   ============================================ */
/* ============================================
   MISIJA I VIZIJA — premium text-only layout
   ============================================ */
.mv-page {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: clamp(80px, 12vh, 140px) 24px clamp(100px, 14vh, 160px);
}

.mv-block {
    padding: 0;
}

.mv-block-inner {
    position: relative;
}

.mv-block-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.mv-block-dot {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
}

.mv-block-heading {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #050b1a;
    margin-bottom: clamp(28px, 4vh, 44px);
}

.mv-block-text p {
    font-size: clamp(1.05rem, 1.15vw, 1.18rem);
    line-height: 1.78;
    color: #3d4f4a;
    margin-bottom: clamp(16px, 2vh, 24px);
}

.mv-block-text p:first-child {
    font-size: clamp(1.14rem, 1.28vw, 1.32rem);
    line-height: 1.68;
    color: #1e2e28;
    font-weight: 500;
}

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

.mv-divider {
    padding: clamp(48px, 6vh, 72px) 0;
    display: flex;
    justify-content: center;
}

.mv-divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 1px;
}

@media screen and (max-width: 600px) {
    .mv-page {
        padding: 60px 20px 80px;
    }
    .mv-block-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
}


.service-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
    position: relative;
}

.service-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

.service-content p {
    margin-bottom: 1.2rem;
}

.service-content p:last-of-type {
    margin-bottom: 0;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-highlight {
    background: linear-gradient(135deg, var(--color-footer-bg) 0%, color-mix(in srgb, var(--color-footer-bg) 85%, black) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem 2.5rem 4rem;
    margin: 3rem 0;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(125, 170, 152, 0.3);
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-mint) 100%);
    box-shadow: 0 0 20px rgba(125, 170, 152, 0.5);
}

.service-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(125, 170, 152, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
}

/* ============================================
   BOTTOM BLUR
   ============================================ */
.bottom-blur {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to top, black 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 80%, transparent 100%);
    z-index: 50;
    pointer-events: none;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   RESPONSIVE: TABLET (max-width: 768px)
   ============================================ */
@media screen and (max-width: 768px) {
    :root { --header-height: 68px; }

    .hero-content { grid-template-columns: 1fr; gap: 28px; }
    .hero-copy { transform: none; max-width: none; }
    .hero-media { justify-self: stretch; width: 100%; max-width: 560px; margin: 0 auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-services { gap: 10px; margin-bottom: 34px; }
    .hero-services li { font-size: 1rem; }
    .menu-text { font-size: 1.6rem; }
    .menu-content { padding: calc(var(--header-height) + 24px) 24px 32px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ref-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .ref-container { width: 95vw; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }

    .promo-wrapper { left: 16px; bottom: 12px; }
    .promo-container { 
        --promo-badge-width: 140px;
        --promo-badge-height: 56px;
        --promo-banner-width: 340px; 
        --promo-banner-height: 340px; 
    }
    .promo-banner { width: var(--promo-banner-width); padding: 24px 20px 20px; }
    .whatsapp-float { right: 16px; bottom: 12px; }

    /* Mobile: Move hamburger to fixed position (where chatbot was) */
    .hamburger {
        position: fixed;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .contact-panels { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .ref-section { padding: 64px 0; }
    .section-title { font-size: 1.6rem; margin-bottom: 32px; }
    .page-hero h1 { font-size: 1.9rem; }
    .page-intro { font-size: 0.95rem; }
    .service-number { font-size: 3.5rem; }

    .pearl-social .wrap { padding: 14px; }
    .pearl-social .social-icon { width: 20px; height: 20px; }

    .promo-container { 
        height: 52px; 
        --promo-badge-width: 140px;
        --promo-badge-height: 52px;
    }
    .promo-badge { width: 140px; font-size: 0.85rem; padding: 13px 18px; height: 52px; gap: 8px; }
    .promo-badge svg { width: 19px; height: 19px; }

    .team-intro { margin-bottom: 56px; }
    .team-intro h2 { font-size: 2.2rem; }
    .team-intro p { font-size: 1.02rem; }
    .team-member { grid-template-columns: 260px 1fr; gap: 40px; padding: 36px; margin-bottom: 64px; }
    .team-name { font-size: 1.7rem; }
    .team-role { font-size: 0.95rem; }
    .team-bio { font-size: 0.98rem; }
    .team-bio p { margin-bottom: 14px; }
    .mission-vision-grid { gap: 36px; margin-top: 52px; }
    .mission-card, .vision-card { padding: 40px 36px; }
    .mission-card h3, .vision-card h3 { font-size: 1.7rem; margin-bottom: 20px; }
    .mission-card p, .vision-card p { font-size: 1rem; margin-bottom: 16px; }
    .service-content h2 { font-size: 1.8rem; margin-bottom: 20px; }
    .service-content h3 { font-size: 1.4rem; margin-top: 1.5rem; }
    .service-content p { font-size: 1rem; margin-bottom: 16px; }
    .service-highlight { padding: 2rem 2.5rem 2rem 3.5rem; margin: 2.5rem 0; }
    .service-highlight p { font-size: 1.05rem; }
    
    .team-member { grid-template-columns: 200px 1fr; gap: 36px; margin-top: 0; margin-bottom: 0; padding: 40px; }
    .team-member:not(:last-child) { margin-bottom: 70px; }
    .team-member:not(:last-child)::after { bottom: -35px; height: 35px; }
    .team-member-image { width: 200px; height: 200px; }
    .team-member-content h3 { font-size: 1.7rem; padding-bottom: 0.6rem; border-bottom-width: 2px; }
    .team-member-role { font-size: 0.85rem; padding: 6px 14px; }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .site-footer::after { height: clamp(60px, 14vh, 140px); }
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 480px)
   ============================================ */
@media screen and (max-width: 480px) {
    :root { --header-height: 60px; }

    .logo img { height: calc(var(--header-height) + 14px); }
    .hamburger svg { height: 2.6em; }

    .hero { padding-top: calc(var(--header-height) + 20px); }
    .hero-content { gap: 22px; }
    .hero-media img { border-radius: 16px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-services {
        padding-left: 24px;
        margin-bottom: 28px;
        gap: 8px;
    }
    .hero-services li { font-size: 0.95rem; }
    .about-stats { gap: 12px; padding: 20px 0; }
    .about-stat-number { font-size: 1.4rem; }
    .about-stat-label { font-size: 0.6rem; }

    .pearl-button .wrap { font-size: 14px; padding: 16px 28px; }
    .service-card .pearl-button .wrap { font-size: 12px; padding: 12px 22px; }

    .pearl-social .wrap { padding: 12px; }
    .pearl-social .social-icon { width: 18px; height: 18px; }

    .promo-wrapper { left: 12px; bottom: 12px; }
    .promo-container { 
        height: auto; 
        --promo-badge-width: 50px;
        --promo-badge-height: 50px;
        --promo-banner-width: calc(100vw - 24px); 
        --promo-banner-height: 340px; 
    }
    .promo-banner { width: var(--promo-banner-width); max-width: none; padding: 22px 18px 18px; border-radius: 16px; }
    .promo-banner.hidden { border-radius: 50%; padding: 0; }
    .promo-badge { width: 50px; height: 50px; padding: 0; font-size: 0; max-width: none; gap: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
    .promo-badge svg { width: 22px; height: 22px; }
    .promo-headline { font-size: 1.15rem; }
    .promo-timer-unit { min-width: 48px; padding: 8px 10px 6px; }
    .promo-timer-num { font-size: 1.15rem; }

    /* Mobile: Move hamburger to fixed position */
    .hamburger {
        position: fixed;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        z-index: 1002;
    }
    .whatsapp-float { right: 12px; bottom: 12px; }
    .whatsapp-float .wa-text { display: none; }
    .whatsapp-float .wa-pill { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }

    .team-intro { margin-bottom: 40px; }
    .team-intro h2 { font-size: 1.8rem; margin-bottom: 24px; }
    .team-intro p { font-size: 0.95rem; margin-bottom: 14px; }
    .team-member { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; margin-bottom: 48px; }
    .team-photo-wrapper { max-width: 240px; margin: 0 auto; border-width: 4px; }
    .team-header { padding-bottom: 16px; border-bottom-width: 2px; }
    .team-name { font-size: 1.5rem; }
    .team-role { font-size: 0.9rem; }
    .team-info { gap: 20px; }
    .team-bio { font-size: 0.92rem; }
    .team-bio p { margin-bottom: 13px; }
    .mission-vision-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
    .mission-card, .vision-card { padding: 32px 28px; border-left-width: 4px; }
    .mission-card::before, .vision-card::before { width: 150px; height: 150px; }
    .mission-card h3, .vision-card h3 { font-size: 1.5rem; margin-bottom: 18px; }
    .mission-card p, .vision-card p { font-size: 0.95rem; margin-bottom: 14px; }
    .service-content h2 { font-size: 1.5rem; margin-bottom: 18px; }
    .service-content h3 { font-size: 1.3rem; margin-top: 1.2rem; }
    .service-content p { font-size: 0.95rem; margin-bottom: 14px; }
    .service-highlight { padding: 2rem 2rem 2rem 3rem; margin: 2rem 0; }
    .service-highlight p { font-size: 1rem; }
    
    .team-member { grid-template-columns: 1fr; gap: 28px; margin-top: 0; margin-bottom: 0; padding: 32px; text-align: center; }
    .team-member:not(:last-child) { margin-bottom: 60px; }
    .team-member:not(:last-child)::after { bottom: -30px; height: 30px; width: 1px; }
    .team-member-image { width: 180px; height: 180px; margin: 0 auto; }
    .team-member-content h3 { font-size: 1.5rem; padding-bottom: 0.5rem; border-bottom-width: 2px; }
    .team-member-role { font-size: 0.8rem; padding: 6px 12px; }

    .service-main-content > p:first-child::first-letter {
        font-size: 2.6em;
        margin-right: 6px;
    }
    .service-main-content > p:first-child {
        font-size: 1.05rem;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .service-main-content h2 {
        padding-left: 16px;
        margin: 40px 0 18px;
    }
    .menu-text { font-size: 1.35rem; }
    .menu-number { font-size: 0.65rem; }
    .sub-link { font-size: 0.8rem; }
    .menu-content { padding: calc(var(--header-height) + 16px) 20px 24px; }
    .menu-sub-items { margin-left: 14px; padding-left: 20px; }
    .sub-link::before { left: -20px; width: 20px; }

    .section { padding: 40px 0; }
    .ref-section { padding: 48px 0; }
    .bottom-blur { height: 12vh; }

    .page-hero h1 { font-size: 1.5rem; }
    .page-intro { font-size: 0.9rem; }
    .breadcrumb { font-size: 0.72rem; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 24px 20px; }
    .service-number { font-size: 2.8rem; }
    .service-icon-circle { width: 40px; height: 40px; }
    .service-icon-circle svg { width: 18px; height: 18px; }

    .ref-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ref-container { width: 100%; padding: 0 12px; }
    .about-grid { gap: 24px; }
    .about-text h2 { font-size: 1.5rem; }
    .ref-logo-text { font-size: 0.7rem; }
    .ref-name { font-size: 0.55rem; }
    .ref-service { font-size: 0.65rem; }

    .promo-wrapper { left: 16px; bottom: 16px; }
    .promo-container { 
        --promo-badge-width: 52px;
        --promo-badge-height: 52px;
        --promo-banner-width: calc(100vw - 32px); 
        --promo-banner-height: 340px; 
    }
    .promo-banner { width: var(--promo-banner-width); max-width: none; padding: 22px 18px 18px; border-radius: 16px; }
    .promo-banner.hidden { border-radius: 50%; padding: 0; }
    .promo-badge { width: 52px; height: 52px; padding: 0; font-size: 0; max-width: none; gap: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
    .promo-badge svg { width: 22px; height: 22px; }
    .promo-headline { font-size: 1.15rem; }
    .promo-timer-unit { min-width: 48px; padding: 8px 10px 6px; }
    .promo-timer-num { font-size: 1.15rem; }
    .whatsapp-float { right: 16px; bottom: 16px; }
    .whatsapp-float .wa-text { display: none; }
    .whatsapp-float .wa-pill { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }

    /* Mobile: Move hamburger to fixed position */
    .hamburger {
        position: fixed;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .faq-item summary { padding: 20px 20px; font-size: 0.9rem; }
    .faq-answer { padding: 0 20px; font-size: 0.85rem; }
    .faq-item[open] .faq-answer { padding: 0 20px 20px; }

    .contact-shell { gap: 18px; padding: 24px 18px 30px; }
    .contact-panel { padding: 20px 16px; }
    .contact-left { grid-template-columns: 1fr; row-gap: 14px; }

    .contact-left-primary,
    .contact-left-secondary {
        height: auto; gap: 6px;
        justify-content: flex-start;
        text-align: left;
    }

    .contact-left-secondary { align-items: flex-start; text-align: left; }

    .contact-mini-social {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .contact-info-text,
    .contact-left-text,
    .contact-left-hours,
    .contact-developed-label {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
    }

    .contact-wordmark { 
        font-size: clamp(34px, 18vw, 110px);
        text-align: center;
        translate: 45px;
        width: 100%;
    }

    .site-footer::after { height: clamp(40px, 10vh, 100px); }
}

/* ============================================
   PREMIUM SUBPAGE DESIGN SYSTEM
   ============================================ */

/* --- Hero Stats Bar --- */
.hero-stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(125, 170, 152, 0.18);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(181, 206, 195, 0.55);
}

/* --- Hero CTA --- */
.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Feature Grid (2 or 3 col) --- */
.sp-features {
    padding: clamp(60px, 8vh, 100px) 0;
}

.sp-features .container {
    max-width: var(--container-width);
}

.sp-features-header {
    text-align: center;
    margin-bottom: 56px;
}

.sp-features-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.sp-features-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1.12;
}

.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-features-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.sp-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(61, 79, 74, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.sp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.sp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(125, 170, 152, 0.12) 0%, rgba(125, 170, 152, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sp-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    stroke-width: 1.5;
}

.sp-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.sp-feature-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin: 0;
}

/* --- Process Steps --- */
.sp-process {
    padding: clamp(60px, 8vh, 100px) 0;
    background: linear-gradient(180deg, rgba(240, 247, 243, 0.5) 0%, transparent 100%);
}

.sp-process .container {
    max-width: var(--container-narrow);
}

.sp-process-header {
    text-align: center;
    margin-bottom: 56px;
}

.sp-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.sp-process-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent), rgba(125, 170, 152, 0.15));
}

.sp-step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    position: relative;
}

.sp-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sp-step-body h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
}

.sp-step-body p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin: 0;
}

/* --- Split Content Section --- */
.sp-split {
    padding: clamp(60px, 8vh, 100px) 0;
}

.sp-split .container {
    max-width: var(--container-width);
}

.sp-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sp-split-text h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.12;
}

.sp-split-text p {
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.72;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

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

/* --- Info Box (premium highlight) --- */
.sp-info-box {
    background: linear-gradient(135deg, #1e2e28 0%, #2a3f37 100%);
    border-radius: 20px;
    padding: clamp(32px, 4vh, 48px) clamp(28px, 3vw, 40px);
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 170, 152, 0.15);
}

.sp-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(125, 170, 152, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sp-info-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.sp-info-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(181, 206, 195, 0.82);
    margin: 0 0 12px;
}

.sp-info-box p:last-child {
    margin-bottom: 0;
}

/* --- CTA Section --- */
.sp-cta {
    padding: clamp(60px, 8vh, 100px) 0;
    text-align: center;
}

.sp-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.sp-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.12;
}

.sp-cta p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* --- Numbered List Section --- */
.sp-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: sp-list;
}

.sp-numbered-list li {
    counter-increment: sp-list;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(61, 79, 74, 0.06);
}

.sp-numbered-list li:last-child {
    border-bottom: none;
}

.sp-numbered-list li::before {
    content: counter(sp-list, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-accent);
}

/* --- Price Tag --- */
.sp-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: linear-gradient(135deg, rgba(125, 170, 152, 0.1) 0%, rgba(125, 170, 152, 0.04) 100%);
    border: 1px solid rgba(125, 170, 152, 0.18);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 24px 0;
}

.sp-price-tag .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.sp-price-tag .price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* --- Premium Subpage Responsive --- */
@media screen and (max-width: 768px) {
    .contact-hero-dark-content {
        max-width: 100%;
    }
    .hero-stats-bar {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stat-value { font-size: 1.3rem; }
    .sp-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sp-features-grid.two-col {
        grid-template-columns: 1fr;
    }
    .sp-feature-card {
        padding: 28px 24px;
    }
    .sp-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sp-process-steps::before {
        left: 19px;
    }
    .sp-step {
        gap: 20px;
    }
    .sp-step-num {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .hero-stats-bar {
        gap: 20px;
    }
    .hero-stat-value { font-size: 1.1rem; }
    .hero-stat-label { font-size: 0.6rem; }
    .sp-feature-card {
        padding: 24px 20px;
    }
    .sp-info-box {
        padding: 24px 20px;
    }
    .sp-step {
        gap: 16px;
        padding: 20px 0;
    }
    .sp-process-steps::before {
        left: 15px;
    }
    .sp-step-num {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
}

/* ============================================
   PREMIUM SUBPAGE HERO & LAYOUT
   ============================================ */
.contact-hero-dark {
    background: #1a2621;
    padding: clamp(40px, 5vh, 60px) 5vw clamp(40px, 5vh, 60px);
    min-height: calc(100vh - var(--header-height) - 40px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 170, 152, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(125, 170, 152, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 40px;
    pointer-events: none;
    opacity: 0.5;
}

.contact-hero-dark-inner {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-dark-content {
    max-width: 85%;
}

.contact-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.contact-hero-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}

.contact-hero-dark h1 {
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
}

.contact-hero-dark p {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 450;
}

/* Stats bar inside hero - Premium style */
.hero-stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-stat-value {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

/* ============================================
   WIDER BODY & FOOTER-COLORED SIDEBAR
   ============================================ */
.section.service-content {
    padding: clamp(60px, 10vh, 120px) 0;
}

.service-content .container {
    max-width: 92vw;
}

.service-content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}

.service-main-content {
    font-size: clamp(1.05rem, 1.15vw, 1.2rem);
    line-height: 1.8;
    color: #2d3d36;
}

.service-main-content > p:first-child {
    font-size: clamp(1.15rem, 1.3vw, 1.35rem);
    line-height: 1.7;
    color: #1a2621;
    font-weight: 500;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(61, 79, 74, 0.1);
}

.service-main-content > p:first-child::first-letter {
    float: left;
    font-size: 3.2em;
    line-height: 0.85;
    font-weight: 800;
    color: var(--color-primary);
    margin-right: 8px;
    margin-top: 4px;
}

.service-main-content > p {
    margin-bottom: 20px;
}

.service-main-content > p + p {
    text-indent: 0;
}

.service-main-content h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
    margin: 56px 0 24px;
    color: #1a2621;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 20px;
}

.service-main-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--color-accent);
}

.service-main-content h2:first-child {
    margin-top: 0;
}

.service-main-content h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 700;
    margin: 40px 0 16px;
    color: #1a2621;
    letter-spacing: -0.01em;
}

/* Sidebar with footer colors */
.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.service-sidebar-inner {
    background: #2d3d36; /* Footer color */
    border-radius: 24px;
    padding: 40px 30px;
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-sidebar-inner::before {
    display: none; /* Removed the old accent line */
}

.service-sidebar-title {
    font-size: 1.8rem; /* Large and bold as per screenshot */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 30px;
    padding-left: 0;
    line-height: 1.1;
}

.service-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-sidebar-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-sidebar-links li:last-child {
    border-bottom: none;
}

.service-sidebar-link {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.service-sidebar-link:hover {
    color: #ffffff;
    padding-left: 8px;
    background: none;
    transform: none;
}

.service-sidebar-link.active {
    color: #ffffff;
    font-weight: 700;
    background: none;
    border: none;
}

.service-sidebar-link.active::before {
    display: none;
}

@media screen and (max-width: 1200px) {
    .service-content-with-sidebar {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .service-content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 80px;
        order: 2; /* Move to bottom */
    }
    
    .service-sidebar-inner {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero-dark h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    
    .hero-stats-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
}

/* ============================================
   SCROLL INDICATOR (Animated Arrows)
   ============================================ */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.scroll-arrow {
    color: rgba(61, 79, 74, 0.7);
    opacity: 0;
    animation: arrowFade 1.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    display: block;
    margin-top: -10px;
}

.scroll-arrow:first-child {
    margin-top: 0;
}

.scroll-arrow-1 {
    animation-delay: 0s;
}

.scroll-arrow-2 {
    animation-delay: 0.2s;
}

.scroll-arrow-3 {
    animation-delay: 0.4s;
}

@keyframes arrowFade {
    0% { opacity: 0; transform: translateY(-3px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(3px); }
}

/* ============================================
   LARGE SCREEN ENHANCEMENTS (1440px+)
   ============================================ */
@media screen and (min-width: 1440px) {
    .section {
        padding: clamp(100px, 10vh, 140px) 0;
    }

    .hero-copy {
        max-width: 1020px;
    }

    .hero-title {
        max-width: 1020px;
    }

    .hero-subtitle {
        max-width: 840px;
    }

    .hero-features {
        max-width: 1080px;
    }

    .contact-hero-dark-content {
        max-width: 85%;
    }

    .stacking-hero-panel {
        flex: 0 0 clamp(400px, 44%, 680px);
        width: clamp(400px, 44%, 680px);
    }

    .stacking-cards-container {
        gap: 140px;
    }

    .contact-hero-dark {
        padding: clamp(40px, 5vh, 60px) clamp(40px, 5vw, 80px) clamp(40px, 5vh, 60px);
    }

    .clients-section {
        padding: 100px 40px;
    }

    .contact-shell {
        padding: clamp(28px, 3.5vh, 48px) clamp(32px, 4vw, 64px);
    }

    .contact-panels {
        gap: clamp(20px, 2.2vw, 32px);
    }

    .sp-cta-inner {
        max-width: 700px;
    }

    .sp-split-grid {
        gap: 100px;
    }
}

/* ============================================
   EXTRA LARGE SCREEN ENHANCEMENTS (1920px+)
   ============================================ */
@media screen and (min-width: 1920px) {
    .section {
        padding: clamp(120px, 12vh, 180px) 0;
    }

    .hero-copy {
        max-width: 1100px;
    }

    .hero-title {
        max-width: 1100px;
    }

    .hero-subtitle {
        max-width: 920px;
    }

    .hero-features {
        max-width: 1160px;
    }

    .contact-hero-dark-content {
        max-width: 85%;
    }

    .stacking-hero-panel {
        flex: 0 0 clamp(440px, 44%, 760px);
        width: clamp(440px, 44%, 760px);
    }

    .stacking-cards-container {
        gap: 160px;
    }

    .stacking-card {
        padding: clamp(52px, 5vw, 72px);
    }

    .contact-hero-dark {
        padding: clamp(50px, 6vh, 70px) clamp(60px, 6vw, 100px) clamp(50px, 6vh, 70px);
    }

    .contact-hero-dark h1 {
        font-size: clamp(3rem, 4vw, 4.5rem);
    }

    .clients-section {
        padding: 120px 60px;
    }

    .team-intro-hero {
        padding: clamp(80px, 10vh, 130px) clamp(40px, 5vw, 80px);
    }

    .contact-shell {
        padding: clamp(36px, 4vh, 56px) clamp(40px, 5vw, 80px);
    }

    .sp-cta-inner {
        max-width: 800px;
    }

    .sp-split-grid {
        gap: 120px;
    }

    .team-intro-inner {
        padding: 0 40px;
    }
}
