/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --sync-green: var(--color-primary);
    --sync-green-hover: var(--color-primary-dark);
    --sync-green-soft: var(--color-primary-95);
    --sync-accent-bright: var(--color-primary-30);
    --sync-accent-pale: var(--color-primary-70);
    --sync-dark: #0a131a;
    --sync-dark-light: #111f29;
    --sync-text: #172029;
    --sync-text-muted: #6c757d;
    --sync-border: #e6eaed;
    --sync-section: #f7f9fa;
    --sync-shadow: 0 18px 50px rgba(10, 19, 26, 0.09);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

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

section[id] {
    scroll-margin-top: 92px;
}

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

.section-padding {
    padding: 100px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--sync-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--sync-green);
}

.section-title {
    color: var(--sync-text);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.section-lead {
    color: var(--sync-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Custom Utilities --- */
.text-green {
    color: var(--sync-green) !important;
}

.bg-dark-custom {
    background-color: var(--sync-dark) !important;
}

.bg-soft {
    background: var(--sync-section);
}

.btn {
    font-weight: 600;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.btn-green {
    background-color: var(--sync-green);
    color: #ffffff;
    border: 1px solid var(--sync-green);
    box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.24);
}

.btn-green:hover,
.btn-green:focus {
    background-color: var(--sync-green-hover);
    border-color: var(--sync-green-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    background: transparent;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    background: #ffffff;
    color: var(--sync-dark);
    transform: translateY(-1px);
}

.btn-outline-green {
    border: 1px solid var(--sync-green);
    color: var(--sync-green);
    background: transparent;
}

.btn-outline-green:hover,
.btn-outline-green:focus {
    color: #fff;
    background: var(--sync-green);
}

/* --- Navbar --- */
.navbar {
    padding: 1rem 0;
    background-color: var(--sync-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1030;
    transition: box-shadow 0.2s ease;
}

.navbar.scrolled {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.navbar-brand img {
    width: auto;
    max-width: 210px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0 0.35rem;
    position: relative;
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link.active {
    color: var(--sync-green) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.25rem;
    height: 2px;
    background: var(--sync-green);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    color: #ffffff;
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--brand-rgb), 0.35);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 0.4rem;
    background-color: var(--sync-green);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.24);
}

.btn-nav-cta:hover {
    background-color: var(--sync-green-hover);
    color: #ffffff;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background-image:
        linear-gradient(to right, var(--sync-dark) 42%, rgba(10, 19, 26, 0.88) 59%, rgba(10, 19, 26, 0.16) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 115px 0 140px;
    isolation: isolate;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(to top, rgba(10, 19, 26, 0.16), transparent);
    pointer-events: none;
    z-index: -1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--sync-accent-pale);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.hero-eyebrow i {
    color: var(--sync-green);
    font-size: 1.05rem;
}

.hero-title {
    font-size: clamp(2.85rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.06;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
}

.hero-trust {
    margin-top: 2.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-trust i {
    color: var(--sync-green);
}

/* --- Inner Page Hero --- */
.page-hero {
    position: relative;
    background-color: var(--sync-dark);
    background-image:
        linear-gradient(to bottom, rgba(10, 19, 26, 0.82), rgba(10, 19, 26, 0.93)),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 160px 0 140px;
    isolation: isolate;
}

.page-hero .hero-eyebrow {
    justify-content: center;
}

.page-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .page-hero {
        padding: 130px 0 110px;
    }
}

/* --- Services / Features Section --- */
.services-overview {
    position: relative;
    z-index: 2;
}

.feature-column {
    height: 100%;
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--sync-border);
}

.feature-column:last-child {
    border-right: 0;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--sync-green);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--sync-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* --- Detailed Services --- */
.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--sync-border);
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sync-shadow);
    border-color: rgba(var(--brand-rgb), 0.35);
}

.service-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--sync-green-soft);
    color: var(--sync-green);
    font-size: 1.55rem;
    margin-bottom: 1.4rem;
}

.service-card h3 {
    font-size: 1.22rem;
    font-weight: 750;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--sync-text-muted);
    line-height: 1.7;
    font-size: 0.93rem;
}

.service-list {
    padding: 0;
    margin: 1.3rem 0 0;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #47525c;
    font-size: 0.88rem;
    margin-top: 0.65rem;
}

.service-list i {
    color: var(--sync-green);
    margin-top: 0.1rem;
}

