/* === Design tokens === */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --orange: #F05020;
    --orange-hover: #E04518;
    --orange-glow: rgba(240, 80, 32, 0.35);
    --orange-light: #FFF4F0;
    --orange-accessible: #C43D10;
    --black: #0F0F0F;
    --black-soft: #1A1A1A;
    --dark-grey: #3D3D3D;
    --grey: #6B7280;
    --grey-light: #9CA3AF;
    --light-grey: #F8F9FB;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1180px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --shadow-sm: 0 1px 3px rgba(15, 15, 15, 0.06), 0 1px 2px rgba(15, 15, 15, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 15, 15, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 15, 15, 0.12);
    --shadow-xl: 0 24px 60px rgba(15, 15, 15, 0.16);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-grey);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

a {
    color: var(--orange-accessible);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4 {
    color: var(--black);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Skip link === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus { top: 0; }

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav--scrolled,
.nav--solid {
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav__logo img {
    height: 52px;
    width: auto;
    background: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    transition: transform var(--transition);
}

.nav__logo:hover img {
    transform: scale(1.02);
}

.nav__links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}

.nav__links a:not(.btn) {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: color var(--transition), background var(--transition);
}

.nav__links a:not(.btn):hover,
.nav__links a:not(.btn).active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.nav__links a:not(.btn).active {
    color: var(--orange);
    background: rgba(240, 80, 32, 0.12);
}

.nav__hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    min-height: 48px;
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 14px var(--orange-glow);
}

.btn--primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--orange-glow);
    text-decoration: none;
    color: var(--white);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn--outline {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
}

.btn--outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

/* White context buttons */
.section .btn--secondary,
.cta-banner .btn--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.section .btn--outline {
    border-color: var(--orange);
    color: var(--orange);
}

/* === Hero === */
.hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 7rem 0 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.55) 45%, rgba(15, 15, 15, 0.25) 100%),
        linear-gradient(to top, rgba(15, 15, 15, 0.6) 0%, transparent 40%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

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

.hero__content {
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 80, 32, 0.15);
    border: 1px solid rgba(240, 80, 32, 0.35);
    color: #FFB89A;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.08;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero p {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    line-height: 1.65;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.hero__badge svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
    flex-shrink: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
}

/* === Trust bar === */
.trust-bar {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
    padding-bottom: 1rem;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 15, 15, 0.06);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.trust-bar__item:hover {
    background: var(--light-grey);
}

.trust-bar__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.trust-bar__text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.trust-bar__text span {
    font-size: 0.8125rem;
    color: var(--grey);
}

/* === Sections === */
.section {
    padding: 5.5rem 0;
}

.section--grey {
    background: var(--light-grey);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.section--orange {
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 100%);
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section__title {
    text-align: center;
    margin-bottom: 0;
}

.section__subtitle {
    text-align: center;
    max-width: 560px;
    margin: 1rem auto 0;
    color: var(--grey);
    font-size: 1.0625rem;
    line-height: 1.65;
}

/* === Cards === */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 15, 15, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card__image-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 60%, rgba(240, 80, 32, 0.2) 100%);
}

.image-placeholder__icon {
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.85;
}

.image-placeholder--service {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 60%, rgba(240, 80, 32, 0.2) 100%);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover img {
    transform: scale(1.06);
}

.card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__body h3 {
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.card:hover .card__body h3 {
    color: var(--orange);
}

.card__body p {
    color: var(--grey);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    flex: 1;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap var(--transition);
}

.card:hover .card__link {
    gap: 0.6rem;
}

/* === About === */
.about-split--text-only {
    grid-template-columns: 1fr;
    max-width: 42rem;
}

.about-split--text-only .about-split__text h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-split__image {
    position: relative;
}

.about-split__image::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid var(--orange);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 0;
}

.about-split__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-split__text .section__label {
    display: block;
    text-align: left;
}

.about-split__text h2 {
    margin-bottom: 1.25rem;
}

.about-split__text p {
    margin-bottom: 1rem;
    color: var(--grey);
    font-size: 1.0625rem;
}

.about-split__text .btn {
    margin-top: 0.75rem;
}

