﻿:root {
    --bg-white: #f9f9f9;
    --bg-black: #101010;
    --text-black: #000000;
    --text-white: #FFFFFF;

    --text-dim-light: #555555;
    --text-dim-dark: #888888;

    --accent: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-container: 2rem;
    --container-width: 1400px;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {

    .mobile-sidebar,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Prevent scrolling when modal is open */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Explicit background for About Page (Studio) */
body.about-page {
    background-color: #f9f9f9 !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.section {
    padding: 8rem 0;
}

/* Theme Utilities */
.bg-dark {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.bg-dark .text-dim {
    color: var(--text-dim-dark);
}

.bg-dark .btn {
    background: var(--text-white);
    color: var(--text-black);
}

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

.bg-light {
    background-color: var(--bg-white);
    color: var(--text-black);
}

#work .container {
    max-width: 100%;
    padding: 0 1.5rem;
    /* Wider layout */
}

.bg-light .text-dim {
    color: var(--text-dim-light);
}

.bg-light .btn {
    background: var(--text-black);
    color: var(--text-white);
}

.bg-light .section-title {
    color: var(--text-black);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    padding-right: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 999px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    gap: 1.5rem;
    min-width: 140px;
}

.btn::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.02);
    opacity: 1;
    /* Keep opacity full for vibrancy */
}

.btn:hover::after {
    background-color: #39ff14;
    /* Neon Green */
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    animation: pulse-green 1.5s infinite;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Increased z-index */
    padding: 0.65rem 0;
    /* Just a tiny bit smaller */
    background: #f9f9f9;
    color: #000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 3rem;
}

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

.header-logo-img {
    height: 35px;
    /* Just a tiny bit smaller */
    width: auto;
}

.reg-mark-sm {
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background-color: #555;
}

@media (min-width: 900px) {
    .menu-toggle {
        display: none;
    }
}

.nav-center {
    display: none;
}

@media (min-width: 900px) {
    .nav-center {
        display: flex;
        gap: 6rem;
        /* Wide spacing */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        font-size: 0.85rem;
        /* Slightly smaller nav links */
        color: #000;
        font-weight: 500;
        margin-left: 0;
        transition: opacity 0.3s ease;
    }

    .nav-link:hover {
        opacity: 0.6;
    }

    .nav-count {
        font-size: 0.7em;
        vertical-align: super;
        opacity: 0.7;
    }
}

/* Hero Section */
.hero {
    height: calc(100vh - 4.1rem);
    min-height: 580px;
    margin: 0 0.6rem 3px 0.6rem;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    /* Allow vertical stacking */
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
    color: var(--text-white);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        /* Desktop side-by-side */
    }
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    background: #000;
    /* Fallback */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.6);
    /* Premium silver-grey look */
}

.video-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0.4), rgba(16, 16, 16, 0.7));
    /* Grey atmospheric tint */
    z-index: 2;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.15;
    /* Increased for that 'grainy filter' look */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -5%)
    }

    20% {
        transform: translate(-10%, 5%)
    }

    30% {
        transform: translate(5%, -10%)
    }

    40% {
        transform: translate(-5%, 15%)
    }

    50% {
        transform: translate(-10%, 5%)
    }

    60% {
        transform: translate(15%, 0)
    }

    70% {
        transform: translate(0, 10%)
    }

    80% {
        transform: translate(-15%, 0)
    }

    90% {
        transform: translate(10%, 5%)
    }
}

/* Stats */
.stats-section {
    background: #111;
    color: #fff;
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.service-card {
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
}

.hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 8vw;
    padding-right: 8vw;
}

