:root {
    --ink: #14283D;          /* navy */
    --ink-2: #1B3552;
    --olive: #6B7A2A;        /* olive */
    --olive-2: #556421;
    --paper: #FAFAF7;
    --line: rgba(20, 40, 61, 0.12);
}

/* ---------- Header (glassy + sticky + shadow on scroll) ---------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* adjust to your header height */
}


.app-header {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

/* tighten brand text spacing on desktop */
.brand-lockup { text-decoration: none; }
.brand-text { margin-left: 0.15rem; }
/* default 

    /* ---------- Footer ---------- */

.app-footer {
    background: radial-gradient(900px 520px at 20% 10%, rgba(107, 122, 42, 0.10), transparent 60%), #f3f1eb; /* warm beige from logo */
    border-top: 1px solid rgba(20, 40, 61, 0.10);
    color: var(--ink);
}

    .app-footer .container {
        position: relative;
    }

/* Footer typography */
.footer-title {
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}

.footer-sub {
    margin-top: 0.25rem;
    font-weight: 700;
    color: var(--olive-2);
}

.footer-note {
    margin-top: 0.5rem;
    max-width: 520px;
    color: rgba(20, 40, 61, 0.75);
    line-height: 1.45;
}

/* Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .footer-links {
        justify-content: flex-start;
    }
}

.footer-link {
    display: inline-flex;
    align-items: center;
    font-weight: 750;
    color: var(--ink);
    text-decoration: none;
}

    .footer-link i {
        color: var(--olive);
    }

    .footer-link:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

/* Divider */
.footer-hr {
    border-color: rgba(20, 40, 61, 0.12);
}

/* Bottom row */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal {
    color: rgba(20, 40, 61, 0.65);
}

/* ---------- Services page ---------- */

.page-hero {
    background: radial-gradient(900px 520px at 20% 20%, rgba(107, 122, 42, 0.10), transparent 60%), #ffffff;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(107, 122, 42, 0.12);
    color: var(--olive-2);
    font-weight: 800;
    font-size: 0.95rem;
}

.services-overview {
    background: transparent;
}

.service-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.service-list {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
}

    .service-list li {
        margin-bottom: 0.45rem;
        color: rgba(20, 40, 61, 0.85);
    }

.text-olive {
    color: var(--olive);
}

.service-boundaries {
    background: radial-gradient(900px 520px at 80% 30%, rgba(20, 40, 61, 0.06), transparent 60%), #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.boundary-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 40, 61, 0.15);
    border-radius: 22px;
    padding: 1.4rem;
}

.services-cta {
    background: radial-gradient(900px 520px at 20% 20%, rgba(107, 122, 42, 0.12), transparent 60%), #f3f1eb;
}

.cta-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* ---------- Inspections page ---------- */

.inspections-how {
    background: transparent;
}

.step-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.35rem 1.35rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .step-card::before {
        content: "";
        position: absolute;
        inset: -70px -90px auto auto;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle at 30% 30%, rgba(107,122,42,0.18), transparent 65%);
        transform: rotate(14deg);
        opacity: 0.85;
        pointer-events: none;
    }

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 950;
    color: var(--olive-2);
    background: rgba(107, 122, 42, 0.12);
    border: 1px solid rgba(107, 122, 42, 0.20);
}

.step-title {
    margin-top: 0.85rem;
    font-weight: 950;
    font-size: 1.1rem;
}

.step-sub {
    margin-top: 0.35rem;
    color: rgba(20, 40, 61, 0.78);
    line-height: 1.5;
}

.inspections-what {
    background: radial-gradient(900px 520px at 20% 10%, rgba(20, 40, 61, 0.05), transparent 60%), #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.check-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.55rem;
}

    .check-list li {
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 0.75rem;
        align-items: start;
        color: rgba(20, 40, 61, 0.88);
    }

    .check-list i {
        color: var(--olive);
        margin-top: 0.2rem;
    }

.inspections-report {
    background: transparent;
}

.report-bullets {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.rb {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0.85rem;
    align-items: start;
}

    .rb i {
        color: var(--olive);
        font-size: 1.2rem;
        margin-top: 0.1rem;
    }

.rb-title {
    font-weight: 950;
}

.rb-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.15rem;
}

