:root {
    --bg: #f5f3ed;
    --bg-soft: #fbfaf6;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --surface-muted: rgba(227, 235, 231, 0.72);
    --text: #17231b;
    --text-soft: #5d685f;
    --line: rgba(23, 35, 27, 0.1);
    --green: #147744;
    --green-dark: #0e5a34;
    --green-soft: #198754;
    --whatsapp: #25d366;
    --accent: #c9a36f;
    --shadow: 0 24px 70px rgba(18, 35, 24, 0.1);
    --radius-xl: 30px;
    --radius-lg: 22px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 119, 68, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(37, 211, 102, 0.08), transparent 22%),
        linear-gradient(180deg, #fbfaf6 0%, #f5f3ed 42%, #efede6 100%);
}

main {
    overflow: hidden;
}

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

a:hover {
    color: inherit;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.9rem 1.45rem;
    border: 0;
}

.btn::before {
    display: none;
    content: '';
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-call {
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    box-shadow: 0 16px 36px rgba(20, 119, 68, 0.26);
}

.btn-call::before {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.18 2 2 0 0 1 4.09 2h3a2 2 0 0 1 2 1.72 12.7 12.7 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.1 9.91a16 16 0 0 0 6 6l1.27-1.24a2 2 0 0 1 2.11-.45 12.7 12.7 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.btn-call:hover,
.btn-call:focus {
    color: #fff;
    background: linear-gradient(135deg, #12663b 0%, #18854c 100%);
}

.btn-whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #1cb955 100%);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp::before {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M19.11 17.24c-.28-.14-1.64-.81-1.89-.9-.25-.09-.43-.14-.61.14-.18.28-.7.9-.85 1.09-.16.19-.31.21-.59.07-.28-.14-1.18-.43-2.25-1.37-.83-.74-1.39-1.65-1.55-1.93-.16-.28-.02-.43.12-.57.12-.12.28-.31.42-.47.14-.16.19-.28.28-.47.09-.19.05-.35-.02-.49-.07-.14-.61-1.47-.84-2.01-.22-.54-.44-.47-.61-.48h-.52c-.19 0-.49.07-.74.35-.25.28-.95.93-.95 2.27s.97 2.63 1.11 2.82c.14.19 1.91 2.91 4.64 4.08.65.28 1.16.44 1.55.56.65.21 1.24.18 1.71.11.52-.08 1.64-.67 1.87-1.32.23-.65.23-1.2.16-1.32-.07-.12-.25-.19-.52-.33z'/%3E%3Cpath fill='white' d='M16.03 3C8.85 3 3 8.74 3 15.77c0 2.47.72 4.84 2.09 6.88L3 29l6.55-2.04a13.2 13.2 0 0 0 6.48 1.69h.01c7.18 0 13.03-5.74 13.03-12.77C29.06 8.74 23.21 3 16.03 3zm0 23.58h-.01c-2.04 0-4.04-.54-5.8-1.56l-.42-.25-3.89 1.21 1.27-3.77-.28-.43a10.6 10.6 0 0 1-1.64-5.66c0-5.86 4.86-10.63 10.84-10.63 2.89 0 5.61 1.11 7.65 3.13a10.48 10.48 0 0 1 3.19 7.5c0 5.86-4.86 10.64-10.83 10.64z'/%3E%3C/svg%3E");
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    background: linear-gradient(135deg, #2fe06f 0%, #22c45c 100%);
}


.btn-brand {
    color: #fff;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    box-shadow: 0 16px 36px rgba(20, 119, 68, 0.26);
}

.btn-brand::before,
.btn-outline-dark::before,
.btn-light::before,
.btn-outline-light::before {
    display: none;
}

.btn-outline-dark {
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 119, 68, 0.18);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    color: var(--green-dark);
    background: rgba(20, 119, 68, 0.08);
}

.top-strip {
    padding: 0.85rem 0;
    background: #0f1f16;
    color: rgba(248, 250, 245, 0.92);
    font-size: 0.9rem;
}

.top-badge-list,
.top-mini-actions,
.hero-tags,
.info-stack,
.district-cloud,
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.top-badge-list span,
.top-mini-actions a,
.hero-tags span,
.info-badge,
.district-cloud span,
.trust-line span {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.top-mini-actions a:last-child {
    color: #b8ffce;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 35, 27, 0.06);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(23, 35, 27, 0.08);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.navbar-brand strong,
.footer-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.navbar-brand small,
.footer-brand small {
    display: block;
    color: var(--text-soft);
    font-size: 0.82rem;
}

.brand-mark {
    width: 2.95rem;
    height: 2.95rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(145deg, var(--green-dark), var(--green-soft));
    box-shadow: 0 16px 34px rgba(20, 119, 68, 0.22);
}

.nav-link {
    color: var(--text-soft);
    font-weight: 700;
    padding: 0.8rem 1rem !important;
}

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

.navbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.eyebrow,
.mini-label,
.service-topline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
}

.eyebrow::before {
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whatsapp), var(--green));
}

.hero-section,
.page-hero {
    padding: 4.4rem 0 3.2rem;
}

.display-title,
.page-hero h1,
.hero-card h2,
.hero-micro-card h3,
.info-card h2,
.content-card h2,
.section-heading h2,
.quote-panel h2,
.cta-band h2,
.cta-inline h2,
.contact-card h2,
.landing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.display-title {
    font-size: clamp(3.3rem, 6vw, 5.6rem);
    margin: 1rem 0 1.2rem;
    max-width: 10.5ch;
}

.page-hero h1,
.section-heading h2,
.quote-panel h2,
.cta-band h2,
.cta-inline h2,
.info-card h2,
.content-card h2,
.contact-card h2,
.landing-card h3 {
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    margin: 0.75rem 0 1rem;
}

.lead-text {
    max-width: 62ch;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.4rem;
}

.hero-visual-shell,
.hero-card,
.info-card,
.content-card,
.service-card,
.process-card,
.mini-card,
.quote-panel,
.contact-card,
.cta-inline,
.landing-card,
.hero-micro-card {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-visual-shell {
    padding: 1.1rem;
    background:
        radial-gradient(circle at top left, rgba(37, 211, 102, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 241, 0.94) 100%);
}

.hero-visual-shell img {
    width: 100%;
    border-radius: 24px;
}

.visual-float-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 13rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 35, 27, 0.08);
    box-shadow: 0 18px 40px rgba(18, 35, 24, 0.12);
}

