:root {
    --bg: #f5f8f4;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --text: #1d2a24;
    --muted: #62736b;
    --line: rgba(16, 59, 47, 0.12);
    --green: #103b2f;
    --green-soft: #1a5f4b;
    --accent: #e8a33b;
    --blue: #1780cc;
    --shadow: 0 24px 60px rgba(12, 43, 34, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(23, 128, 204, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(232, 163, 59, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbf7 0%, #eef4ee 100%);
    color: var(--text);
}

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

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, #0d3026 0%, #154e3e 50%, #0f3c2f 100%);
    color: rgba(255, 255, 255, 0.86);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    font-size: 0.86rem;
}

.topbar-inner p {
    margin: 0;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(248, 251, 247, 0.82);
    border-bottom: 1px solid rgba(16, 59, 47, 0.08);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 68px;
    height: 68px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 59, 47, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(16, 59, 47, 0.12);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text strong {
    font-size: 1.05rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.82rem;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.nav-links a {
    position: relative;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    color: #345248;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: rgba(16, 59, 47, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #f4bb63);
    color: #1f2019;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(232, 163, 59, 0.25);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--green);
    margin: 5px 0;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 88px 0 72px;
    background:
        linear-gradient(135deg, rgba(7, 32, 25, 0.88), rgba(16, 59, 47, 0.8)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80") center/cover;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(23, 128, 204, 0.18), transparent 22%),
        radial-gradient(circle at 85% 18%, rgba(232, 163, 59, 0.22), transparent 22%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow,
.why-panel .eyebrow {
    background: rgba(16, 59, 47, 0.08);
    color: var(--green);
}

.hero h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-text,
.page-hero p,
.section-heading p,
.showcase-copy > p,
.detail-copy p,
.cta-panel p,
.why-panel p,
.region-card p,
.reason-card p,
.process-card p,
.stat-card p,
.service-card p,
.benefit-card p {
    color: inherit;
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f4bb63);
    color: #1f2019;
    box-shadow: 0 20px 34px rgba(232, 163, 59, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-panel .btn-secondary,
.page-hero .btn-secondary,
.section .btn-secondary {
    background: rgba(16, 59, 47, 0.08);
    color: var(--green);
    border: 1px solid rgba(16, 59, 47, 0.12);
}

.page-hero-services .eyebrow {
    background: rgba(23, 128, 204, 0.18);
    color: #dff1ff;
}

.page-hero-trust .eyebrow {
    background: rgba(243, 179, 77, 0.2);
    color: #fff2d6;
}

.hero-points {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f4bb63);
    box-shadow: 0 0 0 6px rgba(232, 163, 59, 0.12);
}

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

.hero-logo-card,
.price-box,
.trust-card,
.stat-card,
.service-card,
.visual-card,
.region-card,
.detail-card,
.benefit-card,
.reason-card,
.process-card,
.why-panel,
.cta-panel,
.emphasis-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.hero-logo-card {
    padding: 24px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
}

.hero-logo-card img {
    width: min(100%, 420px);
    margin: 0 auto;
}

.price-box {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(232, 163, 59, 0.18), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.price-box span {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-box strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.price-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}

.trust-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.trust-card div {
    display: grid;
    gap: 5px;
}

.trust-card strong {
    font-size: 1.08rem;
}

.trust-card span {
    color: rgba(255, 255, 255, 0.82);
}

.stats-section {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.local-section {
    padding-top: 70px;
}

.stats-grid,
.local-grid,
.service-grid,
.region-grid,
.benefit-grid,
.reasons-grid,
.process-grid,
.reviews-grid {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.local-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 59, 47, 0.08);
    box-shadow: var(--shadow);
}

.local-card.featured {
    background: linear-gradient(135deg, rgba(16, 59, 47, 0.98), rgba(21, 88, 70, 0.94));
    color: #ffffff;
}

.local-card.featured p {
    color: rgba(255, 255, 255, 0.82);
}

.inline-link {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 800;
    color: #ffffff;
}

.stat-card strong,
.service-card h3,
.region-card h3,
.local-card h3,
.benefit-card h3,
.reason-card h3,
.process-card h3,
.visual-copy h3,
.detail-copy h2,
.why-panel h2 {
    margin: 0 0 12px;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(226, 238, 232, 0.82)),
        radial-gradient(circle at 0% 0%, rgba(23, 128, 204, 0.08), transparent 20%);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.showcase-copy h2,
.cta-panel h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.showcase-copy > p,
.cta-panel p,
.why-panel p,
.region-card p,
.reason-card p,
.process-card p,
.stat-card p,
.service-card p,
.benefit-card p,
.detail-copy p {
    color: var(--muted);
    margin: 0;
}

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

.service-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 59, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.visual-card:hover,
.region-card:hover,
.benefit-card:hover,
.reason-card:hover,
.process-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 128, 204, 0.12), rgba(16, 59, 47, 0.1));
    color: var(--green);
    font-weight: 800;
}

.showcase-grid,
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.trust-item {
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.trust-item p {
    margin: 0;
    color: var(--muted);
}

.showcase-panel {
    display: grid;
    gap: 18px;
}

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

.visual-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.visual-card img,
.detail-image img,
.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.visual-large img {
    min-height: 420px;
}

.visual-card:not(.visual-large) img {
    height: 240px;
}

.visual-copy {
    padding: 22px;
}

.region-grid,
.benefit-grid,
.reasons-grid,
.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.region-card,
.benefit-card,
.reason-card,
.review-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.review-card {
    position: relative;
}

.review-card::before {
    content: "5.0";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(232, 163, 59, 0.18);
    color: #7a4a00;
    font-weight: 800;
}

.review-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.review-head strong {
    font-size: 1.08rem;
}

.review-head span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.cta-section {
    padding-top: 0;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(16, 59, 47, 0.95), rgba(21, 88, 70, 0.92)),
        radial-gradient(circle at right top, rgba(232, 163, 59, 0.22), transparent 25%);
    color: #ffffff;
}

.cta-panel .eyebrow {
    background: rgba(243, 179, 77, 0.18);
    color: #ffe3b2;
}

.cta-panel .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 16px 28px rgba(6, 22, 17, 0.18);
}

.cta-panel .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.site-footer {
    padding: 32px 0 20px;
    background: #0d3026;
    color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    gap: 24px;
    align-items: start;
}

.footer-inner p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-note {
    margin: 22px auto 0;
    width: min(var(--container), calc(100% - 32px));
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(37, 211, 102, 0.25);
    box-shadow: 0 20px 38px rgba(13, 48, 38, 0.22);
}

.floating-whatsapp img {
    width: 38px;
    height: 38px;
}

.page-hero {
    padding: 82px 0 58px;
}

.page-hero-services {
    background:
        linear-gradient(135deg, rgba(8, 36, 28, 0.9), rgba(16, 59, 47, 0.78)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80") center/cover;
    color: #ffffff;
}

.page-hero-trust {
    background:
        linear-gradient(135deg, rgba(8, 36, 28, 0.88), rgba(23, 128, 204, 0.45)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80") center/cover;
    color: #ffffff;
}

.page-hero-inner {
    max-width: 860px;
}

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

.detail-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.detail-card.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.detail-card.reverse .detail-image {
    order: 2;
}

.detail-copy {
    padding: 38px;
}

.detail-tag {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(16, 59, 47, 0.08);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.detail-features {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.detail-features li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.65;
}

.detail-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f4bb63);
    box-shadow: 0 0 0 5px rgba(232, 163, 59, 0.12);
}

.why-grid {
    align-items: stretch;
}

.why-panel,
.emphasis-panel {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.emphasis-panel {
    padding: 38px;
}

.image-panel {
    min-height: 420px;
}

.process-layout {
    display: grid;
    gap: 28px;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 59, 47, 0.08);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(23, 128, 204, 0.1);
    color: var(--blue);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .nav-inner {
        grid-template-columns: auto auto;
    }

    .nav-links {
        grid-column: 1 / -1;
        order: 4;
        padding-top: 6px;
    }

    .nav-cta {
        justify-self: end;
    }

    .hero-grid,
    .showcase-grid,
    .why-grid,
    .detail-card,
    .detail-card.reverse,
    .footer-inner,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .detail-card.reverse .detail-image {
        order: 0;
    }

    .stats-grid,
    .local-grid,
    .service-grid,
    .region-grid,
    .benefit-grid,
    .reasons-grid,
    .process-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(16, 59, 47, 0.08);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        text-align: center;
    }

    .hero,
    .page-hero,
    .section {
        padding: 72px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }

    .visual-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .brand-mark {
        width: 58px;
        height: 58px;
    }

    .brand-text small {
        display: none;
    }

    .hero-logo-card {
        padding: 18px;
    }

    .stats-grid,
    .local-grid,
    .service-grid,
    .region-grid,
    .benefit-grid,
    .reasons-grid,
    .process-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .service-card,
    .region-card,
    .benefit-card,
    .reason-card,
    .process-card,
    .detail-copy,
    .emphasis-panel,
    .cta-panel {
        padding: 24px;
    }

    .detail-card,
    .visual-large {
        min-height: auto;
    }

    .visual-large img,
    .visual-card:not(.visual-large) img,
    .image-panel img {
        height: 260px;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
    }
}