.report-sample {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}

.report-sample-head {
    padding: 1.2rem 1.2rem 1rem;
    background: radial-gradient(900px 520px at 20% 20%, rgba(107, 122, 42, 0.12), transparent 60%), #ffffff;
    border-bottom: 1px solid rgba(20, 40, 61, 0.10);
}

.rs-title {
    font-weight: 950;
    font-size: 1.05rem;
}

.rs-sub {
    color: rgba(20, 40, 61, 0.70);
    margin-top: 0.15rem;
}

.rs-row {
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    border-bottom: 1px solid rgba(20, 40, 61, 0.08);
}

.rs-item {
    font-weight: 900;
}

.rs-note {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.1rem;
}

.rs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.9rem;
    border: 1px solid rgba(20, 40, 61, 0.12);
}

    .rs-badge.ok {
        background: rgba(107, 122, 42, 0.12);
        color: var(--olive-2);
        border-color: rgba(107, 122, 42, 0.22);
    }

    .rs-badge.monitor {
        background: rgba(255, 193, 7, 0.18);
        color: rgba(125, 88, 0, 0.95);
        border-color: rgba(255, 193, 7, 0.35);
    }

    .rs-badge.action {
        background: rgba(220, 53, 69, 0.14);
        color: rgba(140, 20, 35, 0.98);
        border-color: rgba(220, 53, 69, 0.30);
    }

.rs-foot {
    padding: 0.9rem 1.2rem;
    color: rgba(20, 40, 61, 0.70);
    background: rgba(20, 40, 61, 0.03);
}

.inspections-frequency {
    background: radial-gradient(900px 520px at 80% 15%, rgba(107, 122, 42, 0.10), transparent 60%), #ffffff;
    border-top: 1px solid var(--line);
}

.freq-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.35rem 1.35rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.freq-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(20, 40, 61, 0.07);
    border: 1px solid rgba(20, 40, 61, 0.12);
}

    .freq-icon i {
        color: var(--ink-2);
        font-size: 1.25rem;
    }

.freq-title {
    margin-top: 0.9rem;
    font-weight: 950;
    font-size: 1.1rem;
}

.freq-sub {
    margin-top: 0.35rem;
    color: rgba(20, 40, 61, 0.75);
    line-height: 1.5;
}

/* ---------- Pricing page ---------- */

.pricing-cards {
    background: transparent;
}

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem 1.6rem 1.4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .price-card::before {
        content: "";
        position: absolute;
        inset: -80px -120px auto auto;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle at 30% 30%, rgba(107,122,42,0.18), transparent 65%);
        transform: rotate(18deg);
        opacity: 0.9;
        pointer-events: none;
    }

.price-card-featured {
    border-color: rgba(107, 122, 42, 0.35);
    box-shadow: 0 18px 44px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(107, 122, 42, 0.12);
    border: 1px solid rgba(107, 122, 42, 0.25);
    color: var(--olive-2);
    font-weight: 900;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.price-top {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: center;
}

.price-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(107, 122, 42, 0.12);
    border: 1px solid rgba(107, 122, 42, 0.20);
}

    .price-icon i {
        color: var(--olive-2);
        font-size: 1.25rem;
    }

.price-name {
    font-weight: 950;
    font-size: 1.2rem;
}

.price-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.15rem;
}

.price-amount {
    margin-top: 1.15rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-from {
    color: rgba(20, 40, 61, 0.65);
    font-weight: 800;
}

.price-eur {
    font-weight: 1000;
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    color: var(--ink);
}

.price-per {
    color: rgba(20, 40, 61, 0.70);
    font-weight: 800;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: 0.6rem;
}

    .price-list li {
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 0.75rem;
        align-items: start;
        color: rgba(20, 40, 61, 0.88);
    }

    .price-list i {
        color: var(--olive);
        margin-top: 0.15rem;
    }

.price-note {
    margin-top: 1rem;
    color: rgba(20, 40, 61, 0.75);
    font-weight: 650;
}

.pricing-foot-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-foot-title {
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.pricing-foot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.2rem;
}

@media (max-width: 576px) {
    .pricing-foot-grid {
        grid-template-columns: 1fr;
    }
}

.pf-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: rgba(20, 40, 61, 0.82);
    font-weight: 650;
}

    .pf-item i {
        color: var(--olive);
        margin-top: 0.15rem;
    }