.visual-float-card strong {
    display: block;
    margin-bottom: 0.35rem;
}

.visual-float-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-grid {
    display: grid;
    gap: 1rem;
}

.hero-card,
.info-card,
.content-card,
.service-card,
.process-card,
.mini-card,
.quote-panel,
.contact-card,
.cta-inline,
.landing-card,
.hero-micro-card {
    padding: 2rem;
}

.hero-card::after,
.info-card::after,
.quote-panel::after {
    content: '';
    position: absolute;
    inset: auto -3rem -3rem auto;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 119, 68, 0.14), transparent 70%);
}

.hero-micro-card {
    background: linear-gradient(135deg, rgba(20, 119, 68, 0.08), rgba(37, 211, 102, 0.08));
}

.hero-micro-card h3,
.process-card h3,
.service-card h3,
.mini-card h3,
.contact-card h2,
.reason-list h3,
.landing-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-micro-card p,
.section-heading p,
.content-card p,
.info-card p,
.service-card p,
.mini-card p,
.process-card p,
.contact-card p,
.quote-panel p,
.reason-list p,
.landing-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.4rem 0;
}

.metric-grid article {
    padding: 1rem;
    border-radius: 20px;
    background: var(--surface-muted);
    border: 1px solid rgba(23, 35, 27, 0.06);
}

.metric-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--green-dark);
    font-size: 1.1rem;
}

.metric-grid span {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-list,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.check-list li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.check-list li::before {
    content: '•';
    position: absolute;
    left: 0.45rem;
    top: 0;
    color: var(--green-soft);
    font-size: 1.15rem;
}

.section-block {
    padding: 0.8rem 0 3.8rem;
}

.alt-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(223, 243, 231, 0.46) 16%, rgba(223, 243, 231, 0.46) 84%, rgba(255, 255, 255, 0) 100%);
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.narrow h2 {
    max-width: 15ch;
}

.section-heading.text-start h2 {
    margin-left: 0;
    margin-right: 0;
}

.trust-line span {
    border-color: rgba(23, 35, 27, 0.08);
    background: rgba(255, 255, 255, 0.68);
    color: var(--text);
    font-weight: 700;
}

.reason-list {
    display: grid;
    gap: 0.25rem;
}

.reason-list article {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.reason-list article:last-child {
    border-bottom: 0;
}

.reason-list.compact article {
    padding: 0.6rem 0;
}

.process-card,
.service-card,
.mini-card,
.contact-card,
.landing-card {
    height: 100%;
}

.process-card > span {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 119, 68, 0.12), rgba(37, 211, 102, 0.12));
    color: var(--green-dark);
    font-weight: 800;
}

