:root {
    --blue: #0a5bd8;
    --blue-dark: #0844a5;
    --green: #2bb673;
    --black: #111111;
    --gray-900: #1c1c1c;
    --gray-700: #4a4a4a;
    --gray-500: #707070;
    --gray-200: #e9edf2;
    --gray-100: #f6f8fb;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(7, 30, 63, 0.08);
    --page-bg: linear-gradient(135deg, rgba(10, 91, 216, 0.08) 0%, rgba(43, 182, 115, 0.08) 100%);
    --accent-bg: linear-gradient(135deg, rgba(10, 91, 216, 0.14) 0%, rgba(43, 182, 115, 0.14) 100%);
    --accent-bg-soft: linear-gradient(135deg, rgba(10, 91, 216, 0.08) 0%, rgba(43, 182, 115, 0.08) 100%);
    --accent-bg-strong: linear-gradient(135deg, rgba(10, 91, 216, 0.92) 0%, rgba(43, 182, 115, 0.92) 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    background: var(--page-bg);
    background-attachment: fixed;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.top-ribbon {
    height: 6px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container {
        width: min(1380px, calc(100% - 64px));
    }
}

@media (min-width: 1600px) {
    .container {
        width: min(1520px, calc(100% - 96px));
    }
}

.site-header {
    background: var(--accent-bg-strong);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 120;
}

main {
    padding-top: 92px;
}

.home-page main {
    padding-top: 0;
}

.site-header .brand,
.site-header .brand-text span,
.site-header .nav,
.site-header .nav a {
    color: var(--white);
}

.site-header .nav a.active,
.site-header .nav a:hover {
    color: var(--white);
}

.site-header .nav a.active::after,
.site-header .nav a:hover::after {
    background: var(--white);
}

.site-header .icon-button {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.site-header .icon-button:hover {
    background: rgba(255, 255, 255, 0.22);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 18px;
    font-weight: 600;
    color: var(--gray-700);
}

.nav a {
    position: relative;
    padding-bottom: 6px;
}

.nav a.active,
.nav a:hover {
    color: var(--black);
}

.nav a.active::after,
.nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--blue);
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    padding: 12px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    color: var(--gray-900);
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
}

.site-header .nav-dropdown a,
.site-header .nav-dropdown a:hover {
    color: var(--gray-900);
}

.nav-dropdown a:hover {
    background: var(--gray-100);
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown-all {
    margin-top: 4px;
    color: var(--blue-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(10, 91, 216, 0.2);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(10, 91, 216, 0.25);
}

.btn.ghost {
    border-color: var(--green);
    color: var(--green);
    background: transparent;
}

.btn.ghost:hover {
    background: rgba(43, 182, 115, 0.08);
    transform: translateY(-2px);
}

.text-link {
    font-weight: 600;
    color: var(--blue-dark);
}

.eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--green);
    margin-bottom: 14px;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.hero {
    padding: 72px 0 40px;
    background: linear-gradient(140deg, rgba(10, 91, 216, 0.14), rgba(43, 182, 115, 0.14));
    position: relative;
    overflow: hidden;
}

.hero.has-banner {
    background: none;
}

.hero.has-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-banner);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
    transform: scale(1.03);
}

.hero.has-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(10, 91, 216, 0.65), rgba(43, 182, 115, 0.55));
}

.hero.has-banner .hero-grid {
    position: relative;
    z-index: 1;
}

.hero.has-banner .eyebrow,
.hero.has-banner h1 {
    color: var(--white);
}

.hero.has-banner .lead {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero {
    padding: 64px 0 24px;
    background: var(--accent-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.hero-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: var(--page-bg);
    background-attachment: fixed;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    max-width: 360px;
}

.card-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.card-copy {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.card-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--blue-dark);
}

.hero-swatch {
    position: absolute;
    right: -10px;
    bottom: 10px;
    background: var(--blue);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(10, 91, 216, 0.2);
}

.hero-swatch span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    opacity: 0.8;
}

.section {
    padding: 64px 0;
}

.home-section {
    padding: 48px 0;
    background: var(--accent-bg-soft);
}

.home-section.section-contrast {
    background: var(--accent-bg);
}

.home-section-first {
    padding-top: 36px;
}