/* Add-ons */
.pricing-addons {
    background: radial-gradient(900px 520px at 80% 15%, rgba(20, 40, 61, 0.05), transparent 60%), #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.addon-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.addon-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.95rem;
}

    .addon-list li {
        padding: 0.95rem;
        border: 1px solid rgba(20, 40, 61, 0.10);
        border-radius: 18px;
        background: rgba(20, 40, 61, 0.02);
    }

.addon-title {
    font-weight: 950;
}

.addon-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.15rem;
}

.addon-price {
    margin-top: 0.45rem;
    font-weight: 900;
    color: var(--olive-2);
}

/* Enquire steps */
.enquire-steps {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.enq {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem;
    border: 1px solid rgba(20, 40, 61, 0.10);
    border-radius: 18px;
    background: rgba(107, 122, 42, 0.06);
}

.enq-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 950;
    color: var(--olive-2);
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(107, 122, 42, 0.20);
}

.enq-title {
    font-weight: 950;
}

.enq-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.15rem;
}

.boundary-mini {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(20, 40, 61, 0.12);
    background: rgba(20, 40, 61, 0.03);
    color: rgba(20, 40, 61, 0.78);
    font-weight: 650;
}


@media (min-width: 992px) {
    .brand-text { margin-left: 0.05rem; } /* tighter on desktop */
    .brand-text .brand-name { letter-spacing: 0.1px; }
    .brand-text .brand-sub  { letter-spacing: 1.2px; }
}

/* ---------- Logos: full vs condensed mark ---------- */

.brand-logo {
    width: auto;
    display: block;
}

/* Full tall logo (default) */
.brand-logo--full {
    height: 72px;
}
@media (min-width: 768px) { .brand-logo--full { height: 96px; } }
@media (min-width: 992px) { .brand-logo--full { height: 118px; } }
@media (min-width: 1200px){ .brand-logo--full { height: 132px; } }

/* Condensed mark hidden until scroll */
.brand-logo--mark {
    height: 46px;
    display: none;
}

/* When scrolled: swap to condensed mark (future sticky header style) */
.app-header.is-scrolled .brand-logo--full { display: none; }
.app-header.is-scrolled .brand-logo--mark { display: block; }

/* Brand text */
.brand-text .brand-name {
    display: block;
    font-weight: 900;
    color: var(--bs-heading-color);
    line-height: 1.05;
}
.brand-text .brand-sub {
    display: block;
       color: var(--bs-secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-top: 0.25rem;
}

/* Buttons in header */
.btn-olive {
    background: var(--olive);
    border-color: var(--olive);
    color: #fff;
    font-weight: 750;
}
.btn-olive:hover { background: var(--olive-2); border-color: var(--olive-2); color: #fff; }

.btn-outline-olive {
    background: rgba(255,255,255,0.10);
    border-color: var(--olive);
    color: var(--olive);
    font-weight: 750;
}
    .btn-outline-olive:hover {
        border-color: var(--olive);
        background: var(--olive);
        color: #fff;
        font-weight: 750;
    }


/* A glassy secondary button for hero */
.btn-glass {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-weight: 750;
}
.btn-glass:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

/* ---------- Hero photo section ---------- */

.hero-photo {
    position: relative;
    min-height: 560px;
    background-image: url('/gfx/hero-tuscany.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(900px 520px at 20% 18%, rgba(107, 122, 42, 0.25), transparent 55%),
      radial-gradient(900px 520px at 85% 25%, rgba(20, 40, 61, 0.35), transparent 60%),
      linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title { text-shadow: 0 2px 18px rgba(0,0,0,0.40); }

.eyebrow-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.92);
    font-weight: 750;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Glass card */
.hero-card-glass {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.package {
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    background: #fff;
}

.package-title { font-weight: 900; color: var(--ink); }
.package-sub { color: rgba(20, 40, 61, 0.75); margin-top: 0.15rem; }


/* ---------- Trust+ section (bouncy designed cards) ---------- */

.trust-plus {
    background: radial-gradient(900px 520px at 15% 20%, rgba(107, 122, 42, 0.08), transparent 60%), radial-gradient(900px 520px at 80% 10%, rgba(20, 40, 61, 0.06), transparent 60%), transparent;
}

.section-head .kicker,
.kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(107, 122, 42, 0.12);
    color: var(--olive-2);
    font-weight: 800;
    font-size: 0.95rem;
}

.trust-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.25rem 1.25rem 1.05rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
    overflow: hidden;
}

    /* subtle "shine" */
    .trust-card::before {
        content: "";
        position: absolute;
        inset: -80px -120px auto auto;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle at 30% 30%, rgba(107,122,42,0.20), transparent 65%);
        transform: rotate(18deg);
        opacity: 0.8;
        pointer-events: none;
    }

    .trust-card:hover {
        transform: translateY(-6px);
        border-color: rgba(107, 122, 42, 0.35);
        box-shadow: 0 18px 44px rgba(0,0,0,0.10);
    }

.trust-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(107, 122, 42, 0.12);
    border: 1px solid rgba(107, 122, 42, 0.20);
}

    .trust-card-icon i {
        font-size: 1.35rem;
        color: var(--olive-2);
    }