.landing-card {
    overflow: hidden;
    padding: 0;
}

.landing-card__media {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(223, 243, 231, 0.7), rgba(255, 255, 255, 0));
}

.landing-card__media img {
    width: 100%;
    border-radius: 22px;
}

.landing-card__body {
    padding: 0 1.4rem 1.4rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
}

.text-link::after {
    content: '›';
    font-size: 1.15rem;
}

.quote-panel {
    margin: 1rem 0 3.8rem;
}

.form-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 18px;
    border: 1px solid rgba(23, 35, 27, 0.12);
    background: rgba(255, 255, 255, 0.94);
    padding: 0.95rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(37, 211, 102, 0.56);
    box-shadow: 0 0 0 0.28rem rgba(37, 211, 102, 0.16);
}

.form-note {
    color: var(--text-soft);
    max-width: 30rem;
}

.faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 30px rgba(18, 35, 24, 0.06);
}

.faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 800;
    padding: 1.2rem 1.35rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--green-dark);
    background: rgba(20, 119, 68, 0.04);
}

.faq-accordion .accordion-body {
    color: var(--text-soft);
    line-height: 1.75;
}

.cta-band {
    padding: 0 0 5.4rem;
}

.cta-band-inner,
.cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.cta-band-inner {
    padding: 2rem 2.2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: #fff;
    box-shadow: 0 26px 60px rgba(20, 119, 68, 0.24);
}

.cta-band .eyebrow,
.cta-band .eyebrow::before {
    color: #d7ffea;
}

.cta-band .eyebrow::before {
    background: #d7ffea;
}

.site-footer {
    padding: 4rem 0 6.8rem;
    background: #101d16;
    color: rgba(249, 251, 246, 0.86);
}

.site-footer .brand-mark {
    box-shadow: none;
}

.site-footer h2 {
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8ffce;
}

.footer-copy {
    margin-top: 1rem;
    max-width: 34ch;
    line-height: 1.75;
    color: rgba(249, 251, 246, 0.66);
}

.footer-links.compact {
    gap: 0.65rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(249, 251, 246, 0.86);
}

.footer-bottom {
    margin-top: 2.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(249, 251, 246, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    color: rgba(249, 251, 246, 0.56);
    font-size: 0.93rem;
}

.floating-contact {
    position: fixed;
    right: 1.15rem;
    top: 50%;
    z-index: 1035;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-contact .btn {
    min-width: 11rem;
    justify-content: center;
}

.mobile-cta {
    position: fixed;
    left: 50%;
    bottom: 0.9rem;
    z-index: 1035;
    width: min(calc(100% - 1rem), 26rem);
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(23, 35, 27, 0.1);
    box-shadow: 0 18px 40px rgba(18, 35, 24, 0.18);
    backdrop-filter: blur(14px);
}

.mobile-cta .btn {
    width: 100%;
    padding: 0.85rem 1rem;
}

.keyword-hero .hero-tags span {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(23, 35, 27, 0.08);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero-section,
    .page-hero {
        padding-top: 3.2rem;
    }

    .navbar-actions {
        padding-top: 0.6rem;
    }

    .cta-band-inner,
    .cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        padding-bottom: 7.6rem;
    }
}

@media (max-width: 767.98px) {
    .top-strip {
        font-size: 0.86rem;
    }

    .display-title {
        max-width: 100%;
    }

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

    .hero-visual-shell,
    .hero-card,
    .info-card,
    .content-card,
    .service-card,
    .process-card,
    .mini-card,
    .quote-panel,
    .contact-card,
    .cta-inline,
    .cta-band-inner,
    .landing-card,
    .hero-micro-card {
        border-radius: 24px;
    }

    .hero-card,
    .info-card,
    .content-card,
    .service-card,
    .process-card,
    .mini-card,
    .quote-panel,
    .contact-card,
    .cta-inline,
    .cta-band-inner,
    .hero-micro-card {
        padding: 1.45rem;
    }

    .landing-card__body {
        padding: 0 1.15rem 1.15rem;
    }

    .hero-actions,
    .page-hero .hero-actions,
    .cta-band .d-flex,
    .cta-inline .d-flex {
        width: 100%;
    }

    .hero-actions .btn,
    .page-hero .btn,
    .cta-band .btn,
    .cta-inline .btn,
    .navbar-actions .btn {
        width: 100%;
    }

    .visual-float-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .section-block {
        padding-bottom: 3rem;
    }

    .quote-panel {
        margin-bottom: 3rem;
    }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}