/* --- Over Mij Section --- */
.about-visual {
    position: relative;
    min-height: 500px;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(var(--brand-rgb), 0.42), transparent 33%),
        linear-gradient(145deg, #152733 0%, var(--sync-dark) 62%);
    box-shadow: var(--sync-shadow);
}

.about-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 38px 38px;
}

.about-monogram {
    position: absolute !important;
    left: 50% !important;
    top: 45% !important;
    transform: translate(-50%, -50%) !important;
    width: 190px !important;
    height: 190px !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    color: white !important;
    font-size: 4rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.08em !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    background: rgba(255, 255, 255, .07) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .3) !important;
}

.about-monogram::after {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: inherit;
    border: 1px solid rgba(var(--brand-rgb), 0.55);
}

.about-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1.15rem 1.25rem;
    border-radius: 15px;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(10px);
}

.about-caption strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

.about-points {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.about-point-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    background: var(--sync-green-soft);
    color: var(--sync-green);
}

.about-point strong {
    display: block;
    margin-bottom: 0.25rem;
}

.about-point span {
    color: var(--sync-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- Benefits --- */
.benefit-strip {
    background: var(--sync-dark);
    color: #fff;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    padding: 0.7rem 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(var(--brand-rgb), 0.14);
    color: var(--sync-accent-bright);
    font-size: 1.35rem;
}

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.benefit-item p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* --- Projects --- */
.project-card {
    position: relative;
    min-height: 370px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 14px 40px rgba(10, 19, 26, 0.14);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: transform 0.45s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(10, 19, 26, .96), rgba(10, 19, 26, .08) 70%);
}

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

.project-card.energy::before {
    background:
        radial-gradient(circle at 72% 22%, rgba(132, 206, 75, .75), transparent 28%),
        linear-gradient(135deg, #122633, #324d40 45%, #192831);
}

.project-card.electro::before {
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 70px),
        radial-gradient(circle at 25% 30%, rgba(var(--brand-rgb),.58), transparent 30%),
        linear-gradient(135deg, #1c303b, #0b151c);
}

.project-card.smart::before {
    background:
        radial-gradient(circle at 75% 30%, rgba(var(--brand-rgb),.5), transparent 26%),
        radial-gradient(circle at 22% 65%, rgba(53, 112, 146, .72), transparent 34%),
        linear-gradient(145deg, #182a34, #091218);
}

.project-graphic {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255,255,255,.18);
    font-size: 8rem;
    line-height: 1;
}

.project-content {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    color: #fff;
}

.project-tag {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    color: #dff2cd;
    background: rgba(var(--brand-rgb),.2);
    border: 1px solid rgba(143,198,90,.38);
    font-size: 0.73rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 750;
    margin-bottom: 0.55rem;
}

.project-content p {
    color: rgba(255,255,255,.72);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Gallery --- */
.gallery-item {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(10, 19, 26, 0.1);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1rem 0.75rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(to top, rgba(10, 19, 26, .88), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .gallery-item figcaption {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(10, 19, 26, .82), transparent);
    }
}

/* --- Process --- */
.process-line {
    position: relative;
}

.process-line::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 35px;
    height: 1px;
    background: #dce2e6;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--sync-dark);
    border: 6px solid #fff;
    box-shadow: 0 0 0 1px var(--sync-border), 0 9px 28px rgba(10,19,26,.1);
    font-weight: 800;
}

.process-step:nth-child(2) .process-number,
.process-step:nth-child(4) .process-number {
    background: var(--sync-green);
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 750;
}

.process-step p {
    color: var(--sync-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 230px;
}

/* --- Expectations --- */
.expectation-card {
    padding: 1.5rem;
    border: 1px solid var(--sync-border);
    border-radius: 16px;
    height: 100%;
    background: #fff;
}

.expectation-card i {
    color: var(--sync-green);
    font-size: 1.35rem;
}

.expectation-card h3 {
    font-size: 1rem;
    font-weight: 750;
    margin: 0.9rem 0 0.55rem;
}

.expectation-card p {
    margin: 0;
    color: var(--sync-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* --- FAQ --- */
.accordion-item {
    border: 1px solid var(--sync-border);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.accordion-button {
    padding: 1.2rem 1.3rem;
    font-weight: 700;
    color: var(--sync-text);
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--sync-green-hover);
    background: var(--sync-green-soft);
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    color: var(--sync-text-muted);
    line-height: 1.75;
    padding: 0 1.3rem 1.3rem;
}

/* --- CTA --- */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--sync-dark);
    color: #fff;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--brand-rgb),.16);
    filter: blur(1px);
}

.cta-section::before {
    width: 340px;
    height: 340px;
    right: -120px;
    top: -170px;
}

.cta-section::after {
    width: 230px;
    height: 230px;
    left: -110px;
    bottom: -120px;
}

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

/* --- Contact --- */
.contact-panel {
    height: 100%;
    padding: 2.2rem;
    border-radius: 22px;
    background: var(--sync-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -100px;
    bottom: -100px;
    background: rgba(var(--brand-rgb),.18);
}

.contact-panel p {
    color: rgba(255,255,255,.68);
    line-height: 1.75;
}

.contact-detail {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-top: 1rem;
    color: rgba(255,255,255,.84);
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--sync-accent-bright);
    background: rgba(var(--brand-rgb),.15);
}

.contact-detail a {
    color: #fff;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--sync-accent-bright);
}

.contact-form {
    height: 100%;
    padding: 2.2rem;
    border: 1px solid var(--sync-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--sync-shadow);
}

.contact-form .form-label {
    font-size: 0.86rem;
    font-weight: 700;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 50px;
    border-color: #dfe4e7;
    border-radius: 10px;
    font-size: 0.93rem;
}

.contact-form textarea.form-control {
    min-height: 135px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--sync-green);
    box-shadow: 0 0 0 0.2rem rgba(var(--brand-rgb),.13);
}

/* --- Footer --- */
.site-footer {
    background: #071016;
    color: rgba(255,255,255,.68);
}

.footer-brand img {
    width: auto;
    max-width: 190px;
    height: 46px;
    margin-bottom: 1rem;
}

.footer-tagline {
    max-width: 470px;
    line-height: 1.75;
    color: rgba(255,255,255,.68);
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.12);
}

.social-link:hover {
    background: var(--sync-green);
    color: #fff;
    border-color: var(--sync-green);
}

.footer-heading {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 750;
    margin-bottom: 1rem;
}

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

.footer-links li + li {
    margin-top: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,.64);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--sync-accent-bright);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: rgba(255,255,255,.8);
}