.trust-card-title {
    font-weight: 950;
    font-size: 1.15rem;
    letter-spacing: 0.1px;
}

.trust-card-sub {
    color: rgba(20, 40, 61, 0.78);
    line-height: 1.5;
}

.trust-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    color: rgba(20, 40, 61, 0.70);
    font-weight: 650;
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.trust-card-cta {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(20, 40, 61, 0.18);
    color: var(--ink-2);
    font-weight: 850;
}

/* Mini strips under the cards */
.mini-strip {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.05rem 1.15rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mini-strip-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(20, 40, 61, 0.07);
    border: 1px solid rgba(20, 40, 61, 0.12);
}

    .mini-strip-icon i {
        color: var(--ink-2);
        font-size: 1.25rem;
    }

.mini-strip-title {
    font-weight: 900;
}

.mini-strip-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.2rem;
}

/* ---------- Founder section ---------- */

.founder {
    background: #fff;
    border-top: 1px solid var(--line);
}

.founder-card {
    background: radial-gradient(900px 520px at 20% 20%, rgba(107, 122, 42, 0.10), transparent 60%), #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.founder-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.founder-photo-placeholder {
    width: 132px;
    height: 132px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(20, 40, 61, 0.06);
    border: 1px solid rgba(20, 40, 61, 0.10);
}

    .founder-photo-placeholder i {
        font-size: 2.2rem;
        color: rgba(20, 40, 61, 0.55);
    }

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge-soft {
    background: rgba(107, 122, 42, 0.10);
    border: 1px solid rgba(107, 122, 42, 0.18);
    color: var(--olive-2);
    font-weight: 800;
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
}

.founder-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.1rem;
}

.founder-li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.85rem;
    align-items: start;
}

    .founder-li i {
        color: var(--olive);
        font-size: 1.2rem;
        margin-top: 0.1rem;
    }

.founder-li-title {
    font-weight: 950;
}

.founder-li-sub {
    color: rgba(20, 40, 61, 0.75);
    margin-top: 0.15rem;
}

.founder-photo-img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    border-radius: 999px;
    border: 1px solid rgba(20, 40, 61, 0.15);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* ---------- Contact page ---------- */

.contact-main {
    background: transparent;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem 1.6rem 1.4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-card-primary {
    position: relative;
    overflow: hidden;
}

    .contact-card-primary::before {
        content: "";
        position: absolute;
        inset: -90px -140px auto auto;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle at 30% 30%, rgba(107,122,42,0.22), transparent 65%);
        transform: rotate(18deg);
        opacity: 0.9;
        pointer-events: none;
    }

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(20, 40, 61, 0.10);
    border-radius: 18px;
    background: rgba(20, 40, 61, 0.02);
}

.ci-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(107, 122, 42, 0.12);
    border: 1px solid rgba(107, 122, 42, 0.20);
}

    .ci-icon i {
        color: var(--olive-2);
        font-size: 1.2rem;
    }

