:root {
    --brand: #00A99D;
    --brand-light: #e6f7f6;
    --brand-hover: #008f86;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --radius: 20px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 700; }

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

.brand-logo { height: 40px; }

.avatar-stack img { margin-right: -15px; }

.avatar-stack img:last-child { margin-right: 0; }

.icon-circle-sm {
    width: 40px;
    height: 40px;
}

.section-tint { background-color: var(--brand-light); }

.section-muted { background-color: #fbfbfb; }

.section-soft { background-color: #f0f9f8; }

/* --- Buttons --- */
.btn-brand {
    background-color: var(--brand);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 169, 157, 0.2);
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: var(--brand-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 169, 157, 0.3);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--brand);
    border: 2px solid var(--brand-light);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    border-color: var(--brand);
    background-color: var(--brand-light);
    color: var(--brand-hover);
}

.btn-brand-outline.is-active {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand);
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 15px;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--brand-light);
    color: var(--brand);
    padding-left: 25px;
}

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

/* --- Hero Section --- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #fff 0%, var(--brand-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    top: -10%; right: -5%;
    width: 50%; height: 80%;
    background: #d4f2ef;
    opacity: 0.5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    filter: blur(60px);
}

.hero-media {
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 169, 157, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    height: 500px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: 0.5s;
}

.hero-media:hover {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@media (max-width: 767.98px) {
    .hero-media {
        height: 200px;
    }
}

.hero-badge {
    position: absolute;
    bottom: 40px; left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Page Hero --- */
.page-hero {
    padding: 140px 0 90px;
    background: var(--brand-light);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-light);
    opacity: 0.7;
    z-index: 0;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

/* --- Service Pages --- */
.service-hero-alt {
    padding: 140px 0 90px;
    background: var(--brand-light);
}

.service-hero-alt__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    color: var(--brand);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-hero-alt__title {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.service-hero-alt__subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.service-hero-alt__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.service-hero-alt__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-hero-alt__trust-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #e8efee;
}

.service-hero-alt__trust-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.service-hero-alt__trust-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.service-hero-alt__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 169, 157, 0.18);
    background: #ffffff;
}

.service-hero-alt__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.service-hero-alt__badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #e8efee;
    text-align: center;
    min-width: 90px;
}

.service-section {
    padding: 70px 0;
    background: #ffffff;
}

.service-section--soft {
    background: #f2fbfa;
}

.service-section__header {
    margin-bottom: 26px;
}

.service-section__header h2 {
    font-weight: 700;
    margin-bottom: 6px;
}

.install-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.install-card__title {
    font-weight: 700;
    margin-bottom: 10px;
}

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

.service-feature {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 18px;
    height: 100%;
}

.service-feature__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-split {
    padding: 70px 0;
    background: #ffffff;
}

.service-split__card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 22px;
}

.service-steps {
    padding-left: 18px;
    color: var(--text-light);
}

.service-steps li {
    margin-bottom: 10px;
}

.service-split__media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-split__media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.service-approach {
    padding: 70px 0;
    background: #ffffff;
}

.approach-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.approach-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.approach-card__title {
    font-weight: 700;
    margin-bottom: 12px;
}

.approach-steps {
    display: grid;
    gap: 12px;
}

.approach-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid #edf3f2;
    border-radius: 16px;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.approach-step:hover {
    transform: translateY(-2px);
    border-color: var(--brand-light);
}

.approach-step__badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.approach-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e8efee;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.approach-pill i {
    color: var(--brand);
}

.approach-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.approach-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.about-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8efee;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.about-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.05);
}

.about-stat-card__value {
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
}

.kernwaarden-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    animation: galleryFade 0.6s ease both;
}

.service-gallery__item:nth-child(2) { animation-delay: 0.05s; }
.service-gallery__item:nth-child(3) { animation-delay: 0.1s; }
.service-gallery__item:nth-child(4) { animation-delay: 0.15s; }
.service-gallery__item:nth-child(5) { animation-delay: 0.2s; }
.service-gallery__item:nth-child(6) { animation-delay: 0.25s; }

.service-gallery__item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    will-change: transform;
}

.service-gallery__item:hover img {
    transform: scale(1.12);
}

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