.footer-bottom a:hover {
    color: var(--sync-accent-bright);
}

/* --- Back to top --- */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--sync-green);
    box-shadow: 0 12px 30px rgba(10,19,26,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 1040;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--sync-green-hover);
}

/* --- Mobile sticky CTA --- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    background: var(--sync-dark);
    color: #fff;
    box-shadow: 0 -8px 24px rgba(10,19,26,.24);
}

.mobile-cta-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-mobile-cta {
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    border-radius: 0.4rem;
    background: var(--sync-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.btn-mobile-cta:hover {
    background: var(--sync-green-hover);
    color: #fff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1199px) {
    .nav-link {
        margin-inline: 0.15rem;
    }
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 78px;
    }

    section[id] {
        scroll-margin-top: 78px;
    }

    .section-padding {
        padding: 76px 0;
    }

    .navbar-collapse {
        padding: 1rem 0 0.35rem;
    }

    .nav-link {
        margin: 0;
        padding: 0.75rem 0.25rem !important;
    }

    .nav-link::after {
        left: 0.25rem;
        right: auto;
        width: 32px;
        bottom: 0.35rem;
    }

    .hero-section {
        background-image:
            linear-gradient(rgba(10,19,26,.9), rgba(10,19,26,.95)),
            var(--hero-image, none);
        background-size: cover;
        background-position: center;
        padding: 85px 0 100px;
    }

    .hero-title {
        font-size: clamp(2.65rem, 10vw, 3.5rem);
    }

    .feature-column {
        border-right: 0;
    }

    .feature-column:nth-child(odd) {
        border-right: 1px solid var(--sync-border);
    }

    .about-visual {
        min-height: 420px;
    }

    .process-line::before {
        display: none;
    }

    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 70px 1fr;
        column-gap: 1rem;
        row-gap: 0;
    }

    .process-number {
        grid-row: 1 / 3;
        margin: 0;
    }

    .process-step p {
        margin: 0;
        max-width: none;
    }

    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 4.2rem;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        display: grid;
        gap: 0.8rem;
    }

    .feature-column,
    .feature-column:nth-child(odd) {
        border-right: 0;
        border-bottom: 1px solid var(--sync-border);
        padding: 1.8rem 1rem;
    }

    .feature-column:last-child {
        border-bottom: 0;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-monogram {
        width: 155px;
        height: 155px;
        font-size: 3.25rem;
    }

    .project-card {
        min-height: 330px;
    }

    .contact-panel,
    .contact-form {
        padding: 1.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