/* === USP === */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.usp-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 15, 15, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.usp-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--orange-light), #FFE8DF);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
}

.usp-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.usp-card p {
    color: var(--grey);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* === Process === */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(240, 80, 32, 0.2));
    z-index: 0;
}

.process__step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--white);
    border: 2px solid var(--orange);
    color: var(--orange);
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.process__step h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.process__step p {
    color: var(--grey);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* === Reviews === */
.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.review {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 15, 15, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review__quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--orange-light);
    font-family: Georgia, serif;
    margin-bottom: -0.5rem;
}

.review__stars {
    margin-bottom: 1rem;
}

.review__star {
    color: #E5E7EB;
    font-size: 1rem;
}

.review__star--filled {
    color: #FBBF24;
}

.review__text {
    flex: 1;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.review__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 15, 15, 0.06);
}

.review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #FF8A5C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.review__author {
    font-style: normal;
    font-weight: 700;
    color: var(--black);
    font-size: 0.875rem;
    display: block;
}

.review__service {
    font-size: 0.75rem;
    color: var(--grey);
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 15, 15, 0.06);
}

.rating-badge__score {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.rating-badge__stars {
    color: #FBBF24;
    letter-spacing: 2px;
}

.rating-badge__count {
    display: block;
    font-size: 0.8125rem;
    color: var(--grey);
}

/* === Project preview === */
.project-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-preview__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.project-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-preview__item:hover img {
    transform: scale(1.08);
}

.project-preview__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.85));
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* === FAQ === */
.faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 15, 15, 0.08);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq__item--open {
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 80, 32, 0.2);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: color var(--transition);
}

.faq__item--open .faq__question {
    color: var(--orange);
}

.faq__question::after {
    content: '';
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--light-grey);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F05020' d='M6 1v10M1 6h10' stroke='%23F05020' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s, background-color 0.3s;
}

.faq__item--open .faq__question::after {
    transform: rotate(45deg);
    background-color: var(--orange-light);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__item--open .faq__answer {
    max-height: 400px;
}

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--grey);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* === Service detail === */
.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
}

.service + .service {
    border-top: 1px solid rgba(15, 15, 15, 0.06);
}

.service:nth-child(even) .service__image {
    order: 2;
}

.service__image {
    position: relative;
}

.service__image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.service__text .section__label {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
}

.service__text h2 {
    margin-bottom: 1rem;
}

.service__text p {
    margin-bottom: 1rem;
    color: var(--grey);
    font-size: 1.0625rem;
}

.service__features {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.service__features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* === Gallery === */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.gallery__item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery-section-title {
    font-size: 1.375rem;
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 15, 15, 0.06);
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
    color: var(--black);
    -webkit-appearance: none;
    appearance: none;
}

.form__group select {
    padding-right: 2.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-light);
}

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

.form__submit {
    width: 100%;
    min-height: 3rem;
    margin-top: 0.25rem;
}

.form__message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    display: none;
    font-size: 0.9375rem;
}

.form__message--success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form__message--error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.contact-info {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 6rem;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info__item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(240, 80, 32, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.85);
}

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

.contact-info strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
}

.company-card {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.company-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.company-card__list {
    margin: 0;
}

.company-card__row {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.5rem 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-card__row:last-child {
    border-bottom: none;
}

.company-card dt {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.company-card dd {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* === CTA Banner === */
.cta-banner {
    position: relative;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 120%, rgba(240, 80, 32, 0.25), transparent),
        radial-gradient(ellipse 40% 60% at 80% 0%, rgba(240, 80, 32, 0.1), transparent);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    margin: 0 0.4rem;
}

/* === Page hero === */
.page-hero {
    background: var(--black);
    color: var(--white);
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(240, 80, 32, 0.2), transparent),
        linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 1) 100%);
}

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

.page-hero .section__label {
    margin-bottom: 1rem;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
}

/* === Footer === */
.footer {
    background: var(--black-soft);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
    text-decoration: none;
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
}

.footer__legal {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__legal[hidden] { display: none; }

/* === Local SEO / Werkgebied === */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin: 2rem 0;
}

.city-tag {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--black);
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

