:root {
    --brand: #5d8bad;
    --brand-hover: #75a0bf;
    --brand-rgb: 93, 139, 173;
    --brand-deep: #263747;
    --brand-surface: #111820;
}

/* =====================================================
   KNG DIGITAL
   Global Styles
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #0b0f14;
    color: #f5f5f5;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(11, 15, 20, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.header-container {
    width: min(1400px, calc(100% - 48px));
    height: 80px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   BRAND
===================================================== */

.brand {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-logo {
    display: block;

    width: 52px;
    height: 52px;

    object-fit: contain;
    flex-shrink: 0;
}

.brand-digital {
    color: var(--brand);
}


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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;

    color: #b9b9b9;

    font-size: 0.95rem;
    font-weight: 500;

    transition:
        color 0.2s ease;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.desktop-nav a.active {
    color: #ffffff;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -12px;

    height: 2px;

    background: var(--brand);
}

/* =====================================================
   NAV DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-chevron {
    color: #6f7b86;
    font-size: 0.8rem;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.nav-dropdown:hover .nav-chevron {
    color: var(--brand);
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 20px);
    left: -22px;

    width: 270px;
    padding: 8px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;

    background: rgba(15, 21, 28, 0.98);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.nav-dropdown-menu::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: -21px;

    height: 21px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px 14px;

    border-radius: 7px;

    color: #b7bec5;

    font-size: 0.88rem;
    font-weight: 500;

    transition:
        color 0.18s ease,
        background 0.18s ease;
}

.nav-dropdown-menu a span {
    color: var(--brand);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav-dropdown-menu a:hover {
    color: #ffffff;

    background: rgba(var(--brand-rgb), 0.09);
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =====================================================
   LANGUAGE SELECTOR
===================================================== */

.language-selector {
    position: relative;
}

.language-button {
    height: 44px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 14px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background: transparent;
    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.globe {
    color: var(--brand);
}

.language-chevron {
    color: #8e8e8e;
}


.language-menu {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    min-width: 170px;

    padding: 6px;

    background: #151d25;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s;
}

.language-menu.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.language-menu button {
    width: 100%;

    padding: 10px 12px;

    border: 0;
    border-radius: 6px;

    text-align: left;

    background: transparent;
    color: #d6d6d6;

    cursor: pointer;
}

.language-menu button:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}


/* =====================================================
   HEADER CTA
===================================================== */

.header-cta {
    height: 44px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 18px;

    border-radius: 8px;

    background: var(--brand);
    color: #0a0a0a;

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.header-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


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

.mobile-nav {
    display: none;

    padding:
        10px 24px
        24px;

    background: #0a0a0a;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
}

.mobile-nav > a {
    padding: 14px 0;

    color: #bdbdbd;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav > a.active {
    color: var(--brand);
}

.mobile-nav .mobile-cta {
    margin-top: 18px;

    display: flex;
    justify-content: space-between;

    padding: 14px 18px;

    border: 0;
    border-radius: 8px;

    background: var(--brand);
    color: #090909;

    font-weight: 700;
}


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

@media (max-width: 950px) {

    .desktop-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

}


@media (max-width: 600px) {

    .header-container {
        width: calc(100% - 28px);
        height: 70px;
    }

    .brand {
        font-size: 1.25rem;
        gap: 9px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .language-button {
        height: 40px;
    }

}

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

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 90px;

    padding: 90px 0 120px;
}


/* Hero content */

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 24px;

    color: #bdbdbd;

    font-size: 0.85rem;
    font-weight: 600;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =====================================================
   HERO HAND-DRAWN ARROW
===================================================== */

.hero-arrow {
    position: absolute;
    z-index: 4;

    right: -125px;
    bottom: 5px;

    width: 215px;

    pointer-events: none;
}

.hero-arrow img {
    display: block;

    width: 100%;
    height: auto;

    opacity: 0.9;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--brand);

    box-shadow:
        0 0 14px rgba(var(--brand-rgb), 0.7);
}


.hero h1 {
    margin: 0;

    font-size: clamp(3.3rem, 5vw, 5.4rem);
    line-height: 0.98;

    letter-spacing: -0.055em;

    color: #ffffff;
}

.hero h1 span {
    color: var(--brand);
}


.hero-description {
    max-width: 590px;

    margin: 28px 0 0;

    color: #9e9e9e;

    font-size: 1.1rem;
    line-height: 1.75;
}


/* Buttons */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 36px;
}

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 0.95rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.button-primary {
    background: var(--brand);
    color: #090909;
}

.button-primary:hover {
    background: var(--brand-hover);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);

    background: rgba(255, 255, 255, 0.05);
}


/* Benefits */

.hero-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 34px;

    color: #777777;

    font-size: 0.82rem;
}

.hero-benefits span::first-letter {
    color: var(--brand);
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* subtle glow */

.hero-visual::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--brand-rgb), 0.12),
            transparent 68%
        );

    filter: blur(20px);
}


/* Browser */

.browser-mockup {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 570px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    background: #10161d;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);
}


.browser-bar {
    height: 46px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    background: #171717;
}


.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #444444;
}


.browser-address {
    margin: 0 auto;

    padding: 5px 40px;

    border-radius: 5px;

    background: #0c0c0c;

    color: #555555;

    font-size: 0.65rem;
}


/* Fake website */

.browser-content {
    min-height: 340px;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #101010,
            #080808
        );
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);

    font-size: 0.75rem;
}

.mockup-nav div {
    display: flex;
    gap: 12px;
}

.mockup-nav i {
    width: 34px;
    height: 4px;

    border-radius: 20px;

    background: #242424;
}


.mockup-hero {
    padding: 60px 30px;
}

.mockup-label {
    width: 85px;
    height: 6px;

    margin-bottom: 17px;

    border-radius: 10px;

    background: var(--brand);
}

.mockup-title {
    width: 72%;
    height: 16px;

    margin-bottom: 9px;

    border-radius: 4px;

    background: #eeeeee;
}

.mockup-title.short {
    width: 52%;
}

.mockup-text {
    width: 63%;
    height: 6px;

    margin-top: 25px;

    border-radius: 5px;

    background: #333333;
}

.mockup-text.short {
    width: 46%;
    margin-top: 8px;
}

.mockup-button {
    width: 90px;
    height: 28px;

    margin-top: 25px;

    border-radius: 5px;

    background: var(--brand);
}

.mockup-brand {
    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 800;
}

.mockup-brand img {
    display: block;

    width: 25px;
    height: 25px;

    object-fit: contain;
}

/* Floating cards */

.hero-card {
    position: absolute;
    z-index: 3;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;

    padding: 13px 17px;

    border: 1px solid rgba(var(--brand-rgb), 0.28);
    border-radius: 9px;

    background: rgba(18, 24, 31, 0.96);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);
}

.hero-card-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;
    background: rgba(var(--brand-rgb), 0.10);
    color: var(--brand);
}

.hero-card-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card-speed .hero-card-icon svg {
    fill: currentColor;
    stroke: none;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
}

.hero-card-content strong {
    color: #ffffff;
    font-size: 0.8rem;
    line-height: 1.25;
}

.hero-card-content span {
    margin-top: 2px;
    color: #7f8b95;
    font-size: 0.65rem;
}

.hero-card-speed {
    top: 55px;
    right: -20px;
}

.hero-card-responsive {
    bottom: 55px;
    left: -20px;
}


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

@media (max-width: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 80px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        min-height: 440px;
    }

}


@media (max-width: 600px) {

    .hero {
        min-height: auto;
    }

    .hero-container {
        width: calc(100% - 32px);

        padding:
            65px 0
            80px;
    }

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

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

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

    .hero-visual {
        min-height: 330px;
    }

    .browser-mockup {
        transform: none;
    }

    .hero-card {
        display: none;
    }

}

/* =====================================================
   SERVICES
===================================================== */

.services-section {
    padding: 130px 0;

    background: #10161d;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


.services-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* Heading */

.section-heading {
    margin-bottom: 65px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    color: #bdbdbd;

    font-size: 0.82rem;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.section-heading-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    gap: 80px;

    align-items: end;
}


.section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.7rem, 4vw, 4.3rem);
    line-height: 1.05;

    letter-spacing: -0.045em;
}


.section-heading h2 span {
    color: var(--brand);
}


.section-heading-row > p {
    max-width: 460px;

    margin: 0 0 5px;

    color: #929292;

    font-size: 1rem;
    line-height: 1.75;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    border-left:
        1px solid rgba(255, 255, 255, 0.1);
}


/* Cards */

.service-card {
    position: relative;

    min-height: 410px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border-right:
        1px solid rgba(255, 255, 255, 0.1);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    background: #10161d;

    overflow: hidden;

    transition:
        background 0.3s ease;
}


.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--brand);

    transition:
        height 0.3s ease;
}


.service-card:hover {
    background: #151d25;
}


.service-card:hover::before {
    height: 100%;
}


/* Top */

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.service-number {
    color: #555555;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.08em;
}


.service-arrow {
    color: #555555;

    font-size: 1.1rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.service-card:hover .service-arrow {
    color: var(--brand);

    transform: translate(
        3px,
        -3px
    );
}


/* Icon */

.service-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 55px;
    margin-bottom: 28px;

    border:
        1px solid rgba(var(--brand-rgb), 0.3);

    border-radius: 8px;

    background:
        rgba(var(--brand-rgb), 0.06);

    color: var(--brand);

    font-family: monospace;

    font-size: 1rem;
    font-weight: 700;
}


/* Content */

.service-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 1.25rem;

    letter-spacing: -0.02em;
}


.service-card p {
    margin: 0;

    color: #858585;

    font-size: 0.9rem;
    line-height: 1.7;
}


.service-link {
    margin-top: auto;
    padding-top: 30px;

    color: #777777;

    font-size: 0.78rem;
    font-weight: 600;

    transition: color 0.2s ease;
}


.service-card:hover .service-link {
    color: var(--brand);
}


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

@media (max-width: 1000px) {

    .section-heading-row {
        grid-template-columns: 1fr;

        gap: 25px;
    }

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

}


@media (max-width: 600px) {

    .services-section {
        padding: 90px 0;
    }

    .services-container {
        width: calc(100% - 32px);
    }

    .section-heading {
        margin-bottom: 45px;
    }

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

    .service-card {
        min-height: 350px;
    }

}

/* =====================================================
   KNG BRAND REFINEMENTS
   Primary: #5d8bad
===================================================== */

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

.service-card {
    grid-column: span 2;
    background: #10161d;
}

.service-card-primary {
    grid-column: span 3;
    min-height: 390px;
}

.service-card:hover {
    background: #151d25;
}

.service-card p {
    color: #969696;
}

.service-number,
.service-arrow {
    color: #6b7480;
}

.service-icon {
    border-color: rgba(var(--brand-rgb), 0.38);
    background: rgba(var(--brand-rgb), 0.08);
}