@media (max-width: 991.98px) {
    .service-hero-alt { padding: 120px 0 60px; }
    .service-hero-alt__trust { grid-template-columns: 1fr; }
    .service-hero-alt__image img { height: 320px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-gallery { grid-template-columns: repeat(2, 1fr); }
    .kernwaarden-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-media img { height: 300px; }
}

@media (max-width: 575.98px) {
    .service-grid { grid-template-columns: 1fr; }
    .service-gallery { grid-template-columns: 1fr; }
    .kernwaarden-grid { grid-template-columns: 1fr; }
    .about-media img { height: 240px; }
}

.page-hero__content {
    max-width: 760px;
}

.page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.page-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0.12);
}

.page-hero__title {
    margin: 18px 0 12px;
    font-size: 2.6rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin-bottom: 22px;
}

.page-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(var(--brand-rgb), 0.15);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.page-hero__chip--accent {
    background: rgba(var(--brand-rgb), 0.12);
    border-color: rgba(var(--brand-rgb), 0.35);
    color: var(--brand);
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 120px 0 70px;
    }
    .page-hero__title {
        font-size: 2.2rem;
    }
}

/* --- Feature Section --- */
.feature-card {
    padding: 20px;
    border-radius: var(--radius);
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--brand-light);
}

.feature-icon {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 15px;
    background: white;
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Cards --- */
.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    border-color: var(--brand-light);
    box-shadow: 0 20px 40px rgba(0, 169, 157, 0.1);
    transform: translateY(-10px);
}

.info-icon {
    width: 60px; height: 60px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: var(--brand);
    color: white;
}

/* --- Stats Panel --- */
.stats-panel {
    background: var(--brand);
    color: white;
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stats-panel__item {
    position: relative;
    padding: 0 12px;
}

.stats-panel__value {
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    font-size: clamp(2rem, 1.5rem + 1vw, 2.6rem);
}

.stats-panel__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .stats-panel__item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        bottom: 10%;
        width: 1px;
        background: rgba(255, 255, 255, 0.26);
    }
}

@media (max-width: 767.98px) {
    .stats-panel {
        margin-top: -24px;
        padding: 16px;
        border-radius: 18px;
        background: linear-gradient(145deg, #13b2a8 0%, #0ea39a 100%);
        box-shadow: 0 14px 30px rgba(0, 169, 157, 0.35);
    }

    .stats-panel .stats-panel__row {
        row-gap: 0;
    }

    .stats-panel .stats-panel__item {
        padding: 14px 4px;
    }

    .stats-panel .stats-panel__item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .stats-panel .stats-panel__value {
        margin-bottom: 4px;
        font-size: 2.05rem;
    }

    .stats-panel .stats-panel__label {
        font-size: 1rem;
    }
}

/* --- Projects --- */
.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.project-item.project-item-sm { height: 142px; }

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: 0.3s;
}

.project-item:hover .project-overlay { bottom: 0; }

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

/* --- Workflow (Werkwijze) --- */
.workflow-section {
    position: relative;
    background: #ffffff;
}

.workflow-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
}

.workflow-row {
    position: relative;
}

.workflow-step {
    position: relative;
}

.workflow-card {
    background: #ffffff;
    padding: 32px 28px 28px;
    border-radius: 22px;
    position: relative;
    height: 100%;
    border: 1.5px solid #e8efee;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.workflow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(0,169,157,0.35), rgba(0,169,157,0)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.workflow-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-light);
}

.workflow-number {
    position: absolute;
    top: 16px;
    right: 18px;
    font-weight: 700;
    color: rgba(0, 169, 157, 0.18);
    font-size: 2rem;
    letter-spacing: 1px;
}

.workflow-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    color: var(--brand);
    border: 1.5px solid var(--brand-light);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.workflow-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.workflow-rail {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,169,157,0.15), rgba(0,169,157,0.4), rgba(0,169,157,0.15));
    display: none;
}

@media (min-width: 992px) {
    .workflow-rail { display: block; }
}

/* --- Workflow Alt (Creative Split) --- */
.workflow-alt {
    background: #fbfbfb;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.workflow-alt-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #ececec;
    padding: 28px;
}