a.city-tag:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--orange);
}

.local-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(15, 15, 15, 0.06);
    margin-bottom: 1.25rem;
}

.local-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.local-block p {
    color: var(--grey);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.local-block__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
}

.gallery--spaced {
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--grey);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.seo-text p { margin-bottom: 1rem; }

/* === Nav CTA === */
.nav__cta {
    margin-left: 0.5rem;
}

.nav__cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    min-height: auto;
}

/* === Floating WhatsApp === */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 90;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    color: var(--white);
}

/* === Scroll reveal === */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 1024px) {
    .cards { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }

    .section { padding: 3rem 0; }

    .section__header { margin-bottom: 2rem; }

    .section__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

    .nav { padding: 0.75rem 0; }
    .nav--scrolled, .nav--solid { padding: 0.6rem 0; }

    .nav__logo img {
        height: 42px;
        padding: 4px 10px;
    }

    .nav__hamburger { display: block; }

    .nav__links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        background: rgba(15, 15, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.25rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-xl);
    }

    .nav__links.open { display: flex; }

    .nav__links a:not(.btn) {
        display: block;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-sm);
    }

    .nav__cta { display: none; }

    .hero {
        min-height: auto;
        padding: 5.5rem 0 4rem;
        background-position: center center !important;
    }

    .hero::after { height: 60px; }

    .hero__eyebrow {
        font-size: 0.6875rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.625rem, 7.5vw, 2.25rem);
        line-height: 1.12;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero__badges {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

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

    .trust-bar {
        margin-top: -1.5rem;
        padding-bottom: 0.5rem;
    }

    .trust-bar__grid {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 0.75rem;
    }

    .trust-bar__item {
        padding: 0.625rem 0.75rem;
        gap: 0.75rem;
    }

    .trust-bar__icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .trust-bar__text strong {
        font-size: 0.875rem;
    }

    .trust-bar__text span {
        font-size: 0.75rem;
    }

    .about-split { grid-template-columns: 1fr; gap: 2rem; }

    .about-split--text-only { max-width: none; }

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

    .card__body { padding: 1.25rem 1.5rem 1.5rem; }

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

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

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

    .project-preview { grid-template-columns: 1fr; }

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

    .gallery--spaced { margin-bottom: 2.5rem; }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .city-tag {
        padding: 0.625rem 0.5rem;
        font-size: 0.8125rem;
    }

    .service {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .service:nth-child(even) .service__image { order: 0; }

    .service__image img { height: 240px; }

    .image-placeholder--service { height: 240px; }

    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .contact-info { position: static; }

    .contact-form-card, .contact-info { padding: 1.25rem; }

    .contact-form-card h2,
    .contact-info h2 {
        font-size: 1.375rem;
    }

    .form__group {
        margin-bottom: 1rem;
    }

    .form__group label {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }

    .form__group input,
    .form__group textarea,
    .form__group select {
        font-size: 1rem;
        min-height: 3rem;
        padding: 0.75rem 1rem;
    }

    .form__group select {
        padding-right: 2.5rem;
    }

    .form__group textarea {
        min-height: 8rem;
    }

    .form__submit {
        min-height: 3.25rem;
        font-size: 1rem;
    }

    .contact-info a {
        word-break: break-word;
    }

    .contact-info .btn--whatsapp {
        min-height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-card__row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .local-block { padding: 1.25rem; }

    .local-block__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .local-block__actions .btn {
        width: 100%;
        justify-content: center;
        margin-left: 0 !important;
    }

    .cta-banner { padding: 3rem 1rem; }

    .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

    .cta-banner .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 100%;
        width: 100%;
    }

    .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .page-hero {
        padding: 6rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: clamp(1.625rem, 6vw, 2.25rem);
    }

    .page-hero p {
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
        width: 52px;
        height: 52px;
    }

    .lightbox { padding: 1rem; }

    .lightbox__close {
        top: max(1rem, env(safe-area-inset-top));
        right: max(1rem, env(safe-area-inset-right));
    }

    .faq__question {
        font-size: 0.9375rem;
        padding: 1rem 2.5rem 1rem 0;
    }
}

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

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