.hero-visual::before {
    background: radial-gradient(
        circle,
        rgba(var(--brand-rgb), 0.16),
        transparent 68%
    );
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card,
    .service-card-primary {
        grid-column: span 1;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
    }
}

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

    .service-card,
    .service-card-primary,
    .service-card:last-child {
        grid-column: 1;
    }
}


/* =====================================================
   WHY KNG DIGITAL
===================================================== */

.why-section {
    padding: 130px 0;
    background: #0b0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.why-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.why-heading h2 span { color: var(--brand); }

.why-heading > p {
    max-width: 520px;
    margin: 28px 0 0;
    color: #929292;
    font-size: 1rem;
    line-height: 1.75;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.why-card {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: #0d1319;
    transition: background .25s ease, transform .25s ease;
}

.why-card:hover { background: #111a22; }

.why-number {
    display: block;
    margin-bottom: 48px;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.why-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}

.why-card p {
    margin: 0;
    color: #8f969d;
    font-size: .9rem;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .why-container { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 600px) {
    .why-section { padding: 90px 0; }
    .why-container { width: calc(100% - 32px); }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { min-height: 220px; }
}


/* =====================================================
   PORTFOLIO / OUR WORK
===================================================== */

.work-section {
    padding: 130px 0;
    background: #10161d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.work-heading {
    margin-bottom: 65px;
}

.work-heading-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: end;
}

.work-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.work-heading h2 span { color: var(--brand); }

.work-heading-row > p {
    max-width: 460px;
    margin: 0 0 5px;
    color: #929292;
    font-size: 1rem;
    line-height: 1.75;
}

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

.project-card {
    min-width: 0;
}

.project-card-featured {
    grid-column: 1 / -1;
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: #0b0f14;
}

.project-card-featured .project-image {
    aspect-ratio: 2.05 / 1;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 11, 0.24), transparent 45%);
    pointer-events: none;
}

.project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.018);
    filter: brightness(1.05);
}

.project-open {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(11, 15, 20, 0.78);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.project-card:hover .project-open {
    background: var(--brand);
    color: #081017;
    transform: translate(2px, -2px);
}

.project-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 2px 8px;
}