.ci-title {
    font-weight: 950;
}

.ci-sub a {
    font-weight: 850;
    color: var(--ink);
    text-decoration: none;
}

    .ci-sub a:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

.ci-note {
    margin-top: 0.2rem;
    color: rgba(20, 40, 61, 0.70);
    font-size: 0.95rem;
}

.what-to-send {
    padding: 1.15rem;
    border: 1px solid rgba(107, 122, 42, 0.20);
    border-radius: 22px;
    background: rgba(107, 122, 42, 0.08);
}

.what-title {
    font-weight: 950;
    margin-bottom: 0.75rem;
}

.what-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

    .what-list li {
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 0.75rem;
        align-items: start;
        color: rgba(20, 40, 61, 0.88);
    }

    .what-list i {
        color: var(--olive);
        margin-top: 0.15rem;
    }

.mini-area {
    display: grid;
    gap: 0.55rem;
}

.mini-area-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: rgba(20, 40, 61, 0.85);
    font-weight: 650;
}

    .mini-area-item i {
        color: var(--olive);
        margin-top: 0.15rem;
    }

/* ---------- Coverage checker ---------- */

.coverage {
    background: radial-gradient(900px 520px at 15% 20%, rgba(107, 122, 42, 0.08), transparent 60%), radial-gradient(900px 520px at 80% 10%, rgba(20, 40, 61, 0.05), transparent 60%), transparent;
    border-top: 1px solid var(--line);
}

.coverage-card,
.coverage-map-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.coverage-dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1050;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 40, 61, 0.12);
}

    .coverage-dd .list-group-item {
        border: 0;
        padding: 0.75rem 0.9rem;
        cursor: pointer;
    }

        .coverage-dd .list-group-item:hover,
        .coverage-dd .list-group-item.active {
            background: rgba(107, 122, 42, 0.10);
        }

    .coverage-dd .dd-title {
        font-weight: 900;
    }

    .coverage-dd .dd-sub {
        color: rgba(20, 40, 61, 0.70);
        font-size: 0.95rem;
        margin-top: 0.05rem;
    }

.coverage-result {
    border-radius: 18px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(20, 40, 61, 0.12);
    background: rgba(20, 40, 61, 0.03);
    font-weight: 650;
}

    .coverage-result.ok {
        border-color: rgba(40, 167, 69, 0.25);
        background: rgba(40, 167, 69, 0.08);
    }

    .coverage-result.maybe {
        border-color: rgba(255, 193, 7, 0.30);
        background: rgba(255, 193, 7, 0.12);
    }

.coverage-map-head {
    margin-bottom: 0.8rem;
}

.coverage-map-title {
    font-weight: 950;
}

.coverage-map-sub {
    color: rgba(20, 40, 61, 0.70);
    margin-top: 0.15rem;
}

.coverage-map {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 40, 61, 0.10);
}

.coverage-map-foot {
    margin-top: 0.75rem;
}

/* ---------- Portal ---------- */

.portal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.portal-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

    .portal-tile i {
        font-size: 1.35rem;
        color: var(--olive-2);
    }

.pt-title {
    margin-top: 0.75rem;
    font-weight: 950;
}

.pt-sub {
    margin-top: 0.15rem;
    color: rgba(20, 40, 61, 0.72);
}

/* ---------- Services: Legal & limitations ---------- */

.service-legal {
    background: #f7f5ef; /* soft beige, aligns with brand */
}

.legal-box {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-icon {
    font-size: 1.4rem;
    color: var(--olive);
    margin-top: 0.15rem;
}

/* ---------- Pricing: Legal note ---------- */

.pricing-legal-box {
    background: #faf9f5; /* very soft beige */
    border: 1px dashed var(--line);
    border-radius: 18px;
    padding: 1.1rem 1.3rem;
}

.pricing-legal-icon {
    color: var(--olive);
    margin-top: 0.15rem;
}

.location-body .card-body p:last-child {
    margin-bottom: 0;
}

.location-body .card-body h2,
.location-body .card-body h3 {
    margin-top: 1.25rem;
}



@media (max-width: 992px) {
    section{padding:20px}
}