.workflow-side {
    border-radius: 26px;
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

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

.workflow-side-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #eee;
    font-weight: 600;
    color: var(--text-dark);
}

.workflow-track {
    position: relative;
    padding-left: 36px;
    margin-top: 10px;
}

.workflow-track::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    width: 2px;
    height: calc(100% - 6px);
    background: linear-gradient(180deg, var(--brand) 0%, rgba(0,169,157,0.2) 100%);
}

.workflow-node {
    position: relative;
    padding: 16px 18px 16px 22px;
    border-radius: 18px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    margin-bottom: 16px;
}

.workflow-node:last-child { margin-bottom: 0; }

.workflow-dot {
    position: absolute;
    left: -2px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
}

.workflow-node-title {
    font-weight: 700;
    margin-bottom: 6px;
}

/* --- Workflow Variant: Elegant Minimal --- */
.workflow-minimal {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.workflow-minimal-card {
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
    background: #ffffff;
    height: 100%;
}

.workflow-minimal-index {
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* --- Workflow Variant: Bold Geometric --- */
.workflow-geo {
    background: #f9fbfb;
    border-top: 1px solid #eef1f1;
    border-bottom: 1px solid #eef1f1;
}

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

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

.geo-card {
    position: relative;
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e8efee;
}

.geo-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(0, 169, 157, 0.3);
    border-radius: 18px;
    pointer-events: none;
}

.geo-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- Workflow Variant: Editorial --- */
.workflow-editorial {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.editorial-step {
    padding: 22px 0;
    border-bottom: 1px solid #eeeeee;
}

.editorial-step:last-child { border-bottom: none; }

.editorial-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #94a1a6;
}

/* --- Workflow Variant: Architectural Grid --- */
.workflow-arch {
    background: #f7f9f9;
    border-top: 1px solid #eef1f1;
}

.arch-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

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

.arch-panel {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 24px;
}

.arch-panel h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.arch-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 767.98px) {
    .arch-steps { grid-template-columns: 1fr; }
}

.arch-step {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 18px;
    background: #ffffff;
}

.arch-step .arch-id {
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 6px;
}

/* --- Workflow Image Variants --- */
.workflow-image-variant {
    background: #fbfbfb;
    border-top: 1px solid #f0f0f0;
}

.workflow-image-frame {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    position: relative;
    min-height: 420px;
}

.workflow-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workflow-image-panel {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 26px;
}

.workflow-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
    font-size: 0.85rem;
}

.workflow-chip-contrast {
    background: #ffffff;
    border: 1px solid #dff3f1;
    color: var(--brand);
}

.workflow-steps-list {
    display: grid;
    gap: 14px;
}

.workflow-step-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.workflow-step-toggle {
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
}

.workflow-step-toggle:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.workflow-step-row:hover {
    transform: translateY(-3px);
    border-color: var(--brand-light);
    background-color: #eef9f7;
}

.workflow-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.workflow-step-row:hover .workflow-step-badge {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
}

.workflow-step-extra {
    margin: 8px 0 0;
    padding-left: 62px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.workflow-image-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
}

@media (max-width: 991.98px) {
    .workflow-image-split { grid-template-columns: 1fr; }
}

/* --- Tab Section --- */
.tab-section {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.tab-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
}

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

.tab-list {
    border-right: 1px solid #eee;
    padding-right: 10px;
}

@media (max-width: 991.98px) {
    .tab-list {
        border-right: none;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .tab-list { grid-template-columns: 1fr; }
}

.tab-btn {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 14px 12px;
    font-weight: 600;
    color: var(--text-dark);
    border-left: 3px solid transparent;
    transition: 0.2s;
    position: relative;
}

.tab-btn.active {
    color: var(--brand);
    border-left-color: var(--brand);
    background: var(--brand-light);
}

.tab-btn:hover {
    color: var(--brand);
    background: var(--brand-light);
}

@media (max-width: 991.98px) {
    .tab-btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 12px;
    }
    .tab-btn.active { border-bottom-color: var(--brand); }
}

.tab-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 24px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tab-card:hover {
    border-color: var(--brand-light);
    transform: translateY(-2px);
}

.tab-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 0;
    min-height: 360px;
}