.section-contrast {
    background: var(--accent-bg-strong);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: var(--page-bg);
    background-attachment: fixed;
    padding: 26px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow);
}

.mini-list {
    margin-top: 16px;
    display: grid;
    gap: 8px;
    color: var(--gray-500);
    list-style: none;
}

.mini-list li::before {
    content: '\2022';
    color: var(--green);
    margin-right: 8px;
}

.product-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    background: var(--page-bg);
    background-attachment: fixed;
    padding: 24px;
    border-radius: 20px;
    border: none;
    min-height: 220px;
    scroll-snap-align: start;
}

.product-card.solid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: var(--page-bg);
    box-shadow: var(--shadow);
}

.product-spotlight-media {
    width: 100%;
}

.product-spotlight-image {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
}

.product-spotlight-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-spotlight-meta {
    color: var(--gray-500);
}

.services-spotlight {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-spotlight-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-spotlight-card.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

.service-spotlight-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
}

@media (max-width: 900px) {
    .services-spotlight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-spotlight-image {
        height: 160px;
    }
}

@media (max-width: 900px) {
    .product-spotlight {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-spotlight-image {
        max-height: 260px;
    }
}

.product-tag {
    display: inline-block;
    background: rgba(10, 91, 216, 0.08);
    color: var(--blue-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat {
    background: var(--page-bg);
    background-attachment: fixed;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 6px;
}

.highlight {
    padding-top: 24px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.highlight-card {
    background: var(--page-bg);
    background-attachment: fixed;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.highlight-card.accent {
    background: linear-gradient(140deg, rgba(10, 91, 216, 0.1), rgba(43, 182, 115, 0.12));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: start;
}

.process-steps {
    display: grid;
    gap: 18px;
}

.step {
    background: var(--page-bg);
    background-attachment: fixed;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
}

.step span {
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1px;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.form-card label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.form-card input,
.form-card textarea {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-family: inherit;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 18px 0;
}

.muted {
    color: var(--gray-500);
}


.section-note {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(43, 182, 115, 0.08);
    border-left: 3px solid var(--green);
}

.site-footer {
    background: var(--accent-bg-strong);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer strong {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--white);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(43, 182, 115, 0.4);
    background: rgba(43, 182, 115, 0.08);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.icon-button svg {
    width: 20px;
    height: 20px;
}

.icon-button:hover {
    transform: translateY(-1px);
    background: rgba(43, 182, 115, 0.18);
    box-shadow: 0 10px 24px rgba(43, 182, 115, 0.18);
}

.icon-button:focus-visible {
    outline: 2px solid rgba(43, 182, 115, 0.6);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.chip {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(43, 182, 115, 0.5);
    color: var(--green);
    background: rgba(43, 182, 115, 0.08);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-scope {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(43, 182, 115, 0.12);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.gallery-card {
    background: var(--accent-bg-strong);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.gallery-thumb {
    height: 160px;
    background: linear-gradient(135deg, rgba(10, 91, 216, 0.25), rgba(43, 182, 115, 0.25));
}

.gallery-info {
    padding: 18px 20px 22px;
}
@media (max-width: 900px) {
    .nav-row {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .nav {
        display: none;
    }

    .brand {
        font-size: 18px;
    }

    .brand-text span {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        width: auto;
        justify-content: flex-end;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-swatch {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-meta {
        flex-direction: column;
        gap: 6px;
    }

    .chip-row {
        gap: 6px;
    }
}

.product-link {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10, 91, 216, 0.12);
}

.product-link:focus-visible {
    outline: 2px solid rgba(10, 91, 216, 0.5);
    outline-offset: 3px;
}

.product-link-hint {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-dark);
}

.product-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.product-hero-card {
    background: var(--page-bg);
    background-attachment: fixed;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 14px 0 22px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.header-actions {
    gap: 10px;
}

.icon-button {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count.is-hidden {
    display: none;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 80;
}

.sidebar {
    position: fixed;
    color: var(--white);
    top: 0;
    right: -380px;
    width: min(360px, 92vw);
    height: 100vh;
    background: var(--accent-bg-strong);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    overflow-y: auto;
    transition: right 0.25s ease;
}

body.sidebar-open .sidebar {
    right: 0;
}

body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.sidebar-menu .sidebar,
body.sidebar-cart .sidebar {
    right: 0;
}

body.sidebar-menu .sidebar-overlay,
body.sidebar-cart .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}


.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.45);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 20px 40px;
    z-index: 40;
    transition: opacity 0.2s ease;
}

body.modal-open {
    overflow: hidden;
}

.team-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 120;
}

.team-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.team-modal-dialog {
    width: min(720px, 96vw);
    background: var(--white);
    color: var(--gray-900);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(15, 30, 45, 0.25);
    position: relative;
    display: grid;
    gap: 16px;
}

.team-modal-close {
    justify-self: end;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600;
}

.team-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.team-modal-image {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    object-fit: cover;
    max-height: 260px;
}

.team-modal-role {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 8px;
}

.team-modal-bio {
    color: var(--gray-700);
}

@media (max-width: 700px) {
    .team-modal-body {
        grid-template-columns: 1fr;
    }
}

.search-panel {
    width: min(720px, 100%);
    background: var(--accent-bg-strong);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15, 30, 45, 0.2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.search-open .search-overlay {
    opacity: 1;
    pointer-events: auto;
}

.search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.search-field {
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    padding: 6px 12px;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 6px;
    font-size: 1rem;
    outline: none;
}

.search-results {
    display: grid;
    gap: 12px;
}

.search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 30, 45, 0.12);
}

.search-result-title {
    font-weight: 600;
}

.search-result-meta {
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.search-result-price {
    font-weight: 600;
    color: var(--gray-700);
}

.search-empty.is-hidden {
    display: none;
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.4px;
    color: var(--gray-500);
    font-weight: 600;
}

.sidebar-links {
    display: grid;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
}

.sidebar,
.sidebar p,
.sidebar a,
.sidebar span,
.sidebar strong {
    color: var(--white);
}

body.sidebar-menu .cart-section {
    display: none;
}

body.sidebar-menu .sidebar-actions {
    border-bottom: none;
    padding-bottom: 0;
}

body.sidebar-cart .sidebar-nav,
body.sidebar-cart .sidebar-actions {
    display: none;
}
.cart-section {
    gap: 16px;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total {
    font-weight: 700;
}

.cart-empty {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.cart-item,
.cart-item p,
.cart-item span,
.cart-item strong {
    color: var(--gray-900);
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-summary {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.cart-item .cart-item-summary,
.cart-item .cart-item-meta {
    color: var(--gray-500);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
}

.cart-qty {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-remove {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--gray-500);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.btn.whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

.btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
}

.btn.whatsapp.is-disabled {
    background: #9adbb8;
    box-shadow: none;
    pointer-events: none;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        width: auto;
    }

    .header-cta {
        display: none;
    }
}

body.sidebar-open,
body.search-open {
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    margin-bottom: 14px;
}

.product-image.large {
    height: 220px;
    max-width: 420px;
    margin-bottom: 18px;
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    margin-bottom: 12px;
}

.project-image.large {
    height: 240px;
    max-width: 420px;
}

.service-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    margin-bottom: 12px;
}

.service-image.large {
    height: 230px;
    max-width: 420px;
}

.team-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    margin-bottom: 12px;
}

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.product-code {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--gray-500);
}

.product-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price {
    font-weight: 700;
    color: var(--blue-dark);
}

.product-unit {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.product-meta .product-unit {
    margin-bottom: 0;
}

.product-top .product-tag {
    margin-bottom: 0;
}

.product-title-row h3 {
    margin-bottom: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section p {
    font-size: 1rem;
    color: var(--gray-700);
}

.section p.muted {
    color: var(--gray-500);
}

.card p,
.highlight-card p,
.project-card p,
.product-card p,
.gallery-card p,
.contact-details p {
    color: var(--gray-700);
}

.section-head .text-link {
    letter-spacing: 0.3px;
}

.team-grid {
    margin-top: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card h3 {
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 10px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.client-card {
    background: var(--accent-bg-strong);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 16px 18px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    box-shadow: var(--shadow);
}

.menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }
}

.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

@media (max-width: 700px) {
    .section {
        padding: 48px 0;
    }

    .home-section {
        padding: 40px 0;
    }

    .page-hero {
        padding: 48px 0 20px;
    }

    .hero {
        padding: 56px 0 32px;
    }

    .section-head {
        gap: 12px;
        margin-bottom: 20px;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        padding: 10px 18px;
    }

    .card,
    .product-card,
    .highlight-card,
    .hero-card,
    .product-hero-card {
        padding: 20px;
        border-radius: 16px;
    }

    .header-actions {
        gap: 8px;
    }

    .sidebar {
        width: min(360px, 94vw);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid,
    .product-grid,
    .project-grid {
        gap: 12px;
    }

    .product-strip {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: visible;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.home-feature-media img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.home-feature-copy h2 {
    margin-bottom: 16px;
}

.feature-lead {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.feature-points span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 91, 216, 0.08);
    color: var(--blue-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.map-card h3 {
    margin-bottom: 12px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--accent-bg-strong);
    min-height: 260px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.home-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-grid-four .card,
.home-grid-four .product-card {
    border: none;
    background: var(--page-bg);
    box-shadow: none;
}

@media (min-width: 1400px) {
    .home-grid-four {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .home-grid-four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .home-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-grid-four > *:nth-child(n+3) {
        display: none;
    }
}

@media (min-width: 901px) {
    .home-services-grid > *:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-services-grid {
        grid-template-columns: none;
        grid-template-rows: 1fr;
        grid-auto-rows: 1fr;
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, calc((100% - 12px) / 2));
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .home-services-grid::-webkit-scrollbar {
        display: none;
    }

    .home-services-grid > * {
        scroll-snap-align: start;
    }

    .home-services-grid > *:nth-child(n+3) {
        display: block;
    }
}

.card-link {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(10, 91, 216, 0.12);
}

.card-link:focus-visible {
    outline: 2px solid rgba(10, 91, 216, 0.5);
    outline-offset: 3px;
}











.admin-section .section-head {
    align-items: center;
}

.admin-panel {
    background: var(--accent-bg-strong);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-field span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.admin-input,
.admin-textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.85);
    font-family: inherit;
}

.admin-textarea {
    min-height: 70px;
    resize: vertical;
}

.admin-table {
    display: grid;
    gap: 14px;
}

.admin-row {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: start;
    background: var(--accent-bg-strong);
    border: 1px solid var(--gray-200);
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.admin-row-head {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color: var(--gray-500);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-row-head span {
    padding: 0 4px;
}

.admin-status {
    margin-top: 12px;
    font-weight: 600;
    color: var(--blue-dark);
}

.admin-status[data-tone="warning"] {
    color: #b56a00;
}

.admin-status[data-tone="success"] {
    color: #1d7a4a;
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .admin-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-row button {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }

    .admin-row-head {
        display: none;
    }
}



.admin-nav-section {
    padding-top: 32px;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-credentials {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.admin-login-panel {
    max-width: 520px;
    margin: 0 auto;
}

.admin-login {
    display: grid;
    gap: 16px;
}

.admin-error {
    margin-top: 12px;
    color: #ffedc7;
    font-weight: 600;
}


.admin-toolbar {
    padding-top: 24px;
}

.admin-toolbar-inner {
    display: grid;
    gap: 16px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.admin-status:empty {
    display: none;
}

.admin-body {
    background: var(--page-bg);
}

.admin-header {
    background: var(--accent-bg-strong);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 120;
    box-shadow: 0 12px 30px rgba(10, 30, 60, 0.2);
}

.admin-header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.admin-header a {
    color: var(--white);
}

.admin-header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 600;
}

.admin-header-nav a.active {
    text-decoration: underline;
}

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

.admin-main {
    padding-bottom: 40px;
}

.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.admin-card {
    background: var(--accent-bg-strong);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(10, 30, 60, 0.18);
}

.admin-list {
    display: grid;
    gap: 16px;
}

.admin-list-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    align-items: center;
    background: var(--accent-bg-strong);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.admin-list-media img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-list-placeholder {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.admin-list-meta {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 6px 0;
}

.admin-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.message-row {
    grid-template-columns: 1fr auto;
    align-items: start;
}

.message-row.is-unread {
    border-color: rgba(10, 91, 216, 0.2);
    box-shadow: 0 20px 42px rgba(10, 91, 216, 0.08);
}

.message-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.message-status-badge.is-unread {
    background: rgba(10, 91, 216, 0.12);
    color: var(--blue-dark);
}

.message-status-badge.is-read {
    background: rgba(43, 182, 115, 0.12);
    color: #1d7a4a;
}

.admin-form {
    display: grid;
    gap: 16px;
}

.admin-image-preview img {
    width: min(360px, 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.gallery-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .admin-list-row {
        grid-template-columns: 1fr;
    }

    .admin-list-media {
        max-width: 200px;
    }

    .admin-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.admin-list-row--compact {
    grid-template-columns: 1fr auto;
}

.site-header,
.site-header a,
.site-header button,
.site-header .brand-text span,
.site-header .btn,
.site-header .header-cta {
    color: var(--white);
}


.section-contrast,
.gallery-card,
.client-card,
.map-frame,
.search-panel,
.admin-panel,
.admin-row,
.admin-card,
.admin-list-row {
    background: var(--accent-bg-soft);
}

@media (max-width: 900px) {
    .sidebar .sidebar-label {
        display: none;
    }
}







































.admin-header .btn.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.admin-header .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}



.profile-hero-shell {
    background: radial-gradient(circle at top right, rgba(255, 243, 184, 0.5), transparent 24%), linear-gradient(140deg, rgba(10, 91, 216, 0.18), rgba(43, 182, 115, 0.14));
}

.profile-page-hero {
    background: var(--accent-bg);
}

.profile-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.profile-frame {
    background: rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-profile-frame,
.page-hero-asset {
    align-self: stretch;
}

.profile-illustration {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.22);
}

.profile-overview-grid {
    align-items: start;
}

.chapter-card,
.leadership-card,
.contact-summary-card {
    display: grid;
    gap: 14px;
    align-content: start;
}

.chapter-list {
    margin-top: 10px;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: var(--gray-700);
}

.chapter-list li {
    font-weight: 600;
}

.profile-copy-stack {
    display: grid;
    gap: 16px;
    align-content: start;
}

.intro-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.78fr);
    gap: 18px;
    align-items: stretch;
}

.intro-showcase-main {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px;
    min-height: 100%;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(43, 182, 115, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.92));
    border: 1px solid rgba(10, 91, 216, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.intro-showcase-main::before {
    content: '';
    position: absolute;
    inset: auto -36px -54px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 91, 216, 0.14) 0%, rgba(10, 91, 216, 0.02) 65%, transparent 72%);
}

.intro-showcase-main::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 22px;
    width: 140px;
    height: 140px;
    border-radius: 26px;
    border: 1px solid rgba(10, 91, 216, 0.12);
    transform: rotate(14deg);
    opacity: 0.45;
}

.intro-showcase-copy,
.intro-signal-grid {
    position: relative;
    z-index: 1;
}

.intro-showcase-copy {
    display: grid;
    gap: 14px;
    align-content: start;
}

.intro-showcase-copy .eyebrow {
    margin-bottom: 0;
}

.intro-showcase-copy h2 {
    max-width: 14ch;
}

.intro-showcase-lead {
    font-size: clamp(1.12rem, 1.8vw, 1.42rem);
    line-height: 1.75;
    color: var(--gray-900);
    max-width: 58ch;
}

.intro-signal-grid {
    display: grid;
    gap: 12px;
    align-content: center;
}

.intro-signal-card {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 91, 216, 0.12);
    box-shadow: 0 18px 34px rgba(7, 30, 63, 0.08);
}

.intro-signal-card span {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(10, 91, 216, 0.1);
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.intro-signal-card strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

.intro-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-content: stretch;
}

.intro-story-card {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px 80px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(10, 91, 216, 0.1);
    box-shadow: var(--shadow);
}

.intro-story-card:nth-child(2n) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 248, 239, 0.8));
}

.intro-story-index {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent-bg-strong);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(10, 91, 216, 0.18);
}

.intro-story-card p {
    color: var(--gray-700);
    line-height: 1.75;
}

@media (max-width: 980px) {
    .intro-showcase {
        grid-template-columns: 1fr;
    }

    .intro-showcase-main {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .intro-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .intro-showcase-main {
        padding: 22px;
        border-radius: 26px;
    }

    .intro-showcase-main::after {
        top: 14px;
        right: 14px;
        width: 100px;
        height: 100px;
    }

    .intro-showcase-copy h2 {
        max-width: none;
    }

    .intro-showcase-lead {
        font-size: 1.04rem;
    }

    .intro-signal-grid {
        grid-template-columns: 1fr;
    }

    .intro-story-card {
        padding: 24px 20px 20px 72px;
    }
}

.service-group-stack {
    display: grid;
    gap: 30px;
}

.service-cluster {
    display: grid;
    gap: 18px;
}

.service-cluster-intro {
    display: grid;
    gap: 12px;
    align-content: start;
}

.service-cluster-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-cluster-heading h2,
.service-cluster-heading h3 {
    margin-bottom: 0;
}

.service-cluster-number {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(10, 91, 216, 0.12);
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.profile-asset-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.profile-asset-card .mini-list {
    margin-top: auto;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card,
.document-card,
.structure-card {
    height: 100%;
}

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

.structure-card {
    display: grid;
    gap: 10px;
}

.structure-label {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 700;
}

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

.document-card {
    display: grid;
    gap: 10px;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.location-pills span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 91, 216, 0.08);
    color: var(--blue-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.location-stack {
    display: grid;
    gap: 12px;
}

.location-card {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(10, 91, 216, 0.08);
    border: 1px solid rgba(10, 91, 216, 0.12);
}

.location-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.location-card.compact {
    background: rgba(255, 255, 255, 0.65);
}

.leadership-note {
    color: var(--gray-700);
}

.profile-contact-grid {
    align-items: start;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.contact-side-stack {
    display: grid;
    gap: 24px;
}

.contact-form-card {
    display: grid;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

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

.form-card select {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-family: inherit;
    background: var(--white);
}

.form-card textarea {
    min-height: 160px;
}

.form-feedback {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.form-feedback.success {
    background: rgba(43, 182, 115, 0.12);
    color: #1b6b46;
    border: 1px solid rgba(43, 182, 115, 0.24);
}

.form-feedback.error {
    background: rgba(199, 62, 62, 0.1);
    color: #9f2c2c;
    border: 1px solid rgba(199, 62, 62, 0.22);
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #9f2c2c;
    font-size: 0.85rem;
}

@media (max-width: 980px) {
    .contact-page-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .profile-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .documents-grid,
    .structure-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .service-page-stack .service-cluster-grid {
        grid-template-columns: 1fr;
    }

    .home-page .service-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-page .profile-asset-card {
        padding: 18px;
    }

    .home-page .service-image {
        height: 138px;
    }

    .profile-illustration {
        min-height: 220px;
    }

    .chapter-list {
        padding-left: 18px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .highlights-grid .project-card {
        padding: 18px;
    }

    .highlights-grid .project-image {
        height: 136px;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 140;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.36);
}

.floating-whatsapp-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.floating-whatsapp-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 700px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 10px 14px;
        gap: 8px;
        font-size: 0.92rem;
    }

    .floating-whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

.home-banner {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(7, 30, 63, 0.18);
}

.home-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 31, 57, 0.78) 0%, rgba(8, 31, 57, 0.5) 42%, rgba(8, 31, 57, 0.14) 100%);
}

.home-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-content {
    position: relative;
    z-index: 1;
    min-height: 560px;
    max-width: 620px;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-banner-content h1,
.home-banner-content .lead {
    color: var(--white);
}

.home-banner-content .lead {
    max-width: 520px;
    margin-bottom: 28px;
}

.home-banner-content .btn.ghost {
    border-color: rgba(255, 255, 255, 0.76);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.home-banner-content .btn.ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
    .home-banner {
        min-height: 520px;
    }

    .home-banner-content {
        min-height: 520px;
        padding: 40px 30px 32px;
        justify-content: flex-end;
    }

    .home-banner::after {
        background: linear-gradient(180deg, rgba(8, 31, 57, 0.12) 0%, rgba(8, 31, 57, 0.42) 40%, rgba(8, 31, 57, 0.86) 100%);
    }
}

@media (max-width: 700px) {
    .home-banner {
        min-height: 500px;
        border-radius: 24px;
    }

    .home-banner-content {
        min-height: 500px;
        max-width: none;
        padding: 28px 20px 22px;
    }

    .home-banner .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 0;
    }

    .home-banner .hero-actions .btn {
        width: 100%;
    }
}










