:root {
    --green: #82B440;
    --green-deep: #5A8F28;
    --light-green: #D8EBB8;
    --mint: #EAF6D4;
    --yellow: #F5C400;
    --yellow-deep: #D4A800;
    --white: #ffffff;
    --ink: #243024;
    --muted: #5a6b5a;
    --line: #d5e3c4;
    --shadow: 0 12px 32px rgba(36, 48, 36, .12);
    --radius: 6px;
    --max: 1180px;
    --font: "Montserrat", "Segoe UI", sans-serif;
    --hero-min: 360px;
    --page-hero-min: 240px;
    --hero-overlay: rgba(61, 122, 34, .55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .4rem .8rem; z-index: 20; }

.topbar {
    background: var(--green-deep);
    color: var(--white);
    font-size: .82rem;
    padding: .45rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.topbar a { color: var(--yellow); text-decoration: none; }
.socials { display: flex; gap: .45rem; align-items: center; }
.socials a {
    width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius);
    display: grid; place-items: center; color: var(--white); text-decoration: none; font-size: .85rem;
}
.socials a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.lang-switch { display: flex; gap: .35rem; align-items: center; }
.lang-switch button {
    border: 1px solid rgba(255,255,255,.45); background: #fff; color: #000;
    border-radius: 4px; padding: .15rem .35rem; cursor: pointer; display: inline-flex; align-items: center; gap: .3rem;
    font: inherit; font-size: .72rem; letter-spacing: .04em; font-weight: 700;
}
.lang-switch button span { color: #000; font-weight: 700; }
.lang-switch button.active, .lang-switch button:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.lang-switch img { width: 16px; height: 12px; object-fit: cover; }
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, #google_translate_element { display: none !important; }
body { top: 0 !important; }

.site-header {
    position: sticky; top: 0; z-index: 40;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 52px; width: auto; display: block; }
.site-footer .brand-logo { height: 58px; margin-bottom: .7rem; }
.auth-visual .brand-logo { height: 68px; }
.nav { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav a { text-decoration: none; font-size: .82rem; font-weight: 600; color: var(--ink); transition: color .2s ease; }
@media (min-width: 901px) {
    .nav { gap: 1.7rem; flex-wrap: nowrap; }
    .nav a {
        text-transform: uppercase;
        letter-spacing: .09em;
        font-size: .78rem;
        white-space: nowrap;
    }
}
.nav a:hover { color: var(--green); }
.nav a.active { color: var(--green-deep); border-bottom: 2px solid var(--yellow); padding-bottom: .15rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    background: var(--green); color: var(--white); text-decoration: none; border: 0;
    padding: .7rem 1.15rem; border-radius: var(--radius); cursor: pointer; font: inherit; font-weight: 600;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-gold { background: var(--yellow); color: var(--ink); }
.btn-gold:hover { background: var(--yellow-deep); }
.btn-line { background: var(--white); border: 1px solid var(--green); color: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn-google { background: var(--white); color: var(--ink); border: 1px solid var(--line); width: 100%; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.3rem; color: var(--green-deep); }

.hero-carousel { position: relative; color: var(--white); }
.hero-stage, .page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--green-deep) center/cover no-repeat;
}
.hero-stage {
    min-height: var(--hero-min);
    height: var(--hero-min);
    max-height: var(--hero-min);
}
.page-hero,
.page-hero.hero-stage {
    min-height: var(--page-hero-min);
    height: var(--page-hero-min);
    max-height: var(--page-hero-min);
    padding: 0;
}
.hero-slide {
    position: absolute; inset: 0; background: var(--green-deep) center/cover no-repeat;
    opacity: 0; transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide .shade, .page-hero .shade {
    position: absolute; inset: 0;
    background: var(--hero-overlay);
}
.hero-slide .wrap, .page-hero .wrap {
    position: relative; z-index: 2;
    display: grid; align-content: center;
}
.hero-slide .wrap {
    min-height: var(--hero-min);
    height: 100%;
    padding: 1rem 0 2rem;
}
.page-hero .wrap,
.page-hero.hero-stage .wrap {
    min-height: 0;
    height: 100%;
    padding: .55rem 0;
}
.eyebrow { color: var(--yellow); letter-spacing: .18em; text-transform: uppercase; font-size: .68rem; font-weight: 700; }
.hero-slide .eyebrow,
.page-hero .eyebrow {
    display: inline-block;
}
.hero-slide .eyebrow::after,
.page-hero .eyebrow::after {
    content: "";
    display: block;
    width: 2.35rem;
    height: 2px;
    background: var(--yellow);
    margin-top: .32rem;
}
h1, h2, h3, .title-yellow { font-weight: 700; line-height: 1.2; }
.hero-slide h1, .page-hero h1, .title-yellow { color: var(--yellow); }
.hero-slide h1 {
    margin: .22rem 0 .4rem;
    max-width: 24ch;
    font-size: clamp(1.22rem, 2.5vw, 1.95rem);
}
.page-hero h1 {
    margin: .1rem 0 .22rem;
    max-width: 36rem;
    font-size: clamp(1.02rem, 1.9vw, 1.38rem);
    line-height: 1.18;
}
.hero-slide p, .page-hero p {
    max-width: 36rem;
    color: var(--white);
    margin: 0;
}
.hero-slide p { font-size: .9rem; line-height: 1.45; }
.page-hero p {
    font-size: .82rem;
    line-height: 1.38;
    max-width: 40rem;
}
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .65rem; }
.page-hero .price { margin: .35rem 0 0; font-size: 1.05rem; }
.carousel-nav { display: none !important; }
.carousel-dots {
    position: relative; z-index: 3; display: flex; justify-content: center; gap: .45rem;
    padding: .7rem 0 .85rem; background: var(--green-deep);
}
.hero-carousel .carousel-dots {
    position: absolute; left: 0; right: 0; bottom: .7rem; z-index: 4;
    padding: 0; background: transparent;
}
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.carousel-dots button.on { background: var(--yellow); }

.section { padding: 4.2rem 0; }
.section.alt { background: var(--mint); }
.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 2rem; }
.section-head h2, .section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: .2rem 0 0; color: var(--yellow-deep); }
.kicker { color: var(--green); letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; font-weight: 700; }

.cards, .pkg-grid, .split, .faq-list { display: grid; gap: 1.2rem; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card, .pkg-card, .panel {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.3rem; box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .pkg-card:hover { transform: translateY(-6px); }
.card h3 { margin-top: .3rem; color: var(--green-deep); }
.icon-blob {
    width: 46px; height: 46px; border-radius: var(--radius); background: var(--light-green);
    display: grid; place-items: center; color: var(--green-deep); font-size: 1.15rem;
}
.card-photo { height: 170px; overflow: hidden; margin: -1.3rem -1.3rem 1rem; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }

.pkg-grid { grid-template-columns: repeat(3, 1fr); }
.pkg-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pkg-visual { height: 180px; overflow: hidden; background: var(--light-green); }
.pkg-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pkg-card:hover .pkg-visual img { transform: scale(1.06); }
.pkg-card .body { padding: 1.15rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.pkg-card .meta { color: var(--green); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.price { font-size: 1.35rem; color: var(--green-deep); margin: .3rem 0; font-weight: 700; }
.badge { display: inline-block; background: var(--light-green); color: var(--green-deep); border-radius: 4px; padding: .15rem .5rem; font-size: .72rem; font-weight: 700; }

.split { grid-template-columns: 1fr 1fr; align-items: center; }
.quote { border-left: 3px solid var(--yellow); padding-left: 1rem; color: var(--muted); }
.photo-frame { overflow: hidden; border-radius: var(--radius); min-height: 280px; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.form { display: grid; gap: .8rem; }
label { font-size: .86rem; color: var(--muted); font-weight: 600; }
input, select, textarea {
    width: 100%; padding: .75rem .85rem; border: 1px solid var(--line); border-radius: var(--radius);
    font: inherit; background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 2.6rem; }
.pw-toggle {
    position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
    border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 1rem;
}
.alert { padding: .85rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert-ok { background: var(--light-green); color: var(--green-deep); }
.alert-err { background: #fff4cc; color: #6a4a00; }
.alert-dev { background: var(--mint); border: 1px dashed var(--green); }

.site-footer { background: var(--green-deep); color: var(--light-green); padding: 3rem 0 1.3rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }
.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer h4 { color: var(--yellow); margin: 0 0 .7rem; }
.site-footer .btn-gold { color: #3d7a1f; font-weight: 700; }
.site-footer .btn-gold:hover { color: #2f5f18; }
.legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }

.share { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; align-items: center; }
.share a { border: 1px solid var(--line); padding: .35rem .7rem; border-radius: var(--radius); text-decoration: none; font-size: .82rem; }
.share-icons a {
    width: 40px; height: 40px; padding: 0; display: grid; place-items: center;
    background: var(--green); color: #fff; border-color: var(--green); font-size: 1rem;
}
.share-icons a:hover { background: var(--green-deep); color: #fff; }

.float-wa, .chat-toggle {
    position: fixed; right: 1.1rem; z-index: 50; border-radius: var(--radius); text-decoration: none;
    display: grid; place-items: center; box-shadow: var(--shadow); border: 0; cursor: pointer;
}
.float-wa { bottom: 5.4rem; background: #25D366; color: #fff; width: 50px; height: 50px; font-size: 1.3rem; }
.chat-toggle { bottom: 1.2rem; width: 50px; height: 50px; background: var(--yellow); color: var(--ink); font-size: 1.2rem; }
.chatbox {
    position: fixed; right: 1.1rem; bottom: 5.4rem; width: min(360px, calc(100vw - 2rem));
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); display: none; overflow: hidden; z-index: 50;
}
.chatbox.open { display: flex; flex-direction: column; max-height: 70vh; }
.chatbox header { background: var(--green-deep); color: #fff; padding: .8rem 1rem; font-weight: 700; }
.chat-log { padding: 1rem; overflow: auto; display: grid; gap: .6rem; min-height: 220px; }
.bubble { padding: .7rem .85rem; border-radius: var(--radius); font-size: .9rem; }
.bubble.bot { background: var(--mint); }
.bubble.me { background: var(--green); color: #fff; justify-self: end; }
.chatbox form { display: flex; border-top: 1px solid #eee; }
.chatbox input { border: 0; border-radius: 0; }
.chatbox button { border: 0; background: var(--green); color: #fff; padding: 0 1rem; border-radius: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { background: #fff; padding: 1.2rem; border-radius: var(--radius); border-top: 3px solid var(--yellow); }
.step span { font-size: 1.5rem; color: var(--yellow); font-weight: 700; }

.stage-track {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
    position: relative; align-items: stretch;
}
.stage-track::before {
    content: "";
    position: absolute;
    top: 28px; left: 8%; right: 8%;
    height: 2px; background: var(--yellow);
    z-index: 0; pointer-events: none;
}
.stage-card {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    background: transparent; border: 0; box-shadow: none;
    height: 100%;
    transition: transform .25s ease;
}
.stage-card:hover { transform: translateY(-8px); }
.stage-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 23px; right: -1.05rem;
    width: 10px; height: 10px;
    border-top: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
    transform: rotate(45deg);
    z-index: 3; background: var(--white);
}
.stage-node {
    width: 56px; height: 56px; border-radius: 50%;
    margin: 0 auto 1.05rem;
    background: var(--yellow); color: var(--ink);
    display: grid; place-items: center;
    font-weight: 700; font-size: 1.05rem; letter-spacing: .04em;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--yellow);
    position: relative; z-index: 2;
    flex-shrink: 0;
}
.stage-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 1;
    display: flex; flex-direction: column;
    min-height: 320px;
    transition: box-shadow .25s ease;
}
.stage-card:hover .stage-panel { box-shadow: 0 18px 40px rgba(36, 48, 36, .16); }
.stage-visual {
    position: relative;
    height: 168px; flex-shrink: 0;
    background: var(--green-deep) center/cover no-repeat;
    overflow: hidden;
}
.stage-visual .stage-shade {
    position: absolute; inset: 0;
    background: rgba(61, 122, 34, .55);
}
.stage-icon {
    position: absolute; top: .85rem; right: .85rem; z-index: 1;
    width: 42px; height: 42px; border-radius: var(--radius);
    background: var(--yellow); color: var(--ink);
    display: grid; place-items: center; font-size: 1.05rem;
}
.stage-body {
    padding: 1.15rem 1.15rem 1.3rem;
    flex: 1; display: flex; flex-direction: column;
}
.stage-body h3 {
    margin: 0 0 .45rem;
    color: var(--yellow-deep);
    font-size: 1.05rem;
}
.stage-body p {
    margin: 0; color: var(--muted); font-size: .9rem;
}
.stage-cta { margin-top: 2.2rem; text-align: center; }

.pkg-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin: 0 0 1.4rem; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.disclaimer { font-size: .85rem; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

.quote-carousel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.quote-stage { position: relative; min-height: 200px; padding: 1.4rem 1.4rem 1rem; }
.testimonial { display: none; }
.testimonial.is-active { display: block; animation: fadein .45s ease; }
.quote-carousel .carousel-dots { background: var(--mint); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.vmv-card {
    position: relative; min-height: 260px; overflow: hidden; border-radius: var(--radius);
    background: var(--green-deep) center/cover no-repeat; color: #fff; padding: 1.4rem;
    box-shadow: var(--shadow);
}
.vmv-card .vmv-shade { position: absolute; inset: 0; background: rgba(36, 48, 36, .74); }
.vmv-card .vmv-inner { position: relative; z-index: 1; }
.vmv-card .kicker { color: var(--yellow); }
.vmv-card h3 { color: var(--yellow); font-size: 1.15rem; margin: .4rem 0 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item { padding: 0; overflow: hidden; }
.gallery-item .card-photo { height: 200px; margin: 0; }
.gallery-item .body { padding: 1rem 1.1rem 1.2rem; }
.gallery-item iframe, .gallery-item video { width: 100%; height: 200px; border: 0; background: #111; }
.doc-row { display: flex; align-items: center; gap: .8rem; }

.demo-try {
    margin: 1.2rem 0 0; padding: 1rem 1.05rem; border: 1px solid var(--green);
    background: var(--mint); border-radius: var(--radius);
}
.demo-try .kicker { margin-bottom: .25rem; }
.demo-try p { margin: .35rem 0; font-size: .9rem; }
.demo-creds { font-family: var(--font); font-size: .86rem; color: var(--ink); }
.table-wrap {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-wrap table {
    width: 100%;
    min-width: 640px;
    table-layout: auto;
    border-collapse: collapse;
}
th, td {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    word-wrap: normal;
}
.cell-url { overflow-wrap: anywhere; word-break: normal; }

.demo-banner {
    background: var(--yellow); color: #3d7a1f; padding: .7rem 1rem; border-radius: var(--radius);
    font-weight: 700; margin-bottom: 1rem;
}
.badge-demo { background: var(--yellow); color: #3d7a1f; }

.next-step { border-top: 3px solid var(--yellow); }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.trust-row span, .trust-row a {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: .45rem .7rem; font-size: .8rem; text-decoration: none; color: var(--muted); font-weight: 600;
}

.thread { display: grid; gap: .7rem; }
.bubble-in { background: var(--mint); padding: .8rem 1rem; border-radius: var(--radius); }
.bubble-out { background: var(--green); color: #fff; padding: .8rem 1rem; border-radius: var(--radius); justify-self: end; max-width: 80%; }

@media (max-width: 900px) {
    :root { --hero-min: 280px; --page-hero-min: 200px; }
    .hero-grid, .cards, .pkg-grid, .split, .foot-grid, .steps, .team, .gallery-grid, .stage-track { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr 1fr; }
    .nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        width: 100%; max-height: 50vh; overflow-y: auto;
        background: #fff;
        grid-template-columns: 1fr 1fr;
        align-items: stretch; gap: .25rem .5rem;
        padding: .7rem 1rem 1rem; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow); z-index: 45;
    }
    .nav.open { display: grid; }
    .nav a { padding: .45rem .55rem; border-radius: var(--radius); text-transform: none; letter-spacing: 0; font-size: .88rem; }
    .nav a.active { background: var(--mint); color: var(--green-deep); border-left: 3px solid var(--yellow); border-bottom: 0; padding-bottom: .45rem; }
    .nav a.btn { grid-column: 1 / -1; width: 100%; margin-top: .15rem; padding: .55rem .75rem; }
    .menu-toggle { display: block; }
    .hero-slide h1 { font-size: clamp(1.08rem, 4.6vw, 1.42rem); }
    .page-hero h1 { font-size: clamp(.98rem, 3.8vw, 1.16rem); }
    .hero-slide p { font-size: .82rem; }
    .page-hero p { font-size: .78rem; }
    .hero-slide .wrap { padding: .75rem 0 1.7rem; }
    .page-hero .wrap, .page-hero.hero-stage .wrap { padding: .4rem 0; }
    .stage-track { gap: 2rem; }
    .stage-track::before { display: none; }
    .stage-card:not(:last-child)::after {
        top: auto; right: auto; left: 50%; bottom: -1.25rem;
        border-top: 0; border-right: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
        transform: translateX(-50%) rotate(45deg);
        background: transparent;
    }
    .stage-node { margin: 0 auto 1.05rem; }
    .stage-panel { min-height: 0; }
    .table-wrap { overflow: visible; }
    .table-wrap table { display: block; min-width: 0; width: 100%; }
    .table-wrap tr:has(> th) {
        position: absolute; width: 1px; height: 1px; overflow: hidden;
        clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }
    .table-wrap tr:has(> td) {
        display: block; background: #fff; border: 1px solid var(--line);
        border-radius: var(--radius); margin-bottom: .75rem; padding: .35rem .85rem;
    }
    .table-wrap td {
        display: flex; justify-content: space-between; gap: .75rem; width: 100%;
        white-space: normal; word-break: normal; overflow-wrap: break-word;
        border-bottom: 1px solid var(--line); padding: .5rem 0; text-align: right;
    }
    .table-wrap td:last-child { border-bottom: 0; }
    .table-wrap td::before {
        content: attr(data-label); font-weight: 700; color: var(--muted);
        white-space: nowrap; text-align: left; flex: 0 0 auto;
    }
    .table-wrap td[data-label=""]::before,
    .table-wrap td[colspan]::before { content: none; }
}
@media (max-width: 640px) {
    .pkg-grid { grid-template-columns: 1fr; }
}