@media (max-width: 768px) {
    .hero-container {
        padding-left: 5vw;
        padding-right: 5vw;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

.hero-center {
    text-align: left;
    position: relative;
    z-index: 6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-center {
        text-align: center;
        margin-bottom: 0;
    }
}

.hero-brand {
    font-size: clamp(3rem, 10vw, 12rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    margin: 0 0 0.6rem;
    text-transform: lowercase;
}

.hero-brand .reg-mark {
    font-size: 0.25em;
    vertical-align: super;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: left;
    margin: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero-subtitle {
        text-align: center;
        margin-top: 0;
    }
}

/* Hero Right List */
.hero-right-list {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    display: none;
}

@media (min-width: 1024px) {
    .hero-right-list {
        display: block;
    }
}

.hero-right-list ul {
    list-style: none;
}

.hero-right-list li {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    color: #fff;
    /* Changed to full white */
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-right-list li:hover {
    color: #fff;
    transform: translateX(-10px);
    /* Subtle slide-in effect */
}

/* Floating Elements */
.hero-bottom-left {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    max-width: 350px;
    text-align: left;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-bottom-left {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 2rem auto;
        text-align: center;
        max-width: 90%;
        display: none !important;
    }
}

.hero-bottom-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-weight: 500;
}

.hero-bottom-left p strong {
    color: #fff;
}

/* If bold needed */

.hero-card {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: white;
    color: black;
    padding: 1.2rem;
    border-radius: 16px;
    width: 280px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-avatar {
    width: 48px;
    height: 48px;
    background: #ccc;
    border-radius: 8px;
    /* Slightly squarer */
}

.card-details h4 {
    font-size: 0.75rem;
    margin: 0;
    color: #000;
    font-weight: 600;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.7em;
    opacity: 0.6;
}

.card-details h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.card-btn {
    width: fit-content;
    min-width: 140px;
    background: #000;
    color: #fff;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.2rem;
    padding-right: 0.8rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.card-dot,
.btn-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: block;
}

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

/* Crosshairs */
.crosshair {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 5;
    pointer-events: none;
}

.c-left {
    bottom: 30vh;
    left: 3rem;
}

.c-center {
    bottom: 30vh;
    left: 50%;
    transform: translateX(-50%);
}

.c-right {
    bottom: 30vh;
    right: 3rem;
}


/* Sections */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1;
}

/* Projects (Light) */
.projects-header {
    display: grid;
    grid-template-columns: 100%;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 2rem;
}

@media (min-width: 900px) {
    .projects-header {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        text-align: center;
        margin-bottom: 6rem;
    }

    .projects-header-left {
        justify-self: start;
        text-align: left;
    }

    .projects-header-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-header-right {
        justify-self: end;
        text-align: right;
    }
}

.huge-projects-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.8;
    margin-bottom: 2rem;
    /* Increased to prevent overlap with descender */
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #000;
}

.projects-year {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000;
}

.projects-count {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
}

.projects-intro {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.4;
    color: #666;
    margin-left: auto;
}

@media (max-width: 900px) {
    .projects-intro {
        margin-left: 0;
        max-width: 100%;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .project-card:nth-child(even) {
        margin-top: 0;
    }
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-radius: 20px;
    overflow: hidden;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 0.5rem;
}

.project-title-group {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.project-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
}

.project-card-year {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
}

.project-dots {
    display: flex;
    gap: 5px;
    margin-top: auto;
    margin-bottom: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e5e5;
    /* Default inactive gray */
    transition: background-color 0.3s ease;
}

.project-card:hover .dot:nth-child(1) {
    background-color: #ff5f57;
    /* Mac Red */
}

.project-card:hover .dot:nth-child(2) {
    background-color: #febc2e;
    /* Mac Yellow */
}

.project-card:hover .dot:nth-child(3) {
    background-color: #28c840;
    /* Mac Green */
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- REFINED SERVICES SECTION --- */
#services {
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
    background-color: #000;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 4rem;
}

.services-header .section-title {
    font-size: clamp(3.5rem, 13vw, 10rem);
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.header-icon {
    font-size: 0.8rem;
}

.header-count {
    opacity: 0.3;
    font-size: 0.25em;
    vertical-align: top;
    margin-left: 0.5rem;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

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

    .services-bento-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

.services-bento-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.services-bento-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.services-bento-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.services-bento-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.services-bento-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.services-bento-visual img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.services-bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.services-bento-tag {
    background: transparent;
    color: #ccc;
    padding: 0.35rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.services-footer {
    padding-top: 4rem;
    text-align: center;
}

.btn-white {
    background: #fff;
    color: #000;
    padding: 0.8rem 1.2rem;
    padding-right: 0.8rem;
    border-radius: 99px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-width: 140px;
    transition: var(--transition-smooth);
}

.btn-white::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.btn-white:hover {
    transform: scale(1.02);
}

/* Experiences Header (Replicating Projects Header Layout) */
.experiences-header {
    display: grid;
    grid-template-columns: 100%;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 2rem;
}

.exp-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* On desktop, switch to 3-column layout */
@media (min-width: 900px) {
    .experiences-header {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        text-align: center;
        margin-bottom: 6rem;
    }

    .exp-header-left {
        justify-self: start;
    }

    .exp-header-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Aligns Year under Title */
    }

    .exp-header-right {
        justify-self: end;
    }
}

/* --- REFINED EXPERIENCES BENTO --- */
.experiences-section {
    padding: 6rem 0;
}

.exp-header-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.year-mark {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

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

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

.exp-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-card {
    background: #fff;
    border-radius: 18px;
    /* Match Why Choose Us */
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
}

/* Score Card */
.score-card {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.score-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.score-large {
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.score-small {
    font-size: 1.5rem;
    color: #999;
}

.score-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    max-width: 150px;
    margin-top: 0.5rem;
}

.brand-strip {
    margin-top: auto;
    margin-bottom: 2rem;
}

.fabrica-brand {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.avatars-row {
    display: flex;
    margin-left: 10px;
    /* Offset for overlap */
    margin-bottom: 0.8rem;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    margin-left: -10px;
}

.avatar-circle.black {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.trusted-text {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trusted-text .stars {
    color: #FFB800;
    letter-spacing: -2px;
}

.stars {
    color: #FFB800;
    letter-spacing: -2px;
}

/* Button */
.btn-black-full {
    background: #090909;
    color: #fff;
    width: 100%;
    padding: 1rem;
    border-radius: 99px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.btn-black-full:hover {
    background: #222;
}

/* Split Cards */
.exp-profile-card,
.exp-quote-card,
.exp-quote-text-card,
.exp-profile-card-bottom {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.exp-profile-card,
.exp-profile-card-bottom {
    justify-content: center;
}

.exp-quote-card,
.exp-quote-text-card {
    flex: 1;
    /* Expand to fill column */
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* Rounded square as per design */
    background-size: cover;
    background-position: center;
}

.user-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.user-info span {
    font-size: 0.8rem;
    color: #888;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plus-icon-grey {
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.4;
    transform: translateY(-2px);
}

/* --- REFINED PRICING --- */
.pricing-section {
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
    background-color: #080808;
    background-image: radial-gradient(circle at 50% 50%, rgba(30, 30, 30, 1) 0%, rgba(0, 0, 0, 1) 100%);
    /* Note: For real grain, add: url('noise-texture.png') and use background-blend-mode: overlay; */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section .section-header {
    position: relative;
    padding-top: 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section .section-title {
    font-size: 6rem;
    /* Huge title */
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}


.simple-tag {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: none;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.simple-tag::before {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.pricing-toggle {
    margin: 2rem auto;
    background: #151515;
    display: inline-flex;
    padding: 0.3rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-option {
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #888;
    transition: all 0.3s;
    font-weight: 500;
    background: none;
    border: none;
    font-family: var(--font-body);
}

.pricing-option.active {
    background: #fff;
    color: #000;
}

.pricing-option:hover:not(.active) {
    color: #fff;
}

#services .container {
    max-width: 1300px;
    margin: 4rem auto 0;
}

.pricing-section .container {
    max-width: 95%;
    /* Push cards close to edge */
    margin: 0 auto;
    padding: 0 2rem;
}


/* --- PRICING GRID LAYOUT --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr 2.2fr;
        /* Left card narrower, Right card wider */
        gap: 0.5rem;
        /* Tighter gap */
    }
}

.pricing-card {
    background: #0d0d0d;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

/* Addon Card Styles */
.addon-card {
    justify-content: space-between;
    min-height: 320px;
}

.addon-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.addon-list {
    list-style: none;
    /* No default bullets */
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-list li {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.addon-list li::before {
    content: '•';
    color: #39ff14;
    /* Green bullet */
    position: absolute;
    left: 0;
}

.addon-list strong {
    color: #fff;
    font-weight: 500;
}

.addon-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.addon-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.more-features {
    font-style: italic;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Core Card Styles */
.core-card {
    gap: 3rem;
}

@media (min-width: 900px) {
    .core-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.core-left,
.core-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.big-price {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
}

.big-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-left: 0.5rem;
}

.delivery-line {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
}

.dotted-line {
    flex-grow: 1;
    height: 1px;
    background: #333;
    /* Base dark line */
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: none;
    opacity: 1;
}

/* The flying light effect */
.dotted-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d2ff37, transparent);
    transform: translateX(-100%);
    animation: flyBy 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes flyBy {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

.value {
    color: #fff;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #dedede;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.pricing-features li::before {
    content: '+';
    color: #d2ff37;
    font-weight: 700;
    font-size: 1rem;
}

/* Full Width Button Styled like standard .btn */
.btn-white-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #000;
    border: none;
    width: 100%;
    padding: 1rem 1.5rem;
    /* Match btn padding ratio but larger */
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 2rem;
    font-family: var(--font-body);
}

.btn-white-full::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    /* Black dot for white button */
    border-radius: 50%;
}

.btn-white-full:hover {
    transform: scale(1.02);
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: #39ff14;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(24px);
    background-color: #000;
}

.toggle-switch input:focus-visible+.toggle-slider {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    padding: 0;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-image-col {
    display: none;
}

.modal-form-col {
    padding: 2.5rem;
    flex: 1;
}

@media (min-width: 768px) {
    .modal-body-grid {
        flex-direction: row;
        min-height: 550px;
    }

    .modal-image-col {
        display: block;
        flex: 1;
        position: relative;
        background: #000;
    }

    .modal-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        /* Slight dim */
    }

    .image-overlay-tint {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    }
}

.modal-backdrop.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

.no-pay-badge {
    display: inline-block;
    background: #e6ffda;
    color: #2b9348;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.modal-header h3 {
    margin-bottom: 0.5rem;
    color: #000;
}

.modal-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #333;
}

.booking-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.booking-form input:focus {
    border-color: #000;
}

.modal-summary {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    align-items: center;
}

.modal-summary strong {
    color: #000;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* Footer Area CSS */
.pricing-footer-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 6rem;
}

@media (min-width: 900px) {
    .pricing-footer-area {
        grid-template-columns: 1fr 2fr 1fr;
        /* layout spacer */
        align-items: start;
    }
}

.pf-label {
    font-weight: 500;
}

.pf-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pf-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #888;
    max-width: 500px;
}

.pf-text strong {
    color: #fff;
}

.pf-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.pf-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.pf-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #e8e8e8;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pf-tech-badge:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.pf-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pf-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pf-role {
    font-size: 0.8rem;
    color: #666;
}

.btn-white-sm::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

/* --- REFINED FAQ SECTION --- */
.faq-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    /* Very clean light gray */
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr 1.6fr;
        gap: 5rem;
    }

    .faq-right {
        padding-left: 0;
    }
}

.huge-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #000;
}

.faq-desc {
    color: #666;
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Reduced from 1rem */
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    /* Essential for height animation */
}

/* Hover: Tactile Glow */
.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid #000;
    outline-offset: 8px;
    border-radius: 4px;
}

/* Base State for Icon */
.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    /* No CSS transition here, GSAP handles it */
}

/* Answer Container: Hidden by Default for GSAP to Expand */
.faq-answer {
    height: 0;
    overflow: hidden;
    /* No padding here to ensure smooth 0-height */
}

/* Internal Text: Will be Staggered */
.faq-answer-content {
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(-10px);
}

/* Auto-open first FAQ item via active class */
.faq-item.active .faq-answer {
    height: auto;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 90%;
}



/* --- NEW SWISS-INSPIRED FOOTER --- */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 10rem 0 4rem;
    font-family: var(--font-body);
    margin: 6rem 0.6rem 1rem;
    border-radius: 2.5rem;
}

.footer-cta-container {
    border-bottom: 1px solid #333;
    padding-bottom: 8rem;
    margin-bottom: 6rem;
}

.footer-cta-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-bottom: 4rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    color: #000;
    padding: 1.2rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-btn:hover {
    transform: scale(1.05);
}

.footer-cta-btn::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.footer-col-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-col-title--light {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand-bio {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    max-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo-img {
    width: 160px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.8rem;
}

.footer-nav-list a {
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #888;
}

.footer-newsletter-box {
    background: #111;
    padding: 2.5rem;
    border: 1px solid #222;
    border-radius: 20px;
}

.footer-newsletter-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-newsletter-box p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.footer-newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem 0;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.footer-newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-newsletter-form button:hover {
    opacity: 0.7;
}

.footer-trust-signals {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    opacity: 0.4;
    transition: opacity 0.3s;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-trust-signals:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

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

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 6rem 0 3rem;
    }

    .footer-cta-section {
        padding-bottom: 4rem;
        margin-bottom: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

/* Footer Dark Mode Overrides */


/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }

    .hero-container {
        padding: 0;
        height: auto;
    }

    .hero-brand {
        font-size: 15vw;
        /* Scale better on small screens */
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Why Us Section */
.why-us-section {
    padding-bottom: 6rem;
    background-color: #f9f9f9;
}

.why-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}


.plus-icon-css {
    width: 20px;
    height: 20px;
    background: #0a0a0a;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-v {
    width: 2px;
    height: 8px;
    background: #fff;
    position: absolute;
}

.plus-h {
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.why-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.why-title .text-dim {
    color: #888;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 900px) {
    .why-content-wrapper {
        grid-template-columns: 0.4fr 1fr;
        /* Create offset */
    }
}

.why-lead-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.6);
    /* Precise opacity from snippet */
    max-width: 600px;
    margin-bottom: 2.5rem;
    /* Reduced from 4rem */
    font-weight: 500;
}

.why-lead-text strong {
    color: rgb(10, 10, 10);
    font-weight: 600;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

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

.stat-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-top-card,
.stat-bottom-card {
    background: #fff;
    border-radius: 18px;
    /* Precise From Framer */
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-top-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    min-height: auto;
}

.stat-bottom-card {
    flex: 1;
    /* Fill remaining height */
    min-height: 300px;
    /* Tall box */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-top-card:hover,
.stat-bottom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-idx {
    font-size: 10px;
    /* Precise From Framer */
    color: #090909;
    font-family: var(--font-body);
    font-weight: 600;
    opacity: 0.5;
    align-self: flex-start;
    margin-top: 0;
}

.stat-number {
    font-size: 45px;
    /* Precise From Framer */
    font-weight: 600;
    line-height: 1;
    color: #0a0a0a;
    letter-spacing: -0.07em;
}

.stat-label-right {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    text-align: right;
    margin-bottom: 2rem;
    align-self: flex-end;
    max-width: 250px;
}

.stat-footer-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    max-width: 280px;
}

.stat-logos-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
    margin-top: auto;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}

@media (max-width: 768px) {
    .stat-logos-row {
        justify-content: flex-start;
        gap: 1rem;
    }
}

.stat-logo-img {
    height: 30px;
    max-width: 80px;
    object-fit: contain;
}

.stat-logo-img--lg {
    height: 35px;
    max-width: 90px;
}

.stat-logos-row img {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.stat-logos-row img:hover {
    opacity: 1;
}

.logo-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.5px;
}

.why-header-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 900px) {
    .why-header-grid {
        grid-template-columns: 0.4fr 1fr;
        /* Same ratio as content wrapper */
        align-items: start;
    }
}

/* Override existing margins since we are using grid gap now */
.why-header-grid .why-header-label {
    margin-bottom: 0;
}

.why-header-grid .why-title {
    margin-bottom: 0;
    margin-top: -0.5rem;
    /* Align cap height optically */
}

/* --- LET'S TALK SECTION --- */
.lets-talk-section {
    position: relative;
    background-color: #000;
    overflow: hidden;
    padding: 6rem 0;
    margin: 3px 0.6rem;
    border-radius: 2.5rem;
}

.lets-talk-section .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lets-talk-section .video-tint {
    background: rgba(0, 0, 0, 0.7);
}

.lets-talk-section .lets-talk-layout {
    position: relative;
    z-index: 10;
}

.lets-talk-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    /* Constrain width */
    margin: 0 auto;
}

@media (min-width: 900px) {
    .lets-talk-layout {
        grid-template-columns: 0.8fr 1.2fr;
        /* Form column smaller */
        gap: 6rem;
    }
}

/* Left Form Card */
.lt-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    /* Reduced padding */
    color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
}

.lt-brand {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
    color: #000;
}

.lt-header h3 {
    font-size: 1.5rem;
    /* Smaller title */
    font-weight: 600;
    margin-bottom: 1.2rem;
    /* Tighter spacing */
    line-height: 1.2;
    color: #333;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.lt-form .form-group {
    margin-bottom: 0.8rem;
    /* Tighter groups */
}

.lt-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
}

.lt-form input,
.lt-form textarea {
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 0.75rem;
    /* Smaller fields */
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    resize: none;
}

.lt-form input:focus,
.lt-form textarea:focus {
    outline: 2px solid #000;
    background: #fff;
}

.btn-black-full {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem;
    /* Smaller button */
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    transition: transform 0.2s;
}

.btn-black-full:hover {
    transform: scale(1.02);
}

.form-terms {
    font-size: 0.7rem;
    color: #888;
    margin-top: 0.8rem;
    line-height: 1.4;
}

.form-terms a {
    color: #000;
    text-decoration: underline;
}

/* Right Content */
.lt-content {
    color: #fff;
}

.lt-content .huge-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
}

.lt-desc {
    font-size: 1.5rem;
    color: #fff;
    max-width: 500px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.lt-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .lt-features {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-box {
    margin-bottom: 1rem;
    display: inline-flex;
}

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

.lt-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.lt-feature p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* --- STUDIO (ABOUT) PAGE --- */
.studio-hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #f9f9f9;
    /* Light grey background */
    min-height: 100vh;
}

.studio-title {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6rem;
    color: #000;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .studio-grid {
        grid-template-columns: 200px 1fr 250px;
        gap: 4rem;
        align-items: start;
    }
}

/* Column 1: Label */
.label-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
}

.plus-icon-black {
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
}

/* Column 2: Main Content */
.studio-lead {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    /* Reduced Size */
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 750px;
    letter-spacing: -0.01em;
}

.studio-lead .text-black {
    color: #000;
}

.studio-lead .text-grey {
    color: #999;
}

.studio-trust {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.avatar-group {
    display: flex;
}

.studio-trust .avatar-circle {
    width: 35px;
    height: 35px;
    border: 3px solid #f9f9f9;
    background-color: #ddd;
}

.studio-trust .avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* New Styles for Card */
.about-card-container {
    margin-top: 4rem;
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 2rem;
    /* Buffer from edge if needed */
}

.static-hero-card {
    background: white;
    color: black;
    padding: 1.2rem;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-text p {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

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

    .approach-left {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    .studio-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .studio-hero,
    .studio-what-else,
    .studio-stats-approach {
        padding: 4rem 0 !important;
    }

    .about-card-container {
        justify-content: center;
        padding-right: 0;
    }
}

/* About Page: Video Hero Variant */
.about-video-hero {
    margin-top: 1rem;
    height: 80vh;
    min-height: 600px;
}

.about-video-hero .hero-container {
    position: relative;
    height: 100%;
}

.about-brand-watermark {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 3;
}

.about-brand-watermark p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Page: Stats & Approach */
.studio-stats-approach {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.studio-stats-approach .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.studio-stats-approach .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.03em;
}

.studio-stats-approach .stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.studio-divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 6rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.approach-left h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.approach-left p {
    font-size: 0.85rem;
    color: #666;
    max-width: 200px;
    line-height: 1.5;
}

.approach-right .studio-lead {
    margin-bottom: 2rem;
}

.approach-right p.approach-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
}

.btn-black-pill {
    background: #000;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-black-pill:hover {
    transform: scale(1.02);
}

.btn-black-pill .btn-pill-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}

/* About Page: What Else */
.studio-what-else {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.studio-what-else .trust-text {
    margin-top: 2rem;
}

.studio-what-else .trust-text p {
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}

/* About Page: Stars override */
.stars-about {
    color: #ffb400;
    letter-spacing: 2px;
}

/* About Page: Nav active state */
.nav-link-active {
    opacity: 1 !important;
    color: #000 !important;
}

/* Column 3: Side Note */
.studio-silenote {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    max-width: 220px;
}

/* Upgrade Button Header */
.btn-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: #000;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    flex-direction: row-reverse;
    /* Bullet on right */
}

.btn-upgrade:hover {
    transform: scale(1.05);
}

.upgrade-dot {
    width: 8px;
    height: 8px;
    background-color: #39ff14;
    /* Brighter Neon Green */
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

@media (max-width: 900px) {

    /* Global Mobile Reset */
    :root {
        --spacing-container: 1.25rem;
    }

    body {
        overflow-x: hidden;
        background-color: #f9f9f9;
        /* Keep light mode consistency unless requested dark */
        padding-top: 60px;
        /* Offset for the fixed header */
    }

    /* Brute-force consistent padding for containers */
    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Typography Overrides */
    h1,
    h2,
    h3,
    .huge-title,
    .why-title,
    .studio-title {
        letter-spacing: -0.04em !important;
        line-height: 0.95 !important;
    }

    /* Hero Section - Massive & Bold */
    .hero {
        min-height: 85vh;
        padding: 7rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .hero-title,
    .hero-brand {
        font-size: 2.96875rem !important;
        font-weight: 800;
        text-transform: uppercase;
        line-height: 0.9;
        margin-bottom: 2rem;
        overflow-wrap: break-word;
        word-break: normal;
    }

    @media (min-width: 380px) {

        .hero-title,
        .hero-brand {
            font-size: 3.46875rem !important;
        }
    }

    .hero-subtitle {
        font-size: 1.1rem;
        opacity: 0.7;
        margin-bottom: 2.5rem;
        max-width: 100%;
        text-align: left;
    }

    .hero-visuals {
        display: none;
    }

    /* Buttons */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Navigation */
    .header-inner {
        padding: 0 1.5rem;
    }

    /* Header handled in dedicated block below */

    /* Projects / Work Section - Vertical Stack */
    #work .project-card {
        margin-bottom: 4rem;
        border-radius: 0;
        display: block;
    }

    .project-image-container {
        border-radius: 1px;
        height: auto;
        aspect-ratio: 4/5;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .project-info {
        position: static;
        opacity: 1;
        transform: none;
        padding: 0;
        background: transparent;
    }

    .project-title {
        font-size: 2.2rem;
        color: #000;
        margin-bottom: 0.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .project-tags {
        color: #666;
        font-size: 0.9rem;
    }

    /* Services Section */
    .why-us-section {
        padding: 4rem 0;
    }

    .why-title {
        font-size: 3rem !important;
        margin-bottom: 3rem;
    }

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

    /* Pricing Section Cards */
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Footer */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-main {
        gap: 3rem;
    }

    .footer-logo-img {
        width: 180px;
    }
}

/* =========================================

   Max-width: 768px
   ========================================= */

@media (max-width: 900px) {

    /* 1. Global Reset & Spacing */
    :root {
        --spacing-container: 1.5rem;
        /* Standard mobile padding */
    }

    body,
    html {
        overflow-x: hidden;
    }

    .hide-mobile {
        display: none !important;
    }

    .container {
        padding: 0 var(--spacing-container);
    }

    /* 2. Header Mobile Sticky Fix */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 2000 !important;
        background: rgba(249, 249, 249, 0.9) !important;
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* 2. Header Grid Layout */
    .header-inner {
        padding: 0 var(--spacing-container);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .logo {
        order: 0;
        /* Left */
        justify-self: start;
    }

    .header-logo-img {
        height: 24px;
    }

    .header-right {
        display: none;
        /* Hide old wrapper if present via specificity */
    }

    /* Target the flattened elements */
    .btn-upgrade {
        display: none !important;
        /* Hide Upgrade Button */
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        border-radius: 0;
        cursor: pointer;
        order: 1;
        /* Right */
        gap: 6px;
        /* Spacing between dashes */
        padding: 0;
    }



    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: #000;
        border-radius: 1px;
    }

    /* --- MOBILE SIDEBAR --- */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        /* Hidden by default */
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 2001;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-sidebar.active {
        right: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
    }

    .sidebar-title {
        display: none;
        /* Hide "Menu" text */
    }

    .sidebar-header {
        justify-content: flex-end;
        /* Align X to the right */
        margin-bottom: 2rem;
    }

    .sidebar-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        /* Smaller X */
        color: #000;
        /* Black X */
        cursor: pointer;
        line-height: 1;
        padding: 0.5rem;
    }

    .sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        flex-grow: 1;
    }

    .sidebar-link {
        font-size: 1.25rem;
        font-weight: 500;
        color: #000;
        border-bottom: 1px solid #eee;
        padding-bottom: 0.5rem;
    }

    .sidebar-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* 3. Hero Section */
    /* 3. Hero Section */
    .hero {
        margin: 1rem !important;
        /* Explicit margin */
        border-radius: 1.5rem !important;
        /* Explicit round corners */
        overflow: hidden !important;
        /* Ensure content clips to corners */
        height: 85vh;
        /* Tall but not full 100vh to show scroll hint */
        justify-content: flex-end;
        padding-bottom: 4rem;
        text-align: left;
        align-items: flex-start;
    }

    .hero-content {
        padding: 0 var(--spacing-container);
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 13vw;
        /* Massive scaling text */
        line-height: 0.85;
        letter-spacing: -0.04em;
        text-align: left;
        margin-bottom: 1rem;
    }

    .hero-badges {
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    /* 4. Services (The Grid -> Vertical Stack) */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Target the correct class: .service-item */
    .service-item {
        background: #111;
        /* Dark Card */
        border: 1px solid #222;
        border-radius: 16px;
        padding: 2rem;
        aspect-ratio: auto;
        /* Remove square constraint */
        min-height: auto;
        display: flex;
        /* Ensure flex layout */
        flex-direction: column;
    }

    .service-icon {
        background: #222;
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* Force VERTICAL layout when expanded - Override Desktop Grid */
    .service-item.expanded .service-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
        gap: 1rem;
        width: 100%;
    }

    .service-item p,
    .service-item.expanded .service-desc {
        font-size: 1rem;
        color: #888;
        line-height: 1.5;
        max-width: 100%;
        opacity: 1;
        transform: none;
        display: block !important;
        grid-area: auto !important;
        margin-top: 0;
    }

    /* Ensure image (if present) stacks */
    .service-item.expanded .service-img-thumb {
        grid-area: auto !important;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 120px;
    }

    .service-item.expanded .service-name {
        grid-area: auto !important;
        margin-bottom: 0.5rem;
    }

    .service-item.expanded .service-tags {
        max-width: 100%;
        margin-top: 1rem;
    }
}

/* 5. Projects (Bento Grid) */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.status-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7em;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* Desktop Bento Layout */
@media (min-width: 900px) {
    .projects-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 450px 450px;
        gap: 2rem;
        grid-template-areas:
            "hero hero"
            "left right";
        height: auto;
        /* Allow auto height now */
    }

    /* Hero (DawahNL) */
    .project-card-link:nth-of-type(1) {
        grid-area: hero;
        height: 100%;
    }

    .project-card-link:nth-of-type(1) article,
    .project-card-link:nth-of-type(1) .project-image {
        height: 100%;
    }

    /* ZorgzaamThuis */
    .project-card-link:nth-of-type(2) {
        grid-area: left;
    }

    /* Aboe Medina */
    .project-card-link:nth-of-type(3) {
        grid-area: right;
    }
}

.project-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.project-card-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* 6. Pricing */
.pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card.addon-card {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.addon-card .addon-content {
    margin-bottom: 1.5rem;
    width: 100%;
}

.addon-bottom {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.addon-price {
    margin-bottom: 0;
}

/* 7. Footer */
.pricing-footer-area {
    margin-top: 4rem;
    padding-top: 2rem;
    gap: 2rem;
}

/* Modal Adjustments */
/* Modal Adjustments */
.modal-content {
    max-width: 90vw;
    /* See sides */
    height: auto;
    /* Fit content */
    max-height: 85vh;
    /* Don't touch edges */
    border-radius: 20px;
    /* Card look */
    overflow: hidden;
    /* Clip image */
    margin: auto;
    /* Center in overlay */
    display: flex;
    flex-direction: column;
}

.modal-body-grid {
    display: flex;
    flex-direction: row;
    /* Force side-by-side */
    height: 100%;
    width: 100%;
}

.modal-image-col {
    display: none !important;
    /* Hide image as requested */
}

.modal-form-col {
    padding: 1.5rem;
    flex-grow: 1;
    width: 100% !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 80vh;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Modal Mobile Styles (kept as is) ... */
.modal-close {
    top: 1rem;
    right: 1rem;
    color: #000;
    background: transparent;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Slightly larger X */
    z-index: 10;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(0, 0, 0, 0.03);
    /* Very subtle hover bg */
}

/* =========================================
   DESKTOP MODAL CARD STYLES
   ========================================= */
@media (min-width: 900px) {
    .modal-content {
        width: 500px;
        /* Narrower since no image */
        max-width: 90vw;
        height: 600px;
        /* Fixed height for card look */
        max-height: 90vh;
        /* Safety */
        border-radius: 24px;
        /* Round edges */
        display: flex;
        flex-direction: row;
        overflow: hidden;
        background: #fff;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .modal-body-grid {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        /* Stack if anything, but mostly just one col now */
    }

    .modal-image-col {
        display: none !important;
    }

    .modal-form-col {
        width: 100%;
        /* Full width */
        padding: 2.5rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    /* Compact Content for Card Look */
    .custom-field textarea {
        background: #f5f5f5;
        border: none;
        padding: 0.6rem;
        border-radius: 8px;
        width: 100%;
        resize: none;
        font-family: inherit;
        font-size: 0.9rem;
    }

    .custom-field textarea:focus {
        outline: 2px solid #000;
        background: #fff;
    }

    .modal-header h3 {
        font-size: 1.5rem;
        /* Smaller title */
        margin-bottom: 0.5rem;
    }

    .modal-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        color: #666;
    }

    .no-pay-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

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

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .form-group input {
        padding: 0.6rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .btn-full-width {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .modal-summary p {
        font-size: 0.9rem;
    }

    /* Interactive Elements Compact */
    .plan-btn {
        padding: 0.25rem 0.5rem;
        /* Reduced padding */
        font-size: 0.75rem;
        /* Smaller font */
    }

    .modal-features-list {
        margin-bottom: 1rem;
        gap: 0.3rem;
    }

    .modal-features-list li {
        font-size: 0.85rem;
    }

    .modal-addon-toggle {
        padding: 0.6rem;
        margin-bottom: 1rem;
    }

    .addon-text {
        font-size: 0.85rem;
    }

    .modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        /* Removed grey bg */
        color: #000;
        z-index: 20;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal-close:hover {
        transform: rotate(90deg) scale(1.1);
    }
}

/* =========================================
   MODAL ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

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

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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



.modal-backdrop.open {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-backdrop.open .modal-content {
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
    /* Start hidden */
}

/* Staggered Content Animation */
.modal-backdrop.open .modal-form-col>* {
    opacity: 0;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-backdrop.open .modal-form-col>*:nth-child(1) {
    animation-delay: 0.2s;
}

.modal-backdrop.open .modal-form-col>*:nth-child(2) {
    animation-delay: 0.25s;
}

.modal-backdrop.open .modal-form-col>*:nth-child(3) {
    animation-delay: 0.3s;
}

.modal-backdrop.open .modal-form-col>*:nth-child(4) {
    animation-delay: 0.35s;
}

/* =========================================
   MODAL INTERACTIVE STYLES (Global)
   ========================================= */

.modal-plan-selection {
    margin-bottom: 1.5rem;
}

.plan-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #666;
}

.plan-selector-group {
    display: flex;
    gap: 0.5rem;
    background: #f0f0f0;
    padding: 0.3rem;
    border-radius: 8px;
}

.plan-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.plan-option input {
    position: absolute;
    opacity: 0;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #444;
}

.plan-option input:checked+.plan-btn {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.modal-features-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-features-list li {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-features-list li::before {
    content: '+';
    color: #39ff14;
    /* Green Plus */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.modal-addon-toggle {
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
}

.addon-checkbox-container {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
    /* Override generic label margin */
}

/* Custom Checkbox */
.addon-checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkmark::after {
    content: '✔';
    font-size: 0.8rem;
    color: #fff;
    display: none;
}

.addon-checkbox-container input:checked+.checkmark {
    background: #000;
    border-color: #000;
}

.addon-checkbox-container input:checked+.checkmark::after {
    display: block;
}

/* --- End of Styles --- */


/* Make the project card link block behave correctly */
.project-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-cta-btn {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        width: auto;
        justify-content: center;
    }

    /* Score card: reduce excessive min-height on mobile */
    .score-card {
        min-height: auto;
    }

    /* Let's Talk form card: full width on mobile */
    .lt-form-card {
        max-width: 100%;
    }

    /* Pricing toggle: better tap targets */
    .pricing-option {
        padding: 0.8rem 1.2rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Bento testimonials: tighter spacing */
    .bento-grid {
        gap: 1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    /* Service items: ensure clean mobile stacking */
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .service-item.expanded {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .service-num {
        font-size: 0.8rem;
    }

    .service-name {
        font-size: 1.4rem !important;
    }

    /* Pricing features: stack properly */
    .core-card {
        gap: 2rem;
    }

    /* Let's Talk section: form → content stack */
    .lets-talk-layout {
        gap: 2rem;
    }

    .lt-content .huge-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .lt-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* =========================================
   CRO OPTIMIZATIONS
   ========================================= */

.hidden {
    display: none;
}

/* Honeypot field — hidden from humans, filled by bots */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.btn-review {
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Most Popular Badge on Pricing Card */
.popular-badge {
    display: inline-block;
    width: fit-content;
    grid-column: 1 / -1;
    background: #d2ff37;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Pricing Micro-Copy */
.pricing-micro-copy {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 0.8rem;
    font-weight: 400;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
}

@media (max-width: 900px) {
    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1999;
        padding: 0.8rem 1.5rem;
        padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
        background: rgba(249, 249, 249, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: center;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        visibility: hidden;
    }

    .sticky-mobile-cta.visible {
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .sticky-cta-btn {
        width: 100%;
        background: #000;
        color: #fff;
        border: none;
        padding: 1rem;
        border-radius: 99px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        font-family: var(--font-body);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: transform 0.2s;
    }

    .sticky-cta-btn:active {
        transform: scale(0.98);
    }

    .sticky-cta-dot {
        width: 8px;
        height: 8px;
        background-color: #39ff14;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-green 1.5s infinite;
    }

    /* Add bottom padding to body so footer isn't hidden behind sticky CTA */
    body {
        padding-bottom: 70px;
    }
}

/* Form Success State */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    animation: slideUpFade 0.5s ease forwards;
}

.form-success-icon {
    width: 60px;
    height: 60px;
    background: #d2ff37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.form-success p {
    font-size: 0.95rem;
    color: #666;
    max-width: 300px;
    line-height: 1.5;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .grain-overlay {
        animation: none;
    }
}
/* =========================================
   Process Section (Hoe wij werken)
   ========================================= */
/* =========================================
   Process Section — gespiegeld op pricing-section
   Card-style container met dark gradient + groene accent
   ========================================= */
.process-section {
    margin: 2rem 0.6rem 3px;
    border-radius: 2.5rem;
    background-color: #080808;
    background-image: radial-gradient(circle at 50% 30%, rgba(35, 35, 35, 1) 0%, rgba(0, 0, 0, 1) 80%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.process-section .container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-section .section-header {
    position: relative;
    padding-top: 1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.process-section .section-title {
    font-size: clamp(3rem, 9vw, 6rem);
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    margin: 1rem 0 0;
}

.process-lead {
    max-width: 540px;
    margin: 1.5rem auto 0;
    color: #888;
    font-size: 1rem;
    line-height: 1.55;
}

.process-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

.process-step {
    background: #0d0d0d;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
                background 0.4s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step:hover {
    background: #111;
    transform: translateY(-4px);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover .process-step-num {
    color: #39ff14;
}

.process-step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.process-step-num {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

.process-step-meta {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 500;
}

.process-step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.process-step-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #39ff14;
    margin-top: 0.75rem;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.process-step:hover .process-step-title::after {
    width: 60px;
}

.process-step-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #888;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .process-section {
        margin: 3px 0.4rem;
        border-radius: 1.5rem;
        padding: 4rem 0 3rem;
    }
    .process-section .container { padding: 0 1.25rem; }
    .process-grid { gap: 0.5rem; }
    .process-step { min-height: 0; padding: 2rem 1.5rem; }
    .process-step-title { font-size: 1.4rem; }
    .process-lead { font-size: 0.95rem; }
}

/* Footer legal meta line */
.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-legal-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 0.02em;
}

/* =========================================
   Pricing Tiers — 3 cards layout
   ========================================= */
.pricing-lead {
    max-width: 540px;
    margin: 1.5rem auto 0;
    color: #888;
    font-size: 1rem;
    line-height: 1.55;
}

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

@media (min-width: 900px) {
    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        align-items: stretch;
    }
}

.tier-card {
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
                background 0.3s ease,
                border-color 0.3s ease;
}

.tier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tier-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
}

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

.tier-card--featured {
    background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
    border-color: rgba(57, 255, 20, 0.35);
    transform: translateY(-8px);
}

.tier-card--featured:hover {
    transform: translateY(-12px);
}

.tier-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #39ff14;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 99px;
    z-index: 2;
}

.tier-head {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tier-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}

.tier-audience {
    display: block;
    font-size: 0.78rem;
    color: #777;
    letter-spacing: 0.02em;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.tier-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.tier-card--featured .tier-price-amount {
    color: #39ff14;
}

.tier-price-suffix {
    font-size: 0.85rem;
    color: #777;
}

.tier-pitch {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #aaa;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tier-features li {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.45;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 14px;
    height: 8px;
    border-left: 2px solid #39ff14;
    border-bottom: 2px solid #39ff14;
    transform: rotate(-45deg);
}

.tier-cta {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.85rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.tier-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.tier-card--featured .tier-cta {
    background: #39ff14;
    color: #000;
    border-color: #39ff14;
    font-weight: 600;
}

.tier-card--featured .tier-cta:hover {
    background: #2ee012;
    border-color: #2ee012;
}

.tier-delivery {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

.pricing-footnote {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .tier-card--featured {
        transform: none;
    }
    .tier-card--featured:hover {
        transform: translateY(-4px);
    }
    .tier-price-amount {
        font-size: 2.2rem;
    }
}

/* =========================================
   Case page (cases/arbocontrols)
   ========================================= */
.case-page {
    background: #f9f9f9;
    color: #000;
}

.case-breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.85rem;
    background: #f1f1f1;
    border-bottom: 1px solid #e5e5e5;
}

.case-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    color: #666;
}

.case-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.6rem;
    color: #999;
}

.case-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.case-breadcrumb a:hover {
    color: #000;
}

.case-breadcrumb [aria-current="page"] {
    color: #000;
    font-weight: 500;
}

/* Hero */
.case-hero {
    padding: 4rem 0 3rem;
    background: #f9f9f9;
    border-bottom: 1px solid #e8e8e8;
}

.case-hero-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.case-tag {
    background: #000;
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    font-weight: 600;
}

.case-title {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 1.25rem;
    color: #0a0a0a;
    max-width: 900px;
}

.case-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.55;
    color: #444;
    max-width: 760px;
    margin: 0 0 2.5rem;
}

.case-subtitle a {
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #000;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.case-stat {
    border-left: 2px solid #39ff14;
    padding-left: 1rem;
}

.case-stat dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #777;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.case-stat dd {
    margin: 0;
    font-size: 1rem;
    color: #0a0a0a;
    font-weight: 600;
}

/* Results band */
.case-results {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0;
}

.case-section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #777;
    margin: 0 0 2rem;
    font-weight: 500;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.case-result {
    display: flex;
    flex-direction: column;
}

.case-result-number {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 700;
    color: #39ff14;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.case-result-label {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
}

.case-result-label sup {
    color: #39ff14;
}

.case-results-note {
    font-size: 0.78rem;
    color: #777;
    font-style: italic;
    margin: 0;
}

/* Body */
.case-body {
    padding: 5rem 0 6rem;
    background: #fff;
}

.case-body-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 980px) {
    .case-body-grid {
        grid-template-columns: 240px 1fr;
        gap: 4rem;
    }
}

.case-toc {
    font-size: 0.9rem;
}

@media (min-width: 980px) {
    .case-toc {
        position: sticky;
        top: 6rem;
        align-self: start;
        max-height: calc(100vh - 8rem);
        overflow-y: auto;
    }
}

.case-toc details {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.case-toc summary {
    font-weight: 600;
    cursor: pointer;
    color: #0a0a0a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.case-toc ol {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    counter-reset: toc;
}

.case-toc li {
    counter-increment: toc;
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
    position: relative;
}

.case-toc li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.7rem;
    color: #999;
    font-weight: 600;
}

.case-toc a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
}

.case-toc a:hover {
    color: #000;
}

/* Content */
.case-content {
    max-width: 760px;
    color: #222;
}

.case-content section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 6rem;
}

.case-content h2 {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    color: #0a0a0a;
}

.case-content h2::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #39ff14;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.case-content h3 {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.case-content p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 1.25rem;
}

.case-content strong {
    color: #0a0a0a;
    font-weight: 600;
}

.case-content em {
    color: #555;
    font-style: italic;
}

.case-content ul,
.case-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
}

.case-content ul li,
.case-content ol li {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
    margin-bottom: 0.5rem;
}

.case-content ul li::marker {
    color: #39ff14;
}

/* Metrics table */
.case-metrics-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.case-metrics-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.case-metrics-table thead {
    background: #0a0a0a;
    color: #fff;
}

.case-metrics-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.case-metrics-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.case-metrics-table tbody tr:last-child td {
    border-bottom: none;
}

.case-metrics-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.case-metrics-table .positive {
    color: #16a34a;
    font-weight: 700;
}

.case-disclaimer {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    padding: 1rem 1.25rem;
    background: #fff8e6;
    border-left: 3px solid #f0c800;
    border-radius: 6px;
    margin: 1.5rem 0;
}

/* FAQ in case */
.case-faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.case-faq-item summary {
    font-weight: 600;
    color: #0a0a0a;
    cursor: pointer;
    list-style: none;
    padding-right: 2rem;
    position: relative;
    font-size: 1.02rem;
}

.case-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #39ff14;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.case-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.case-faq-item p {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* CTA block */
.case-cta {
    background: #0a0a0a;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.case-cta h2 {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.case-cta p {
    color: #aaa;
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    line-height: 1.55;
}

.case-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.case-cta .btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.case-cta .btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .case-hero { padding: 2.5rem 0 2rem; }
    .case-body { padding: 3rem 0 4rem; }
    .case-results { padding: 3rem 0; }
    .case-results-grid { gap: 1.5rem; }
    .case-cta { padding: 3.5rem 0; }
    .case-content section { margin-bottom: 2.5rem; }
}

/* =========================================
   Case-placeholder card on homepage Werk-grid
   ========================================= */
.project-case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.project-case-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.case-placeholder-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #39ff14;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
}

.case-placeholder-headline {
    font-family: var(--font-heading), Outfit, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    position: relative;
}

.case-placeholder-cta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    position: relative;
    transition: background 0.3s ease;
}

.project-card-link:hover .case-placeholder-cta {
    background: #39ff14;
    color: #000;
    border-color: #39ff14;
}

.status-badge--case {
    background: #39ff14;
    color: #000;
}