.tab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tab-media:hover img {
    transform: scale(1.03);
}

.tab-bullets {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
}

.tab-bullet {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.95rem;
}

.tab-bullet i { color: var(--brand); }

.tab-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 991.98px) {
    .tab-layout { grid-template-columns: 1fr; }
    .tab-media { margin-bottom: 18px; }
}

.tab-content h3 { margin-top: 2px; }

.tab-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.tab-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tab-tag {
    background: var(--brand-light);
    color: var(--brand);
    border: 1px solid #dff3f1;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* --- Choice Section --- */
.panel-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 22px;
    height: 100%;
}

.choice-list {
    display: grid;
    gap: 10px;
}

.choice-item {
    width: 100%;
    text-align: left;
    border: 1px solid #e6efee;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.choice-item.is-active {
    border-color: var(--brand);
    background: #f3fbfa;
    color: var(--brand);
}

.choice-sub {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.choice-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.choice-footer {
    margin-top: 16px;
    padding-top: 14px;
    display: grid;
    gap: 10px;
}

.choice-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.choice-chip {
    background: #ffffff;
    border: 1px solid #dff3f1;
    color: var(--text-dark);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* --- Testimonials --- */
.testimonial-card {
    background: #fbfbfb;
    padding: 30px;
    border-radius: var(--radius);
    height: 100%;
}

.testimonial-stars { color: #ffc107; margin-bottom: 15px; }

.reviews-swiper {
    padding-bottom: 34px;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

.reviews-swiper .testimonial-card {
    height: 100%;
}

.reviews-swiper__pagination {
    bottom: 0 !important;
}

.reviews-swiper__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(var(--brand-rgb), 0.28);
    opacity: 1;
}

.reviews-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--brand);
}

/* --- FAQ Accordion --- */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    border-radius: 15px !important;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.accordion-item:hover .accordion-button {
    transform: translateY(-2px);
    background-color: #f7fbfb;
    color: var(--brand);
}

.accordion-button:not(.collapsed) {
    background-color: var(--brand-light);
    color: var(--brand);
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    margin-top: -5px;
    color: var(--text-light);
}

/* --- Articles --- */
.article-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.article-media { height: 200px; object-fit: cover; width: 100%; }

.article-body { padding: 25px; background: white; }

/* --- Promo Panel --- */
.promo-panel {
    background-color: var(--brand-light);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.form-elevated input, .form-elevated select {
    border: 2px solid transparent;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.form-elevated input:focus, .form-elevated select:focus {
    border-color: var(--brand);
    box-shadow: 0 5px 15px rgba(0, 169, 157, 0.1);
    outline: none;
}

/* --- Footer --- */
footer {
    margin-top: 80px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 60px 0 30px;
}

footer h5 { margin-bottom: 25px; }

footer a { color: var(--text-light); text-decoration: none; transition: 0.3s; }

footer a:hover { color: var(--brand); }

/* --- Kitchen Sink --- */
.kitchen-hero {
    padding: 140px 0 80px;
    background: var(--brand-light);
    text-align: center;
}

.kitchen-hero__eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    color: var(--brand);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kitchen-hero__title {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.kitchen-hero__subtitle {
    color: var(--text-light);
    margin-bottom: 20px;
}

.kitchen-hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.kitchen-section {
    padding: 70px 0;
    background: #ffffff;
}

.kitchen-section--soft {
    background: #f2fbfa;
}

.kitchen-section--muted {
    background: #f6fbfb;
}

.kitchen-title {
    font-weight: 700;
    margin-bottom: 24px;
}

.kitchen-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
}

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

.pricing-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.pricing-card--outline {
    background: #f8fffe;
}

.pricing-card__eyebrow {
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.pricing-card__price {
    font-size: 2rem;
    font-weight: 700;
    margin: 12px 0 16px;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: var(--text-light);
}

.icon-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.icon-list i {
    color: var(--brand);
}

.quote-card {
    background: #ffffff;
    border: 1px solid #e8efee;
    border-radius: 18px;
    padding: 22px;
    position: relative;
}

.quote-card__mark {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: var(--brand);
}

.quote-card__author {
    font-weight: 700;
    margin-top: 12px;
}

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

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