.project-type {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-meta h3 {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.project-meta p {
    margin: 0 0 2px;
    color: #7f8992;
    font-size: .85rem;
    text-align: right;
}

.work-footer {
    display: flex;
    justify-content: center;
    margin-top: 58px;
}

@media (max-width: 1000px) {
    .work-heading-row { grid-template-columns: 1fr; gap: 25px; }
    .project-card-featured .project-image { aspect-ratio: 16 / 9; }
}

@media (max-width: 700px) {
    .work-section { padding: 90px 0; }
    .work-container { width: calc(100% - 32px); }
    .work-heading { margin-bottom: 45px; }
    .work-grid { grid-template-columns: 1fr; gap: 38px; }
    .project-card-featured { grid-column: auto; }
    .project-image, .project-card-featured .project-image { aspect-ratio: 16 / 10; }
    .project-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
    .project-meta p { text-align: left; }
}


/* =====================================================
   PROCESS
===================================================== */
.process-section { padding: 130px 0; background: #0b0f14; border-top: 1px solid rgba(255,255,255,.06); }
.process-container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.process-heading { margin-bottom: 65px; }
.process-heading-row, .packages-heading-row { display:grid; grid-template-columns:1.3fr .7fr; gap:80px; align-items:end; }
.process-heading h2, .packages-heading h2 { margin:0; color:#fff; font-size:clamp(2.7rem,4vw,4.3rem); line-height:1.05; letter-spacing:-.045em; }
.process-heading h2 span, .packages-heading h2 span { color:var(--brand); }
.process-heading-row > p, .packages-heading-row > p { max-width:460px; margin:0 0 5px; color:#929292; font-size:1rem; line-height:1.75; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.1); border-left:1px solid rgba(255,255,255,.1); }
.process-step { min-height:310px; padding:30px; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); background:#0d1319; }
.process-number { display:block; margin-bottom:72px; color:var(--brand); font-size:.72rem; font-weight:700; letter-spacing:.08em; }
.process-step h3 { margin:0 0 14px; color:#fff; font-size:1.2rem; }
.process-step p { margin:0; color:#8f969d; font-size:.9rem; line-height:1.7; }

/* =====================================================
   PACKAGES
===================================================== */
.packages-section { padding:130px 0; background:#10161d; border-top:1px solid rgba(255,255,255,.06); }
.packages-container { width:min(1200px, calc(100% - 48px)); margin:0 auto; }
.packages-heading { margin-bottom:65px; }
.packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
.package-card { position:relative; min-height:540px; display:flex; flex-direction:column; padding:34px; border:1px solid rgba(255,255,255,.1); background:#0d1319; transition:transform .25s ease,border-color .25s ease,background .25s ease; }
.package-card:hover { transform:translateY(-4px); border-color:rgba(var(--brand-rgb),.35); background:#111a22; }
.package-card-featured { border-color:rgba(var(--brand-rgb),.5); box-shadow:inset 0 3px 0 var(--brand); }
.package-badge { position:absolute; top:20px; right:20px; padding:6px 9px; border-radius:5px; background:rgba(var(--brand-rgb),.12); color:var(--brand); font-size:.65rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
.package-label { display:block; margin-bottom:34px; color:var(--brand); font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.package-card h3 { margin:0 0 14px; color:#fff; font-size:1.55rem; letter-spacing:-.03em; }
.package-intro { min-height:78px; margin:0; color:#929aa1; font-size:.9rem; line-height:1.7; }
.package-card ul { list-style:none; padding:26px 0 0; margin:26px 0 0; border-top:1px solid rgba(255,255,255,.08); }
.package-card li { position:relative; padding:9px 0 9px 22px; color:#c2c8cd; font-size:.88rem; }
.package-card li::before { content:'✓'; position:absolute; left:0; color:var(--brand); font-weight:700; }
.package-link { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:32px; color:#fff; font-size:.9rem; font-weight:700; }
.package-link span { color:var(--brand); transition:transform .2s ease; }
.package-card:hover .package-link span { transform:translateX(4px); }
.packages-note { margin:28px 0 0; color:#707b84; font-size:.8rem; text-align:center; }
@media (max-width:1000px) { .process-heading-row,.packages-heading-row { grid-template-columns:1fr; gap:25px; } .process-grid { grid-template-columns:repeat(2,1fr); } .packages-grid { grid-template-columns:1fr; } .package-card { min-height:auto; } .package-intro { min-height:0; } }
@media (max-width:600px) { .process-section,.packages-section { padding:90px 0; } .process-container,.packages-container { width:calc(100% - 32px); } .process-heading,.packages-heading { margin-bottom:45px; } .process-grid { grid-template-columns:1fr; } .process-step { min-height:240px; } .process-number { margin-bottom:45px; } .package-card { padding:28px; } }


/* =====================================================
   FINAL CTA
===================================================== */
.final-cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #10161d;
    border-top: 1px solid rgba(255,255,255,.06);
}
.final-cta-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-rgb),.13), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
}
.final-cta-container {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
}
.final-cta-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.9rem, 4.8vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}
.final-cta-copy h2 span { color: var(--brand); }
.final-cta-copy p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #929aa1;
    font-size: 1rem;
    line-height: 1.75;
}
.final-cta-button {
    min-width: 255px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--brand);
    color: #081017;
    font-size: .92rem;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}
.final-cta-button:hover { transform: translateY(-2px); background: var(--brand-hover); }
.final-cta-arrow { font-size: 1.15rem; transition: transform .2s ease; }
.final-cta-button:hover .final-cta-arrow { transform: translateX(4px); }

/* =====================================================
   FOOTER
===================================================== */
.site-footer { background:#080c10; border-top:1px solid rgba(255,255,255,.07); }
.footer-container { width:min(1200px, calc(100% - 48px)); margin:0 auto; padding:76px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3, .8fr); gap:70px; padding-bottom:68px; }
.footer-brand { font-size:1.5rem; font-weight:800; letter-spacing:-.04em; }
.footer-brand .footer-digital { color:var(--brand); }
.footer-intro { max-width:300px; margin:18px 0 24px; color:#7f8992; font-size:.9rem; line-height:1.7; }
.footer-email { color:#d8e0e6; font-size:.9rem; transition:color .2s ease; }
.footer-email:hover { color:var(--brand); }
.footer-column h3 { margin:3px 0 20px; color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; }
.footer-links { display:flex; flex-direction:column; align-items:flex-start; gap:11px; }
.footer-links a { color:#7f8992; font-size:.86rem; transition:color .2s ease, transform .2s ease; }
.footer-links a:hover { color:#fff; transform:translateX(2px); }
.footer-links .footer-accent { color:var(--brand); font-weight:700; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:30px; padding-top:26px; border-top:1px solid rgba(255,255,255,.07); color:#59636c; font-size:.75rem; }
.footer-bottom-links, .footer-languages { display:flex; align-items:center; gap:18px; }
.footer-bottom a { transition:color .2s ease; }
.footer-bottom a:hover, .footer-languages a.active { color:#fff; }
.footer-languages a.active { color:var(--brand); font-weight:700; }

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--brand);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-brand img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

@media (max-width:900px) {
    .final-cta-container { grid-template-columns:1fr; gap:38px; align-items:start; }
    .final-cta-button { width:max-content; }
    .footer-grid { grid-template-columns:1.2fr 1fr 1fr; gap:45px; }
    .footer-main { grid-column:1 / -1; }
}
@media (max-width:600px) {
    .final-cta-section { padding:90px 0; }
    .final-cta-container, .footer-container { width:calc(100% - 32px); }
    .final-cta-button { width:100%; }
    .footer-container { padding-top:58px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:42px 28px; padding-bottom:48px; }
    .footer-main { grid-column:1 / -1; }
    .footer-bottom { align-items:flex-start; flex-direction:column; gap:16px; }
    .footer-bottom-links { flex-wrap:wrap; gap:10px 16px; }
}


/* Desktop services dropdown - click/touch open state */
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown.open .nav-chevron {
    color: var(--brand);
    transform: rotate(180deg);
}


.footer-links .footer-contact-text {
    color: #8b9aaa;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}


/* Font Awesome card icons */
.service-card-top {
    justify-content: flex-end;
}

.service-icon i,
.feature-icon i,
.process-icon i {
    display: block;
    line-height: 1;
}

.feature-icon,
.process-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--brand-rgb), 0.45);
    border-radius: 8px;
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.06);
    font-size: 1rem;
}

.feature-icon {
    margin-bottom: 52px;
}

.process-icon {
    margin-bottom: 72px;
}

@media (max-width: 600px) {
    .feature-icon {
        margin-bottom: 38px;
    }

    .process-icon {
        margin-bottom: 45px;
    }
}


/* Service cards: remove obsolete top-right arrow row */
.service-card-top {
    display: none;
}


/* Circular Font Awesome arrows */
.circle-arrow {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border: 1px solid rgba(var(--brand-rgb), 0.45);
    border-radius: 50%;
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--brand);
    font-size: 0.66rem;
    line-height: 1;
    vertical-align: middle;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.circle-arrow-small {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    margin-left: 8px;
    font-size: 0.58rem;
}

.circle-arrow i {
    line-height: 1;
}

a:hover .circle-arrow {
    transform: translateX(2px);
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0f14;
}

/* Keep text + circular arrow aligned in existing CTA/link components. */
.package-link,
.footer-accent,
.service-link {
    display: flex;
    align-items: center;
}

.package-link {
    justify-content: space-between;
}

.service-link {
    width: fit-content;
}

/* Disable the old arrow-specific movement rule. */
.package-card:hover .package-link .circle-arrow,
.final-cta-button:hover .circle-arrow {
    transform: translateX(2px);
}

/* Primary CTA arrow visibility - verified override */
.button.button-primary .circle-arrow {
    background: rgba(11, 15, 20, 0.14);
    border-color: rgba(11, 15, 20, 0.28);
    color: #0b0f14;
}

.button.button-primary .circle-arrow i {
    color: #0b0f14;
}

.button.button-primary:hover .circle-arrow {
    background: rgba(11, 15, 20, 0.22);
    border-color: rgba(11, 15, 20, 0.36);
    color: #0b0f14;
}

.button.button-primary:hover .circle-arrow i {
    color: #0b0f14;
}

/* =====================================================
   CIRCULAR CTA ARROWS — FINAL INTERACTION FIX
   ===================================================== */

/* Give every arrow icon its own transition too. */
.circle-arrow i {
    color: inherit;
    transition: transform .22s ease, color .22s ease;
}

/* Hero primary CTA: visible at rest, animate from the WHOLE button. */
.button.button-primary .circle-arrow {
    background: rgba(11, 15, 20, 0.14);
    border-color: rgba(11, 15, 20, 0.28);
    color: #0b0f14;
    transform: translateX(0);
}

.button.button-primary:hover .circle-arrow {
    background: rgba(11, 15, 20, 0.22);
    border-color: rgba(11, 15, 20, 0.36);
    color: #0b0f14;
    transform: translateX(4px);
}

.button.button-primary:hover .circle-arrow i {
    transform: translateX(1px);
}

/* Package cards: hovering ANYWHERE on the card animates its arrow. */
.package-card .package-link .circle-arrow {
    transform: translateX(0);
}

.package-card:hover .package-link .circle-arrow {
    transform: translateX(4px);
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0f14;
}

.package-card:hover .package-link .circle-arrow i {
    transform: translateX(1px);
}

/* Final CTA: visible before hover + animate from the WHOLE button. */
.final-cta-button .circle-arrow {
    background: rgba(11, 15, 20, 0.14);
    border-color: rgba(11, 15, 20, 0.28);
    color: #0b0f14;
    transform: translateX(0);
}

.final-cta-button .circle-arrow i {
    color: #0b0f14;
}

.final-cta-button:hover .circle-arrow {
    background: rgba(11, 15, 20, 0.22);
    border-color: rgba(11, 15, 20, 0.36);
    color: #0b0f14;
    transform: translateX(4px);
}

.final-cta-button:hover .circle-arrow i {
    transform: translateX(1px);
}

/* =====================================================
   CTA BUTTON HOVER COLOUR — VERIFIED FINAL OVERRIDE
   ===================================================== */
.button.button-primary,
.final-cta-button {
    transition: background-color .22s ease, border-color .22s ease,
                color .22s ease, transform .22s ease !important;
}

.button.button-primary:hover,
.button.button-primary:focus-visible,
.final-cta-button:hover,
.final-cta-button:focus-visible {
    background: var(--brand-hover) !important;
    background-color: var(--brand-hover) !important;
    border-color: var(--brand-hover) !important;
    color: #0b0f14 !important;
}

/* Arrow remains visible and moves with whole-button hover. */
.button.button-primary:hover .circle-arrow,
.button.button-primary:focus-visible .circle-arrow,
.final-cta-button:hover .circle-arrow,
.final-cta-button:focus-visible .circle-arrow {
    background: rgba(11, 15, 20, .22) !important;
    border-color: rgba(11, 15, 20, .38) !important;
    color: #0b0f14 !important;
    transform: translateX(4px) !important;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page {
    background: #0b0f14;
}

.contact-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.contact-hero {
    padding: 110px 0 85px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.contact-heading-row {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.contact-heading-row h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.contact-heading-row h1 span {
    color: var(--brand);
}

.contact-heading-row p {
    max-width: 480px;
    margin: 0 0 7px;
    color: #929aa1;
    font-size: 1rem;
    line-height: 1.75;
}

.contact-content {
    padding: 90px 0 130px;
    background: #10161d;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
    gap: 24px;
    align-items: stretch;
}

.contact-form-card,
.contact-info-card {
    border: 1px solid rgba(255,255,255,.10);
    background: #0d1319;
}

.contact-form-card {
    padding: 42px;
}

.contact-info-card {
    padding: 38px;
    height: 100%;
}

.contact-card-heading {
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-card-heading > span,
.contact-info-label {
    display: block;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-card-heading h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 1.65rem;
    letter-spacing: -.03em;
}

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

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: #c8cdd2;
    font-size: .82rem;
    font-weight: 600;
}

.form-field label span {
    color: var(--brand);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    outline: none;
    background: #101820;
    color: #fff;
    font: inherit;
    font-size: .9rem;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-field input,
.form-field select {
    height: 50px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 165px;
    padding: 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(var(--brand-rgb), .7);
    background: #121c25;
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .08);
}

.form-field select {
    appearance: none;
    cursor: pointer;
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "⌄";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--brand);
    pointer-events: none;
}

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 6px;
}

.contact-form-bottom p {
    margin: 0;
    color: #6f7b85;
    font-size: .78rem;
}

.contact-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #081017;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.contact-submit:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item .contact-info-label {
    margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item > span:last-child {
    color: #c4cbd1;
    font-size: .9rem;
}

.contact-info-item a {
    transition: color .2s ease;
}

.contact-info-item a:hover {
    color: var(--brand);
}

.contact-hours {
    margin-top: 32px;
}

.contact-hours > .contact-info-label {
    margin-bottom: 13px;
}

.contact-hours > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 7px 0;
    color: #7f8992;
    font-size: .84rem;
}

.contact-hours strong {
    color: #b8c0c7;
    font-weight: 500;
}

.contact-note {
    margin: 30px 0 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #6f7b85;
    font-size: .8rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-heading-row,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-heading-row p {
        max-width: 620px;
    }
}

@media (max-width: 600px) {
    .contact-container {
        width: calc(100% - 32px);
    }

    .contact-hero {
        padding: 75px 0 65px;
    }

    .contact-content {
        padding: 60px 0 90px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 26px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit {
        justify-content: space-between;
        width: 100%;
    }
}

/* =====================================================
   CONTACT PAGE — VISUAL REFINEMENTS
   ===================================================== */

/* Bring the actual contact form higher into view. */
.contact-hero {
    padding-top: 82px;
    padding-bottom: 64px;
}

.contact-content {
    padding-top: 66px;
}

/* Slightly improve form readability. */
.form-field label {
    font-size: .86rem;
}

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

/* Required markers consistently use the brand colour. */
.form-field label span {
    color: var(--brand);
}

/* Give the information panel a restrained KNG Digital accent. */
.contact-info-card {
    position: relative;
    overflow: hidden;
    border-top-color: rgba(var(--brand-rgb), .55);
    box-shadow: inset 0 2px 0 rgba(var(--brand-rgb), .65);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-rgb), .10), transparent 68%);
    pointer-events: none;
}

/* Keep card content above the subtle glow. */
.contact-info-card > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .contact-hero {
        padding-top: 62px;
        padding-bottom: 52px;
    }

    .contact-content {
        padding-top: 50px;
    }
}

/* =====================================================
   FOOTER CTA ARROW — FIX
   ===================================================== */
.footer-links .footer-accent .circle-arrow {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 8px !important;
    border: 1px solid rgba(var(--brand-rgb), .45) !important;
    border-radius: 50% !important;
    background: rgba(var(--brand-rgb), .08) !important;
    color: var(--brand) !important;
    font-size: .58rem !important;
}

.footer-links .footer-accent .circle-arrow i {
    display: inline-block !important;
    color: var(--brand) !important;
    font-size: inherit !important;
    line-height: 1 !important;
}

.footer-links .footer-accent:hover .circle-arrow {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #0b0f14 !important;
    transform: translateX(3px) !important;
}

.footer-links .footer-accent:hover .circle-arrow i {
    color: #0b0f14 !important;
}

/* =====================================================
   CONTACT PAGE — FINAL FORM PROPORTIONS
   ===================================================== */

/* Reduce the oversized message field. */
.form-field textarea {
    min-height: 125px;
}

/* Give the information card slightly more vertical balance
   without artificially forcing both cards to equal height. */
.contact-info-item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact-hours {
    margin-top: 36px;
}

.contact-hours > div {
    padding-top: 9px;
    padding-bottom: 9px;
}

.contact-note {
    margin-top: 34px;
    padding-top: 28px;
}

@media (max-width: 600px) {
    .form-field textarea {
        min-height: 135px;
    }
}

/* Contact submit: use the site's shared circular CTA arrow component. */
.contact-submit .circle-arrow {
    background: rgba(11, 15, 20, 0.14);
    border-color: rgba(11, 15, 20, 0.28);
    color: #0b0f14;
}

.contact-submit .circle-arrow i {
    color: #0b0f14;
}

.contact-submit:hover .circle-arrow {
    background: rgba(11, 15, 20, 0.22);
    border-color: rgba(11, 15, 20, 0.36);
    color: #0b0f14;
    transform: translateX(4px);
}

.contact-submit:hover .circle-arrow i {
    color: #0b0f14;
    transform: translateX(1px);
}



/* =====================================================
   CONTACT FORM — PRIVACY CONSENT + HONEYPOT
   ===================================================== */
.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: fit-content;
    color: #8f99a2;
    font-size: .8rem;
    line-height: 1.55;
    cursor: pointer;
}
.privacy-consent > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.privacy-check {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    background: #101820;
    color: transparent;
    font-size: .62rem;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.privacy-consent:hover .privacy-check { border-color: rgba(var(--brand-rgb), .65); }
.privacy-consent > input:checked + .privacy-check {
    border-color: var(--brand);
    background: var(--brand);
    color: #081017;
}
.privacy-consent > input:focus-visible + .privacy-check {
    outline: 2px solid rgba(var(--brand-rgb), .45);
    outline-offset: 3px;
}
.privacy-consent-text a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(var(--brand-rgb), .45);
    text-underline-offset: 3px;
}
.privacy-consent-text a:hover {
    color: var(--brand-hover);
    text-decoration-color: var(--brand-hover);
}
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-page {
    background: #0b0f14;
}

.about-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.about-hero {
    padding: 92px 0 96px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 90px;
    align-items: end;
}

.about-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.about-hero h1 span,
.about-intro-heading h2 span,
.about-section-heading h2 span,
.about-approach-copy h2 span {
    color: var(--brand);
}

.about-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 5px;
}

.about-hero-copy p {
    margin: 0;
    color: #929aa1;
    font-size: 1rem;
    line-height: 1.75;
}

.about-intro-section {
    padding: 120px 0;
    background: #10161d;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
    align-items: start;
}

.about-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.about-intro-heading h2,
.about-section-heading h2,
.about-approach-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.45rem, 3.8vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.about-intro-copy {
    padding-top: 4px;
}

.about-intro-copy p,
.about-approach-copy > p {
    margin: 0;
    color: #929aa1;
    font-size: .98rem;
    line-height: 1.8;
}

.about-intro-copy p + p,
.about-approach-copy > p + p {
    margin-top: 20px;
}

.about-values-section {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    background: #0b0f14;
}

.about-section-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.about-section-heading > p {
    max-width: 460px;
    margin: 0 0 5px;
    color: #929aa1;
    font-size: .95rem;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.about-value-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: #0d1319;
    transition: background .25s ease;
}

.about-value-card:hover {
    background: #111a22;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 62px;
    border: 1px solid rgba(var(--brand-rgb), .4);
    border-radius: 8px;
    background: rgba(var(--brand-rgb), .07);
    color: var(--brand);
    font-size: 1rem;
}

.about-value-card h3 {
    margin: auto 0 12px;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}

.about-value-card p {
    margin: 0;
    color: #8f969d;
    font-size: .88rem;
    line-height: 1.7;
}

.about-approach-section {
    padding: 120px 0;
    background: #10161d;
    border-top: 1px solid rgba(255,255,255,.06);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 110px;
    align-items: start;
}

.about-approach-copy > p:first-of-type {
    margin-top: 30px;
}

.about-principles {
    border-top: 1px solid rgba(255,255,255,.1);
}

.about-principle {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.about-principle > span {
    color: var(--brand);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding-top: 3px;
}

.about-principle strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 1rem;
}

.about-principle p {
    max-width: 520px;
    margin: 0;
    color: #818b94;
    font-size: .86rem;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .about-hero-grid,
    .about-intro-grid,
    .about-section-heading,
    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

@media (max-width: 600px) {
    .about-container {
        width: calc(100% - 32px);
    }

    .about-hero {
        padding: 65px 0 72px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-intro-section,
    .about-values-section,
    .about-approach-section {
        padding: 90px 0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: 260px;
        padding: 28px;
    }

    .about-value-icon {
        margin-bottom: 45px;
    }
}

/* =====================================================
   PORTFOLIO PAGE
   ===================================================== */
.portfolio-page { background: #0b0f14; }

.portfolio-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.portfolio-hero {
    padding: 92px 0 96px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.portfolio-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px;
    align-items: end;
}

.portfolio-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.portfolio-hero h1 span,
.portfolio-capabilities-grid h2 span { color: var(--brand); }

.portfolio-hero-grid > p {
    max-width: 460px;
    margin: 0 0 5px;
    color: #929aa1;
    font-size: 1rem;
    line-height: 1.75;
}

.portfolio-projects-section {
    padding: 100px 0 125px;
    background: #10161d;
}

.portfolio-project {
    min-width: 0;
}

.portfolio-project-featured {
    margin-bottom: 72px;
}

.portfolio-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.portfolio-project-visual {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background: #0b0f14;
    transition: border-color .25s ease, transform .25s ease;
}

.portfolio-project-featured .portfolio-project-visual {
    aspect-ratio: 2.05 / 1;
}

.portfolio-project:hover .portfolio-project-visual {
    border-color: rgba(var(--brand-rgb), .35);
}

.portfolio-open {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(11,15,20,.8);
    color: #fff;
    font-size: .9rem;
    backdrop-filter: blur(10px);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.portfolio-project:hover .portfolio-open {
    background: var(--brand);
    color: #081017;
    transform: translate(2px,-2px);
}

.portfolio-project-info {
    display: grid;
    grid-template-columns: 1fr minmax(260px, .75fr);
    gap: 40px;
    align-items: end;
    padding: 24px 2px 0;
}

.portfolio-project-type,
.portfolio-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--brand);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
}

.portfolio-project-info h2 {
    margin: 0;
    color: #fff;
    font-size: 1.55rem;
    letter-spacing: -.03em;
}

.portfolio-project-info > p {
    margin: 0;
    color: #7f8992;
    font-size: .86rem;
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.portfolio-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 5px;
    color: #7f8992;
    background: rgba(255,255,255,.02);
    font-size: .68rem;
    font-weight: 600;
}

/* CAEDRON preview */
.portfolio-browser {
    position: absolute;
    inset: 7% 7% -8%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px 12px 0 0;
    background: #0d1319;
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
    transform: perspective(1300px) rotateX(2deg);
    transition: transform .4s ease;
}

.portfolio-project-featured:hover .portfolio-browser {
    transform: perspective(1300px) rotateX(0deg) translateY(-3px);
}

.portfolio-browser-bar {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #151c23;
}

.portfolio-browser-dots { display: flex; gap: 6px; }
.portfolio-browser-dots span {
    width: 7px; height: 7px; border-radius: 50%; background: #3b4650;
}

.portfolio-browser-url {
    margin: 0 auto;
    padding-right: 45px;
    color: #596672;
    font-size: .62rem;
}

.portfolio-caedron-preview {
    position: relative;
    height: calc(100% - 42px);
    overflow: hidden;
    background:
        radial-gradient(circle at 65% 35%, rgba(var(--brand-rgb),.12), transparent 25%),
        linear-gradient(145deg,#111820,#080c10);
}

.portfolio-map-grid {
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 42px 42px;
}

.portfolio-map-panel {
    position: absolute;
    top: 24px; left: 24px;
    width: 160px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 7px;
    background: rgba(8,12,16,.8);
}

.portfolio-map-panel span {
    display: block;
    height: 6px;
    margin: 9px 0;
    border-radius: 20px;
    background: #28333c;
}
.portfolio-map-panel span:first-child { width: 60%; background: var(--brand); }
.portfolio-map-panel span:nth-child(2) { width: 90%; }
.portfolio-map-panel span:nth-child(3) { width: 72%; }

.portfolio-map-marker {
    position: absolute;
    color: var(--brand);
    filter: drop-shadow(0 0 10px rgba(var(--brand-rgb),.5));
    font-size: 1.3rem;
}
.marker-one { left: 48%; top: 38%; }
.marker-two { left: 68%; top: 58%; }
.marker-three { left: 78%; top: 27%; }

.portfolio-caedron-wordmark {
    position: absolute;
    left: 26px;
    bottom: 24px;
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .16em;
}

/* Generic project previews */
.portfolio-project-placeholder {
    background:
        radial-gradient(circle at 70% 20%, rgba(var(--brand-rgb),.11), transparent 35%),
        #0b0f14;
}

.portfolio-site-preview,
.portfolio-shop-preview {
    position: absolute;
    inset: 10% 8% -7%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px 9px 0 0;
    background: #10171d;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.portfolio-site-nav,
.portfolio-shop-header {
    height: 42px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #151d24;
}

.portfolio-site-copy { padding: 48px 38px; }
.portfolio-site-copy span { display: block; border-radius: 20px; }
.portfolio-site-eyebrow { width: 75px; height: 5px; margin-bottom: 18px; background: var(--brand); }
.portfolio-site-title { width: 72%; height: 12px; margin-bottom: 8px; background: #dce2e6; }
.portfolio-site-title.short { width: 52%; }
.portfolio-site-text { width: 64%; height: 6px; margin-top: 25px; background: #36414a; }
.portfolio-site-button { width: 92px; height: 27px; margin-top: 25px; background: var(--brand); border-radius: 5px !important; }

.portfolio-shop-products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    padding: 34px 28px 18px;
}
.portfolio-shop-products span {
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.07);
    background: linear-gradient(145deg,#19232c,#0c1116);
}
.portfolio-shop-lines { padding: 0 28px; }
.portfolio-shop-lines span {
    display: block;
    width: 55%;
    height: 6px;
    margin: 8px 0;
    border-radius: 20px;
    background: #34404a;
}
.portfolio-shop-lines span:first-child { width: 32%; background: var(--brand); }

.portfolio-capabilities-section {
    padding: 110px 0;
    background: #0b0f14;
    border-top: 1px solid rgba(255,255,255,.06);
}

.portfolio-capabilities-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.portfolio-capabilities-grid h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.portfolio-capabilities-grid > p {
    max-width: 500px;
    margin: 0 0 4px;
    color: #929aa1;
    font-size: .95rem;
    line-height: 1.8;
}

@media (max-width: 1000px) {
    .portfolio-hero-grid,
    .portfolio-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portfolio-project-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 700px) {
    .portfolio-container { width: calc(100% - 32px); }
    .portfolio-hero { padding: 65px 0 72px; }
    .portfolio-hero h1 { font-size: 3rem; }
    .portfolio-projects-section { padding: 72px 0 90px; }
    .portfolio-project-featured { margin-bottom: 52px; }
    .portfolio-project-grid { grid-template-columns: 1fr; gap: 52px; }
    .portfolio-project-featured .portfolio-project-visual,
    .portfolio-project-visual { aspect-ratio: 16 / 11; }
    .portfolio-browser { inset: 9% 5% -6%; }
    .portfolio-map-panel { width: 120px; }
    .portfolio-capabilities-section { padding: 90px 0; }
}

/* =====================================================
   LIVE PORTFOLIO PREVIEWS — FIXED
   ===================================================== */

/* The iframe is clipped by the tile itself. */
.portfolio-live-preview {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/*
   Render a normal 1440px desktop site, then scale it into the tile.
   JS below writes the exact scale into --preview-scale, so this does not
   depend on container-query math.
*/
.portfolio-live-preview .portfolio-iframe-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.portfolio-live-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 900px;
    max-width: none;
    border: 0;
    margin: 0;
    transform: scale(var(--preview-scale, .5));
    transform-origin: 0 0;
    pointer-events: none;
    background: #0b0f14;
}

.portfolio-live-preview .portfolio-open {
    z-index: 10;
    pointer-events: auto;
}


.portfolio-embed-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    text-align: center;
    background: #111319;
    color: #fff;
}

.portfolio-embed-fallback strong {
    font-size: 1rem;
}

.portfolio-embed-fallback span {
    color: #7f8992;
    font-size: .75rem;
}

/* =====================================================
   STATIC PORTFOLIO SCREENSHOTS
   ===================================================== */

.portfolio-screenshot-preview {
    position: relative;
    overflow: hidden;
}

.portfolio-screenshot-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s ease;
}

.portfolio-project:hover .portfolio-screenshot-preview img {
    transform: scale(1.015);
}

.portfolio-screenshot-preview .portfolio-open {
    z-index: 5;
}

/* =====================================================
   SECTION EYEBROWS — GLOBAL CONSISTENCY
   ===================================================== */

/* Same layout + grey text everywhere */
.portfolio-page .section-eyebrow,
.portfolio-page .portfolio-kicker,
.about-page .section-eyebrow,
.about-page .about-kicker {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #bdbdbd;

    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Add the blue dot to subtitles that don't already contain one */
.portfolio-page .portfolio-kicker::before,
.about-page .about-kicker::before {
    content: "";

    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--brand);

    box-shadow: 0 0 14px rgba(var(--brand-rgb), 0.7);
}

/* =====================================================
   FINAL CTA — PAGE BACKGROUNDS
   ===================================================== */

/* Home + About */
.final-cta-section {
    background: #0b0f14;
}

/* Portfolio only */
.portfolio-page .final-cta-section {
    background: #10161d;
}


/* =====================================================
   DIENSTEN PAGE
   ===================================================== */

.services-page {
    background: #0b0f14;
}

.services-page-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* Hero */
.services-page-hero {
    padding: 92px 0 105px;
    background: #0b0f14;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-page-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px;
    align-items: end;
}

.services-page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.2rem);
    line-height: .99;
    letter-spacing: -.055em;
}

.services-page-hero h1 span {
    color: var(--brand);
}

.services-page-hero-grid > p {
    max-width: 480px;
    margin: 0 0 5px;
    color: #929aa1;
    font-size: 1rem;
    line-height: 1.8;
}

/* Intro */
.services-page-intro {
    padding: 105px 0;
    background: #0b0f14;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-page-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.services-page-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.services-page-intro h2 span {
    color: var(--brand);
}

.services-page-intro-grid > p {
    max-width: 500px;
    margin: 0 0 4px;
    color: #929aa1;
    font-size: .98rem;
    line-height: 1.8;
}

/* Individual service sections */
.services-page-service {
    padding: 115px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-page-service-light {
    background: #10161d;
}

.services-page-service-dark {
    background: #0b0f14;
}

.services-page-service-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 110px;
    align-items: start;
}

.services-page-service-heading {
    position: relative;
}

.services-page-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border: 1px solid rgba(var(--brand-rgb), .38);
    border-radius: 9px;
    background: rgba(var(--brand-rgb), .08);
    color: var(--brand);
    font-size: 1.05rem;
}

.services-page-number {
    display: block;
    margin-bottom: 9px;
    color: #69747e;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.services-page-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #bdbdbd;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.services-page-label::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 14px rgba(var(--brand-rgb), .7);
}

.services-page-service-heading h2 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.services-page-service-heading h2 span {
    color: var(--brand);
}

.services-page-service-content {
    padding-top: 94px;
}

.services-page-service-content p {
    margin: 0 0 20px;
    color: #8f989f;
    font-size: .94rem;
    line-height: 1.8;
}

.services-page-service-content .services-page-lead {
    color: #c4cbd0;
    font-size: 1.03rem;
}

.services-page-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.services-page-list li {
    position: relative;
    padding: 9px 0 9px 23px;
    color: #aeb6bc;
    font-size: .88rem;
}

.services-page-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.services-page-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    transition: color .2s ease;
}

.services-page-link:hover {
    color: var(--brand);
}

/* Approach */
.services-page-approach {
    padding: 120px 0;
    background: #10161d;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-page-approach-heading {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 62px;
}

.services-page-approach-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.services-page-approach-heading h2 span {
    color: var(--brand);
}

.services-page-approach-heading > p {
    max-width: 500px;
    margin: 0 0 4px;
    color: #929aa1;
    font-size: .96rem;
    line-height: 1.8;
}

.services-page-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.services-page-approach-grid article {
    min-height: 285px;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: #0d1319;
}

.services-page-approach-grid article > span {
    display: block;
    margin-bottom: 70px;
    color: var(--brand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.services-page-approach-grid h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 1.15rem;
}

.services-page-approach-grid p {
    margin: 0;
    color: #8f969d;
    font-size: .88rem;
    line-height: 1.7;
}

/* Keep Diensten page subtitles consistent with Portfolio/About */
.services-page .section-eyebrow {
    color: #bdbdbd;
}

/* Final CTA stays on the darker background, matching Home/About */
.services-page .final-cta-section {
    background: #0b0f14;
}

/* Responsive */
@media (max-width: 1000px) {
    .services-page-hero-grid,
    .services-page-intro-grid,
    .services-page-service-grid,
    .services-page-approach-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .services-page-service-content {
        padding-top: 0;
    }

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

@media (max-width: 700px) {
    .services-page-container {
        width: calc(100% - 32px);
    }

    .services-page-hero {
        padding: 65px 0 75px;
    }

    .services-page-hero h1 {
        font-size: 3rem;
    }

    .services-page-intro,
    .services-page-service,
    .services-page-approach {
        padding: 82px 0;
    }

    .services-page-icon {
        margin-bottom: 32px;
    }

    .services-page-approach-grid {
        grid-template-columns: 1fr;
    }

    .services-page-approach-grid article {
        min-height: 230px;
    }

    .services-page-approach-grid article > span {
        margin-bottom: 45px;
    }
}


/* =====================================================
   DIENSTEN PAGE V2 — COMPACT REBUILD
   Alternation: dark / light / dark / light / dark
   ===================================================== */
.services-page-v2 .services-page-hero { background:#0b0f14; }
.services-page-v2 .services-page-intro { background:#10161d; padding:100px 0; }
.services-page-v2 .services-page-approach { background:#10161d; }
.services-page-v2 .final-cta-section { background:#0b0f14; }

.services-overview-section {
    padding: 105px 0 115px;
    background: #0b0f14;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.services-overview-heading { margin-bottom:55px; }
.services-overview-heading-grid {
    display:grid; grid-template-columns:1.15fr .85fr; gap:90px; align-items:end;
}
.services-overview-heading h2 {
    margin:0; color:#fff; font-size:clamp(2.7rem,4vw,4.3rem); line-height:1.05; letter-spacing:-.045em;
}
.services-overview-heading h2 span { color:var(--brand); }
.services-overview-heading-grid > p {
    max-width:500px; margin:0 0 4px; color:#929aa1; font-size:.98rem; line-height:1.8;
}
.services-overview-grid {
    display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px;
}
.services-overview-card {
    position:relative; min-height:300px; padding:30px;
    display:flex; flex-direction:column;
    border:1px solid rgba(255,255,255,.1); border-radius:10px;
    background:#0f151c; overflow:hidden;
    transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
.services-overview-card::before {
    content:""; position:absolute; left:0; top:0; width:3px; height:0; background:var(--brand); transition:height .25s ease;
}
.services-overview-card:hover { transform:translateY(-3px); background:#121a22; border-color:rgba(var(--brand-rgb),.32); }
.services-overview-card:hover::before { height:100%; }
.services-overview-featured { grid-column:1/-1; min-height:285px; }
.services-overview-card-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
.services-overview-icon {
    width:44px; height:44px; display:grid; place-items:center;
    border:1px solid rgba(var(--brand-rgb),.35); border-radius:8px;
    background:rgba(var(--brand-rgb),.07); color:var(--brand); font-size:.92rem;
}
.services-overview-number { color:#69747e; font-size:.68rem; font-weight:700; letter-spacing:.1em; }
.services-overview-copy { max-width:620px; }
.services-overview-label {
    display:flex; align-items:center; gap:9px; margin-bottom:13px;
    color:#bdbdbd; font-size:.75rem; font-weight:600; letter-spacing:.07em; text-transform:uppercase;
}
.services-overview-label::before {
    content:""; width:7px; height:7px; flex:0 0 7px; border-radius:50%; background:var(--brand); box-shadow:0 0 14px rgba(var(--brand-rgb),.7);
}
.services-overview-card h3 { margin:0; color:#fff; font-size:clamp(1.55rem,2.3vw,2.25rem); line-height:1.08; letter-spacing:-.035em; }
.services-overview-card h3 span { color:var(--brand); }
.services-overview-card p { max-width:590px; margin:16px 0 0; color:#8f989f; font-size:.9rem; line-height:1.7; }
.services-overview-link {
    width:fit-content; display:inline-flex; align-items:center; margin-top:auto; padding-top:24px;
    color:#fff; font-size:.82rem; font-weight:700; transition:color .2s ease;
}
.services-overview-card:hover .services-overview-link { color:var(--brand); }
.services-overview-card:hover .circle-arrow { transform:translateX(2px); background:var(--brand); border-color:var(--brand); color:#0b0f14; }

.services-page-v2 .services-page-approach-grid article { min-height:245px; }
.services-page-v2 .services-page-approach-grid article > span { margin-bottom:48px; }

@media (max-width:1000px) {
    .services-overview-heading-grid { grid-template-columns:1fr; gap:25px; }
}
@media (max-width:700px) {
    .services-page-v2 .services-page-intro,
    .services-overview-section,
    .services-page-v2 .services-page-approach { padding:82px 0; }
    .services-overview-grid { grid-template-columns:1fr; }
    .services-overview-featured { grid-column:auto; }
    .services-overview-card, .services-overview-featured { min-height:285px; padding:25px; }
}


/* =====================================================
   WEBDESIGN DETAIL PAGE
   ===================================================== */
.webdesign-page { background:#0b0f14; }

.webdesign-page .section-eyebrow {
    color:#bdbdbd;
}

.webdesign-hero {
    padding:110px 0 120px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webdesign-container {
    width:min(1200px,calc(100% - 48px));
    margin:0 auto;
}
.webdesign-hero-grid {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
}
.webdesign-hero h1 {
    margin:0;
    color:#fff;
    font-size:clamp(3.4rem,5vw,5.5rem);
    line-height:.98;
    letter-spacing:-.055em;
}
.webdesign-hero h1 span { color:var(--brand); }
.webdesign-hero-copy {
    max-width:510px;
    margin:0 0 5px;
}
.webdesign-hero-copy p {
    margin:0;
    color:#929aa1;
    font-size:1rem;
    line-height:1.8;
}
.webdesign-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

/* Light intro */
.webdesign-intro {
    padding:100px 0;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webdesign-intro-grid {
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:90px;
    align-items:end;
}
.webdesign-intro h2,
.webdesign-features-heading h2,
.webdesign-process-heading h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}
.webdesign-intro h2 span,
.webdesign-features-heading h2 span,
.webdesign-process-heading h2 span {
    color:var(--brand);
}
.webdesign-intro-copy {
    max-width:520px;
}
.webdesign-intro-copy p {
    margin:0;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}
.webdesign-intro-copy p + p { margin-top:18px; }

/* Dark feature block */
.webdesign-features {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webdesign-features-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
    margin-bottom:55px;
}
.webdesign-features-heading > div > .section-eyebrow {
    margin-bottom:22px;
}
.webdesign-features-heading > p {
    max-width:500px;
    margin:0 0 4px;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}
.webdesign-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}
.webdesign-feature {
    min-height:255px;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}
.webdesign-feature-icon {
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:45px;
    border:1px solid rgba(var(--brand-rgb),.35);
    border-radius:8px;
    background:rgba(var(--brand-rgb),.07);
    color:var(--brand);
    font-size:.9rem;
}
.webdesign-feature h3 {
    margin:0 0 11px;
    color:#fff;
    font-size:1.08rem;
}
.webdesign-feature p {
    margin:0;
    color:#8f989f;
    font-size:.88rem;
    line-height:1.7;
}

/* Light scope */
.webdesign-scope {
    padding:105px 0 115px;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webdesign-scope-grid {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:100px;
    align-items:start;
}
.webdesign-scope-copy h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}
.webdesign-scope-copy h2 span { color:var(--brand); }
.webdesign-scope-copy > p {
    max-width:480px;
    margin:25px 0 0;
    color:#929aa1;
    font-size:.96rem;
    line-height:1.8;
}
.webdesign-scope-list {
    border-top:1px solid rgba(255,255,255,.1);
}
.webdesign-scope-item {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}
.webdesign-scope-item > span {
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}
.webdesign-scope-item h3 {
    margin:0 0 6px;
    color:#fff;
    font-size:1rem;
}
.webdesign-scope-item p {
    margin:0;
    color:#87919a;
    font-size:.87rem;
    line-height:1.65;
}

/* Dark process */
.webdesign-process {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webdesign-process-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
    margin-bottom:55px;
}
.webdesign-process-heading > p {
    max-width:500px;
    margin:0 0 4px;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}
.webdesign-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}
.webdesign-process-step {
    min-height:235px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}
.webdesign-process-step > span {
    display:block;
    margin-bottom:55px;
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}
.webdesign-process-step h3 {
    margin:0 0 10px;
    color:#fff;
    font-size:1.05rem;
}
.webdesign-process-step p {
    margin:0;
    color:#8f989f;
    font-size:.87rem;
    line-height:1.7;
}

/* CTA is light on this page to continue the alternation */
.webdesign-page .final-cta-section {
    background:#10161d;
}

@media (max-width:1000px) {
    .webdesign-hero-grid,
    .webdesign-intro-grid,
    .webdesign-features-heading,
    .webdesign-scope-grid,
    .webdesign-process-heading {
        grid-template-columns:1fr;
        gap:35px;
    }
    .webdesign-feature-grid { grid-template-columns:repeat(2,1fr); }
    .webdesign-process-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:700px) {
    .webdesign-container { width:calc(100% - 32px); }
    .webdesign-hero { padding:78px 0 85px; }
    .webdesign-hero h1 { font-size:3rem; }
    .webdesign-intro,
    .webdesign-features,
    .webdesign-scope,
    .webdesign-process { padding:82px 0; }
    .webdesign-feature-grid,
    .webdesign-process-grid { grid-template-columns:1fr; }
    .webdesign-feature,
    .webdesign-process-step { min-height:auto; }
    .webdesign-feature-icon,
    .webdesign-process-step > span { margin-bottom:30px; }
}


/* =====================================================
   WEBAPPLICATIONS DETAIL PAGE
   ===================================================== */
.webapplications-page { background:#0b0f14; }
.webapplications-page .section-eyebrow { color:#bdbdbd; }

.webapplications-hero {
    padding:110px 0 120px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webapplications-container {
    width:min(1200px,calc(100% - 48px));
    margin:0 auto;
}
.webapplications-hero-grid,
.webapplications-intro-grid,
.webapplications-features-heading,
.webapplications-scope-grid,
.webapplications-process-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
}
.webapplications-hero h1 {
    margin:0;
    color:#fff;
    font-size:clamp(3.4rem,5vw,5.5rem);
    line-height:.98;
    letter-spacing:-.055em;
}
.webapplications-hero h1 span,
.webapplications-intro h2 span,
.webapplications-features-heading h2 span,
.webapplications-scope-copy h2 span,
.webapplications-process-heading h2 span { color:var(--brand); }

.webapplications-hero-copy { max-width:510px; margin:0 0 5px; }
.webapplications-hero-copy p,
.webapplications-intro-copy p,
.webapplications-features-heading > p,
.webapplications-scope-copy > p,
.webapplications-process-heading > p {
    margin:0;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}
.webapplications-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.webapplications-intro {
    padding:100px 0;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webapplications-intro h2,
.webapplications-features-heading h2,
.webapplications-scope-copy h2,
.webapplications-process-heading h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}
.webapplications-intro-copy { max-width:520px; }
.webapplications-intro-copy p + p { margin-top:18px; }

.webapplications-features {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webapplications-features-heading { margin-bottom:55px; }
.webapplications-features-heading > div > .section-eyebrow { margin-bottom:22px; }
.webapplications-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}
.webapplications-feature {
    min-height:255px;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}
.webapplications-feature-icon {
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:45px;
    border:1px solid rgba(var(--brand-rgb),.35);
    border-radius:8px;
    background:rgba(var(--brand-rgb),.07);
    color:var(--brand);
    font-size:.9rem;
}
.webapplications-feature h3 {
    margin:0 0 11px;
    color:#fff;
    font-size:1.08rem;
}
.webapplications-feature p {
    margin:0;
    color:#8f989f;
    font-size:.88rem;
    line-height:1.7;
}

.webapplications-scope {
    padding:105px 0 115px;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webapplications-scope-grid {
    grid-template-columns:.9fr 1.1fr;
    align-items:start;
    gap:100px;
}
.webapplications-scope-copy > p { max-width:480px; margin-top:25px; }
.webapplications-scope-list { border-top:1px solid rgba(255,255,255,.1); }
.webapplications-scope-item {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}
.webapplications-scope-item > span {
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}
.webapplications-scope-item h3 {
    margin:0 0 6px;
    color:#fff;
    font-size:1rem;
}
.webapplications-scope-item p {
    margin:0;
    color:#87919a;
    font-size:.87rem;
    line-height:1.65;
}

.webapplications-process {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.webapplications-process-heading { margin-bottom:55px; }
.webapplications-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}
.webapplications-process-step {
    min-height:235px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}
.webapplications-process-step > span {
    display:block;
    margin-bottom:55px;
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}
.webapplications-process-step h3 {
    margin:0 0 10px;
    color:#fff;
    font-size:1.05rem;
}
.webapplications-process-step p {
    margin:0;
    color:#8f989f;
    font-size:.87rem;
    line-height:1.7;
}

.webapplications-page .final-cta-section { background:#10161d; }

@media (max-width:1000px) {
    .webapplications-hero-grid,
    .webapplications-intro-grid,
    .webapplications-features-heading,
    .webapplications-scope-grid,
    .webapplications-process-heading {
        grid-template-columns:1fr;
        gap:35px;
    }
    .webapplications-feature-grid,
    .webapplications-process-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:700px) {
    .webapplications-container { width:calc(100% - 32px); }
    .webapplications-hero { padding:78px 0 85px; }
    .webapplications-hero h1 { font-size:3rem; }
    .webapplications-intro,
    .webapplications-features,
    .webapplications-scope,
    .webapplications-process { padding:82px 0; }
    .webapplications-feature-grid,
    .webapplications-process-grid { grid-template-columns:1fr; }
    .webapplications-feature,
    .webapplications-process-step { min-height:auto; }
    .webapplications-feature-icon,
    .webapplications-process-step > span { margin-bottom:30px; }
}


/* =====================================================
   HOSTING & DOMAINS DETAIL PAGE
   ===================================================== */
.hosting-page { background:#0b0f14; }
.hosting-page .section-eyebrow { color:#bdbdbd; }

.hosting-container {
    width:min(1200px,calc(100% - 48px));
    margin:0 auto;
}

.hosting-hero {
    padding:110px 0 120px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.hosting-hero-grid,
.hosting-intro-grid,
.hosting-features-heading,
.hosting-scope-grid,
.hosting-process-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
}

.hosting-hero h1 {
    margin:0;
    color:#fff;
    font-size:clamp(3.4rem,5vw,5.5rem);
    line-height:.98;
    letter-spacing:-.055em;
}

.hosting-hero h1 span,
.hosting-intro h2 span,
.hosting-features-heading h2 span,
.hosting-scope-copy h2 span,
.hosting-process-heading h2 span {
    color:var(--brand);
}

.hosting-hero-copy {
    max-width:510px;
    margin:0 0 5px;
}

.hosting-hero-copy p,
.hosting-intro-copy p,
.hosting-features-heading > p,
.hosting-scope-copy > p,
.hosting-process-heading > p {
    margin:0;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}

.hosting-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

/* Light intro */
.hosting-intro {
    padding:100px 0;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.hosting-intro h2,
.hosting-features-heading h2,
.hosting-scope-copy h2,
.hosting-process-heading h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}

.hosting-intro-copy {
    max-width:520px;
}

.hosting-intro-copy p + p {
    margin-top:18px;
}

/* Dark features */
.hosting-features {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.hosting-features-heading {
    margin-bottom:55px;
}

.hosting-features-heading > div > .section-eyebrow {
    margin-bottom:22px;
}

.hosting-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.hosting-feature {
    min-height:255px;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.hosting-feature-icon {
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:45px;
    border:1px solid rgba(var(--brand-rgb),.35);
    border-radius:8px;
    background:rgba(var(--brand-rgb),.07);
    color:var(--brand);
    font-size:.9rem;
}

.hosting-feature h3 {
    margin:0 0 11px;
    color:#fff;
    font-size:1.08rem;
}

.hosting-feature p {
    margin:0;
    color:#8f989f;
    font-size:.88rem;
    line-height:1.7;
}

/* Light scope */
.hosting-scope {
    padding:105px 0 115px;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.hosting-scope-grid {
    grid-template-columns:.9fr 1.1fr;
    align-items:start;
    gap:100px;
}

.hosting-scope-copy > p {
    max-width:480px;
    margin-top:25px;
}

.hosting-scope-list {
    border-top:1px solid rgba(255,255,255,.1);
}

.hosting-scope-item {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.hosting-scope-item > span {
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.hosting-scope-item h3 {
    margin:0 0 6px;
    color:#fff;
    font-size:1rem;
}

.hosting-scope-item p {
    margin:0;
    color:#87919a;
    font-size:.87rem;
    line-height:1.65;
}

/* Dark process */
.hosting-process {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.hosting-process-heading {
    margin-bottom:55px;
}

.hosting-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.hosting-process-step {
    min-height:235px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.hosting-process-step > span {
    display:block;
    margin-bottom:55px;
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.hosting-process-step h3 {
    margin:0 0 10px;
    color:#fff;
    font-size:1.05rem;
}

.hosting-process-step p {
    margin:0;
    color:#8f989f;
    font-size:.87rem;
    line-height:1.7;
}

/* Continue alternating backgrounds */
.hosting-page .final-cta-section {
    background:#10161d;
}

@media (max-width:1000px) {
    .hosting-hero-grid,
    .hosting-intro-grid,
    .hosting-features-heading,
    .hosting-scope-grid,
    .hosting-process-heading {
        grid-template-columns:1fr;
        gap:35px;
    }

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

@media (max-width:700px) {
    .hosting-container {
        width:calc(100% - 32px);
    }

    .hosting-hero {
        padding:78px 0 85px;
    }

    .hosting-hero h1 {
        font-size:3rem;
    }

    .hosting-intro,
    .hosting-features,
    .hosting-scope,
    .hosting-process {
        padding:82px 0;
    }

    .hosting-feature-grid,
    .hosting-process-grid {
        grid-template-columns:1fr;
    }

    .hosting-feature,
    .hosting-process-step {
        min-height:auto;
    }

    .hosting-feature-icon,
    .hosting-process-step > span {
        margin-bottom:30px;
    }
}


/* =====================================================
   MAINTENANCE DETAIL PAGE
   ===================================================== */
.maintenance-page { background:#0b0f14; }
.maintenance-page .section-eyebrow { color:#bdbdbd; }

.maintenance-container {
    width:min(1200px,calc(100% - 48px));
    margin:0 auto;
}

.maintenance-hero {
    padding:110px 0 120px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.maintenance-hero-grid,
.maintenance-intro-grid,
.maintenance-features-heading,
.maintenance-scope-grid,
.maintenance-process-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
}

.maintenance-hero h1 {
    margin:0;
    color:#fff;
    font-size:clamp(3.4rem,5vw,5.5rem);
    line-height:.98;
    letter-spacing:-.055em;
}

.maintenance-hero h1 span,
.maintenance-intro h2 span,
.maintenance-features-heading h2 span,
.maintenance-scope-copy h2 span,
.maintenance-process-heading h2 span {
    color:var(--brand);
}

.maintenance-hero-copy {
    max-width:510px;
    margin:0 0 5px;
}

.maintenance-hero-copy p,
.maintenance-intro-copy p,
.maintenance-features-heading > p,
.maintenance-scope-copy > p,
.maintenance-process-heading > p {
    margin:0;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}

.maintenance-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

/* Light intro */
.maintenance-intro {
    padding:100px 0;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.maintenance-intro h2,
.maintenance-features-heading h2,
.maintenance-scope-copy h2,
.maintenance-process-heading h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}

.maintenance-intro-copy {
    max-width:520px;
}

.maintenance-intro-copy p + p {
    margin-top:18px;
}

/* Dark features */
.maintenance-features {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.maintenance-features-heading {
    margin-bottom:55px;
}

.maintenance-features-heading > div > .section-eyebrow {
    margin-bottom:22px;
}

.maintenance-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.maintenance-feature {
    min-height:255px;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.maintenance-feature-icon {
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:45px;
    border:1px solid rgba(var(--brand-rgb),.35);
    border-radius:8px;
    background:rgba(var(--brand-rgb),.07);
    color:var(--brand);
    font-size:.9rem;
}

.maintenance-feature h3 {
    margin:0 0 11px;
    color:#fff;
    font-size:1.08rem;
}

.maintenance-feature p {
    margin:0;
    color:#8f989f;
    font-size:.88rem;
    line-height:1.7;
}

/* Light scope */
.maintenance-scope {
    padding:105px 0 115px;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.maintenance-scope-grid {
    grid-template-columns:.9fr 1.1fr;
    align-items:start;
    gap:100px;
}

.maintenance-scope-copy > p {
    max-width:480px;
    margin-top:25px;
}

.maintenance-scope-list {
    border-top:1px solid rgba(255,255,255,.1);
}

.maintenance-scope-item {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.maintenance-scope-item > span {
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.maintenance-scope-item h3 {
    margin:0 0 6px;
    color:#fff;
    font-size:1rem;
}

.maintenance-scope-item p {
    margin:0;
    color:#87919a;
    font-size:.87rem;
    line-height:1.65;
}

/* Dark process */
.maintenance-process {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.maintenance-process-heading {
    margin-bottom:55px;
}

.maintenance-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.maintenance-process-step {
    min-height:235px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.maintenance-process-step > span {
    display:block;
    margin-bottom:55px;
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.maintenance-process-step h3 {
    margin:0 0 10px;
    color:#fff;
    font-size:1.05rem;
}

.maintenance-process-step p {
    margin:0;
    color:#8f989f;
    font-size:.87rem;
    line-height:1.7;
}

.maintenance-page .final-cta-section {
    background:#10161d;
}

@media (max-width:1000px) {
    .maintenance-hero-grid,
    .maintenance-intro-grid,
    .maintenance-features-heading,
    .maintenance-scope-grid,
    .maintenance-process-heading {
        grid-template-columns:1fr;
        gap:35px;
    }

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

@media (max-width:700px) {
    .maintenance-container {
        width:calc(100% - 32px);
    }

    .maintenance-hero {
        padding:78px 0 85px;
    }

    .maintenance-hero h1 {
        font-size:3rem;
    }

    .maintenance-intro,
    .maintenance-features,
    .maintenance-scope,
    .maintenance-process {
        padding:82px 0;
    }

    .maintenance-feature-grid,
    .maintenance-process-grid {
        grid-template-columns:1fr;
    }

    .maintenance-feature,
    .maintenance-process-step {
        min-height:auto;
    }

    .maintenance-feature-icon,
    .maintenance-process-step > span {
        margin-bottom:30px;
    }
}


/* =====================================================
   BUSINESS EMAIL DETAIL PAGE
   ===================================================== */
.business-email-page { background:#0b0f14; }
.business-email-page .section-eyebrow { color:#bdbdbd; }

.business-email-container {
    width:min(1200px,calc(100% - 48px));
    margin:0 auto;
}

.business-email-hero {
    padding:110px 0 120px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.business-email-hero-grid,
.business-email-intro-grid,
.business-email-features-heading,
.business-email-scope-grid,
.business-email-process-heading {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:end;
}

.business-email-hero h1 {
    margin:0;
    color:#fff;
    font-size:clamp(3.4rem,5vw,5.5rem);
    line-height:.98;
    letter-spacing:-.055em;
}

.business-email-hero h1 span,
.business-email-intro h2 span,
.business-email-features-heading h2 span,
.business-email-scope-copy h2 span,
.business-email-process-heading h2 span {
    color:var(--brand);
}

.business-email-hero-copy {
    max-width:510px;
    margin:0 0 5px;
}

.business-email-hero-copy p,
.business-email-intro-copy p,
.business-email-features-heading > p,
.business-email-scope-copy > p,
.business-email-process-heading > p {
    margin:0;
    color:#929aa1;
    font-size:.98rem;
    line-height:1.8;
}

.business-email-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

/* Light intro */
.business-email-intro {
    padding:100px 0;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.business-email-intro h2,
.business-email-features-heading h2,
.business-email-scope-copy h2,
.business-email-process-heading h2 {
    margin:0;
    color:#fff;
    font-size:clamp(2.6rem,4vw,4.15rem);
    line-height:1.05;
    letter-spacing:-.045em;
}

.business-email-intro-copy {
    max-width:520px;
}

.business-email-intro-copy p + p {
    margin-top:18px;
}

/* Dark features */
.business-email-features {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.business-email-features-heading {
    margin-bottom:55px;
}

.business-email-features-heading > div > .section-eyebrow {
    margin-bottom:22px;
}

.business-email-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.business-email-feature {
    min-height:255px;
    padding:30px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.business-email-feature-icon {
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    margin-bottom:45px;
    border:1px solid rgba(var(--brand-rgb),.35);
    border-radius:8px;
    background:rgba(var(--brand-rgb),.07);
    color:var(--brand);
    font-size:.9rem;
}

.business-email-feature h3 {
    margin:0 0 11px;
    color:#fff;
    font-size:1.08rem;
}

.business-email-feature p {
    margin:0;
    color:#8f989f;
    font-size:.88rem;
    line-height:1.7;
}

/* Light use cases */
.business-email-scope {
    padding:105px 0 115px;
    background:#10161d;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.business-email-scope-grid {
    grid-template-columns:.9fr 1.1fr;
    align-items:start;
    gap:100px;
}

.business-email-scope-copy > p {
    max-width:480px;
    margin-top:25px;
}

.business-email-scope-list {
    border-top:1px solid rgba(255,255,255,.1);
}

.business-email-scope-item {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.business-email-scope-item > span {
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.business-email-scope-item h3 {
    margin:0 0 6px;
    color:#fff;
    font-size:1rem;
}

.business-email-scope-item p {
    margin:0;
    color:#87919a;
    font-size:.87rem;
    line-height:1.65;
}

/* Dark process */
.business-email-process {
    padding:105px 0 115px;
    background:#0b0f14;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.business-email-process-heading {
    margin-bottom:55px;
}

.business-email-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}

.business-email-process-step {
    min-height:235px;
    padding:28px;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:#0d1319;
}

.business-email-process-step > span {
    display:block;
    margin-bottom:55px;
    color:var(--brand);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:.08em;
}

.business-email-process-step h3 {
    margin:0 0 10px;
    color:#fff;
    font-size:1.05rem;
}

.business-email-process-step p {
    margin:0;
    color:#8f989f;
    font-size:.87rem;
    line-height:1.7;
}

.business-email-page .final-cta-section {
    background:#10161d;
}

@media (max-width:1000px) {
    .business-email-hero-grid,
    .business-email-intro-grid,
    .business-email-features-heading,
    .business-email-scope-grid,
    .business-email-process-heading {
        grid-template-columns:1fr;
        gap:35px;
    }

    .business-email-feature-grid,
    .business-email-process-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:700px) {
    .business-email-container {
        width:calc(100% - 32px);
    }

    .business-email-hero {
        padding:78px 0 85px;
    }

    .business-email-hero h1 {
        font-size:3rem;
    }

    .business-email-intro,
    .business-email-features,
    .business-email-scope,
    .business-email-process {
        padding:82px 0;
    }

    .business-email-feature-grid,
    .business-email-process-grid {
        grid-template-columns:1fr;
    }

    .business-email-feature,
    .business-email-process-step {
        min-height:auto;
    }

    .business-email-feature-icon,
    .business-email-process-step > span {
        margin-bottom:30px;
    }
}


/* =====================================================
   INFORMATIONAL PAGES REFRESH
   Keep the original KNG Digital colour rhythm:
   dark -> light -> dark -> light -> dark -> light
   ===================================================== */

/* Service detail snapshot replacing the old second-title section */
.service-snapshot-section {
    padding: 76px 0;
    background: #10161d;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.service-snapshot-layout {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
    gap: 90px;
    align-items: center;
}

.service-snapshot-copy {
    max-width: 500px;
}

.service-snapshot-copy .section-eyebrow {
    margin-bottom: 18px;
}

.service-snapshot-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem,2.8vw,3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.service-snapshot-copy h2 span {
    color: var(--brand);
}

.service-snapshot-copy p {
    margin: 20px 0 0;
    color: #929aa1;
    font-size: .94rem;
    line-height: 1.75;
}

.service-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.service-snapshot-item {
    min-height: 132px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(11,15,20,.35);
    transition: background .2s ease, border-color .2s ease;
}

.service-snapshot-item:hover {
    background: rgba(var(--brand-rgb),.07);
    border-color: rgba(var(--brand-rgb),.28);
}

.service-snapshot-icon {
    color: var(--brand);
    font-size: 1rem;
}

.service-snapshot-item strong {
    color: #fff;
    font-size: .88rem;
    font-weight: 650;
    letter-spacing: -.01em;
}

/* Explicit detail-page alternation */
.webdesign-hero,
.webapplications-hero,
.hosting-hero,
.maintenance-hero,
.business-email-hero {
    background: #0b0f14;
}

.webdesign-features,
.webapplications-features,
.hosting-features,
.maintenance-features,
.business-email-features {
    background: #0b0f14;
}

.webdesign-scope,
.webapplications-scope,
.hosting-scope,
.maintenance-scope,
.business-email-scope {
    background: #10161d;
}

.webdesign-process,
.webapplications-process,
.hosting-process,
.maintenance-process,
.business-email-process {
    background: #0b0f14;
}

.webdesign-page .final-cta-section,
.webapplications-page .final-cta-section,
.hosting-page .final-cta-section,
.maintenance-page .final-cta-section,
.business-email-page .final-cta-section {
    background: #10161d;
}

/* Diensten page: intro was removed, so preserve alternation */
.services-page-v2 .services-page-hero {
    background: #0b0f14;
}

.services-page-v2 .services-overview-section {
    padding-top: 88px;
    background: #10161d;
}

.services-page-v2 .services-overview-card {
    background: #0d1319;
}

.services-page-v2 .services-overview-card:hover {
    background: #121a22;
}

.services-page-v2 .services-page-approach {
    background: #0b0f14;
}

.services-page-v2 .services-page-approach-grid article {
    background: #0d1319;
}

.services-page-v2 .final-cta-section {
    background: #10161d;
}

@media (max-width: 900px) {
    .service-snapshot-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 600px) {
    .service-snapshot-section {
        padding: 64px 0;
    }

    .service-snapshot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-snapshot-item {
        min-height: 112px;
        padding: 20px;
    }
}


/* =====================================================
   SERVICE SNAPSHOT — FILLED CARDS
   ===================================================== */
.service-snapshot-item {
    min-height: 158px;
    padding: 22px 24px;
    justify-content: flex-start;
    gap: 25px;
}

.service-snapshot-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.service-snapshot-number {
    color: #59636d;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.service-snapshot-item-copy {
    margin-top: auto;
}

.service-snapshot-item-copy strong {
    display: block;
    margin: 0 0 7px;
    color: #fff;
    font-size: .9rem;
    font-weight: 650;
    letter-spacing: -.01em;
}

.service-snapshot-item-copy p {
    margin: 0;
    max-width: 255px;
    color: #7f8992;
    font-size: .76rem;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .service-snapshot-grid { grid-template-columns: 1fr; }
    .service-snapshot-item { min-height: 145px; }
    .service-snapshot-item-copy p { max-width: none; }
}


/* =====================================================
   ABOUT PAGE — SNAPSHOT REFRESH
   Keeps original dark / light / dark / light rhythm
   ===================================================== */
.about-snapshot-section {
    padding: 82px 0;
    background: #10161d;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.about-snapshot-layout {
    display: grid;
    grid-template-columns: minmax(0,.82fr) minmax(560px,1.18fr);
    gap: 95px;
    align-items: center;
}

.about-snapshot-copy {
    max-width: 480px;
}

.about-snapshot-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.95rem,2.8vw,3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.about-snapshot-copy h2 span {
    color: var(--brand);
}

.about-snapshot-copy p {
    margin: 21px 0 0;
    color: #929aa1;
    font-size: .94rem;
    line-height: 1.75;
}

.about-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.about-snapshot-item {
    min-height: 190px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(11,15,20,.35);
    transition: background .2s ease, border-color .2s ease;
}

.about-snapshot-item:hover {
    background: rgba(var(--brand-rgb),.07);
    border-color: rgba(var(--brand-rgb),.28);
}

.about-snapshot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about-snapshot-icon {
    color: var(--brand);
    font-size: .95rem;
}

.about-snapshot-number {
    color: #66717b;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .09em;
}

.about-snapshot-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -.015em;
}

.about-snapshot-item p {
    margin: 0;
    color: #838d96;
    font-size: .82rem;
    line-height: 1.62;
}

@media (max-width: 1000px) {
    .about-snapshot-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 600px) {
    .about-snapshot-section { padding: 68px 0; }
    .about-snapshot-grid { grid-template-columns: 1fr; }
    .about-snapshot-item { min-height: auto; }
}

/* =====================================================
   PRIVACY / LEGAL PAGES
   ===================================================== */

.legal-page {
    background: #0b0f14;
}

.legal-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.legal-hero {
    padding: 105px 0 110px;
    background: #0b0f14;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: end;
}

.legal-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3.3rem, 5vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.legal-hero h1 span {
    color: var(--brand);
}

.legal-hero-copy {
    max-width: 510px;
}

.legal-hero-copy > p {
    margin: 0;
    color: #929aa1;
    font-size: .98rem;
    line-height: 1.8;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #737e87;
    font-size: .76rem;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-meta i {
    color: var(--brand);
}

.legal-content-section {
    padding: 95px 0 125px;
    background: #10161d;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    justify-content: space-between;
    gap: 90px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,.1);
}

.legal-nav-label {
    padding: 0 0 16px 18px;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.legal-nav a {
    padding: 7px 0 7px 18px;
    color: #77828b;
    font-size: .76rem;
    line-height: 1.4;
    transition: color .2s ease, border-color .2s ease;
}

.legal-nav a:hover {
    color: #fff;
}

.legal-document {
    min-width: 0;
}

.legal-block {
    position: relative;
    padding: 0 0 58px;
    margin: 0 0 58px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    scroll-margin-top: 120px;
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-number {
    display: block;
    margin-bottom: 13px;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.legal-block h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.legal-block h3 {
    color: #fff;
}

.legal-block > p,
.legal-block li {
    color: #929aa1;
    font-size: .91rem;
    line-height: 1.78;
}

.legal-block > p {
    margin: 0 0 17px;
}

.legal-block > p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    margin: 20px 0 22px;
    padding: 0;
    list-style: none;
}

.legal-block li {
    position: relative;
    padding: 8px 0 8px 22px;
}

.legal-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.legal-block a {
    color: #a8c5d9;
}

.legal-block a:hover {
    color: #fff;
}

.legal-info-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.legal-info-card > div {
    min-height: 95px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(11,15,20,.28);
}

.legal-info-card span {
    display: block;
    margin-bottom: 7px;
    color: #69747e;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.legal-info-card strong,
.legal-info-card a {
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
}

.legal-purpose-list {
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.legal-purpose {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 26px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.legal-purpose h3 {
    margin: 0;
    font-size: .94rem;
}

.legal-purpose p {
    margin: 0 0 10px;
    color: #929aa1;
    font-size: .86rem;
    line-height: 1.65;
}

.legal-purpose span {
    display: block;
    color: #68747e;
    font-size: .74rem;
    line-height: 1.55;
}

.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    margin: 28px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.legal-rights-grid > div {
    min-height: 145px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(11,15,20,.28);
}

.legal-rights-grid i {
    margin-bottom: 24px;
    color: var(--brand);
    font-size: .9rem;
}

.legal-rights-grid strong {
    margin-bottom: 6px;
    color: #fff;
    font-size: .88rem;
}

.legal-rights-grid span {
    color: #7f8a93;
    font-size: .78rem;
    line-height: 1.55;
}

.legal-notice {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(var(--brand-rgb),.25);
    background: rgba(var(--brand-rgb),.06);
}

.legal-notice > i {
    color: var(--brand);
    font-size: 1rem;
    margin-top: 3px;
}

.legal-notice strong {
    color: #fff;
    font-size: .9rem;
}

.legal-notice p {
    margin: 7px 0 12px;
    color: #8f989f;
    font-size: .82rem;
    line-height: 1.65;
}

.legal-notice a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
}

.legal-contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 950px) {
    .legal-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legal-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 18px;
    }

    .legal-nav-label {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    .legal-nav a {
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .legal-container {
        width: calc(100% - 32px);
    }

    .legal-hero {
        padding: 78px 0 82px;
    }

    .legal-content-section {
        padding: 72px 0 90px;
    }

    .legal-info-card,
    .legal-rights-grid {
        grid-template-columns: 1fr;
    }

    .legal-purpose {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

/* COOKIE POLICY — add after the shared .legal-* styles from privacy-policy.css */

.cookie-status-notice {
    margin: 28px 0 0;
}

.cookie-status-notice > i {
    color: var(--brand);
}

.cookie-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 28px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.cookie-type-card {
    min-height: 170px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(11,15,20,.28);
}

.cookie-type-card > i {
    display: block;
    margin-bottom: 28px;
    color: var(--brand);
    font-size: 1rem;
}

.cookie-type-card strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: .9rem;
}

.cookie-type-card p {
    margin: 0;
    color: #7f8a93;
    font-size: .79rem;
    line-height: 1.6;
}

.cookie-table-wrap {
    margin: 28px 0 20px;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,.1);
}

.cookie-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: rgba(11,15,20,.28);
}

.cookie-table th,
.cookie-table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,.09);
    border-right: 1px solid rgba(255,255,255,.07);
}

.cookie-table th:last-child,
.cookie-table td:last-child {
    border-right: 0;
}

.cookie-table tbody tr:last-child td {
    border-bottom: 0;
}

.cookie-table th {
    color: #69747e;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.cookie-table td {
    color: #89939b;
    font-size: .8rem;
    line-height: 1.55;
}

.cookie-table td strong {
    color: #fff;
    font-weight: 600;
}

.cookie-audit-note {
    color: #6f7a83 !important;
    font-size: .78rem !important;
}

@media (max-width: 650px) {
    .cookie-type-grid {
        grid-template-columns: 1fr;
    }
}

/* GENERAL TERMS — add after the shared .legal-* styles */
.terms-payment-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    margin:28px 0;
    border-top:1px solid rgba(255,255,255,.1);
    border-left:1px solid rgba(255,255,255,.1);
}
.terms-payment-grid > div {
    min-height:130px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border-right:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    background:rgba(11,15,20,.28);
}
.terms-payment-grid strong {
    color:var(--brand);
    font-size:1.7rem;
    letter-spacing:-.04em;
}
.terms-payment-grid span {
    color:#87919a;
    font-size:.78rem;
    line-height:1.5;
}
.terms-contact { padding-top:10px; }
@media (max-width:650px) {
    .terms-payment-grid { grid-template-columns:1fr; }
    .terms-payment-grid > div { min-height:105px; }
}


/* Contact form submission */
.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: .72;
}

.contact-form-status {
    display: none;
    margin-top: 18px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.10);
    font-size: .82rem;
    line-height: 1.55;
}

.contact-form-status.is-success,
.contact-form-status.is-error {
    display: block;
}

.contact-form-status.is-success {
    color: #b9d8c4;
    background: rgba(77, 145, 98, .10);
    border-color: rgba(112, 183, 133, .25);
}

.contact-form-status.is-error {
    color: #e0b4b4;
    background: rgba(171, 72, 72, .10);
    border-color: rgba(205, 101, 101, .25);
}
