:root {
    --bg: #fff9f0;
    --paper: #ffffff;
    --ink: #201c16;
    --ink-soft: #6e6355;
    --ink-faint: #9c9284;
    --green: #3f6b4a;
    --green-soft: #eaf1e9;
    --clay: #c9713f;
    --line: #eee4d2;
    --shadow:
            0 1px 2px rgba(32, 28, 22, 0.04), 0 8px 24px rgba(32, 28, 22, 0.05);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.mt-25 {
    margin-top: 25px !important;
}
.mb-25 {
    margin-bottom: 25px !important;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
em {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 500;
    color: var(--green);
}
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}
h1,
h2,
h3 {
    font-family: 'Inter';
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green);
    background: var(--green-soft);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
button.fab-main,
button.burger,
button.faq-q,
.btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}
.btn {
    outline: none;
    text-align: center;
    /*display: inline-flex;*/
    /*align-items: center;*/
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: 1.5px solid transparent;
}
.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover {
    background: #325a3d;
}
.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: var(--paper);
}
.btn-ghost:hover {
    border-color: var(--ink-faint);
}
.btn:focus,
.btn:focus-visible {
    outline: none;
}
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 249, 240, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
}
.nav-links a:hover {
    color: var(--ink);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-phone {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}
@media (max-width: 900px) {
    .nav-links,
    .nav-phone {
        display: none;
    }
}
@media (max-width: 1024px) {
    .nav-phone {
        display: none;
    }
}
@media (max-width: 504px) {
    .nav-right .toggle-contact-form {
        display: none;
    }
}
.fab-wrap {
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 60;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: 60px;
}

.fab-options {
    visibility: hidden;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2px;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    transition:
            opacity 0.18s ease,
            transform 0.18s ease;
}
.fab-options.is-open {
    visibility: visible;
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.fab-option-label {
    background: var(--ink);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.fab-option-btn {
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.fab-option-btn svg {
    width: 22px;
    height: 22px;
}

.fab-main {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #325a3d;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(63, 107, 74, 0.4);
    transition:
            transform 0.2s ease,
            background 0.2s ease;
}
.fab-main:hover {
    background: #325a3d;
}
.fab-main svg {
    width: 24px;
    height: 24px;
}
.fab-main .icon-close {
    display: none;
}
.fab-main.is-open .icon-chat {
    display: none;
}
.fab-main.is-open .icon-close {
    display: block;
}
.fab-main.is-open {
    transform: rotate(0deg);
}

/* CALL MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(32, 28, 22, 0.45);
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.is-open {
    display: flex;
}
.call-modal {
    background: var(--paper);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 20px 50px rgba(32, 28, 22, 0.25);
}
.call-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.call-modal .modal-close svg {
    width: 14px;
    height: 14px;
}
.call-modal .modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.call-modal h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.call-modal p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 20px;
}
.call-modal input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    font-family: 'Inter';
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--ink);
}
.call-modal input:focus {
    outline: none;
    border-color: var(--green);
}
.call-modal .btn {
    width: 100%;
    justify-content: center;
}
.call-success {
    display: none;
    text-align: center;
    padding: 8px 0;
}
.call-success.is-open {
    display: block;
}
.call-success .modal-icon {
    margin: 0 auto 14px;
}
.call-success h3 {
    margin-bottom: 6px;
}
.call-success p {
    margin-bottom: 0;
}

/* BURGER */
.burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.burger svg {
    width: 18px;
    height: 18px;
}
.burger .icon-close {
    display: none;
}
.burger.is-open .icon-menu {
    display: none;
}
.burger.is-open .icon-close {
    display: block;
}
@media (max-width: 900px) {
    .burger {
        display: flex;
    }
}

.mobile-menu {
    position: fixed;
    inset: 76px 0 0 0;
    z-index: 49;
    background: var(--bg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    overflow-y: auto;
}
.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-menu .wrap {
    padding-top: 28px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu a.m-link {
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
}
.mobile-menu .m-phone {
    font-size: 15px;
    color: var(--ink-soft);
    padding: 18px 4px 6px;
}
.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}
@media (min-width: 901px) {
    .mobile-menu {
        display: none;
    }
}

.hero {
    text-align: center;
}
.hero h1 {
    font-size: clamp(38px, 5.6vw, 60px);
    line-height: 1.08;
    max-width: 760px;
    margin: 0 auto 22px;
}
.hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 34px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hero-note {
    font-size: 13.5px;
    color: var(--ink-faint);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    margin: 56px 0 0;
}
.stat {
    background: var(--paper);
    padding: 32px 24px;
    text-align: center;
}
.stat b {
    display: block;
    font-family: 'Fraunces';
    font-size: 34px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}
.stat span {
    font-size: 13.5px;
    color: var(--ink-soft);
}
@media (max-width: 700px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

.quote-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 32px;
    margin: 36px 0 0;
    box-shadow: var(--shadow);
}
.quote-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.quote-card p.q {
    font-family: 'Fraunces';
    font-style: italic;
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 10px;
}
.quote-card .who {
    font-size: 13.5px;
    color: var(--ink-soft);
}

section {
    padding: 88px 0;
}
.section-head {
    margin-bottom: 48px;
}
.section-head .eyebrow {
    margin-bottom: 16px;
}
.section-head h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    margin-bottom: 14px;
}
.section-head p {
    color: var(--ink-soft);
    font-size: 16px;
}

/* FEATURE LIST (numbered, rozkvit style) */
.feature {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 26px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}
.feature:last-child {
    border-bottom: 1px solid var(--line);
}
.feature-num {
    font-family: 'Fraunces';
    font-size: 24px;
    color: var(--ink-faint);
    font-weight: 500;
}
.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.feature p {
    color: var(--ink-soft);
    font-size: 15.5px;
    max-width: 640px;
}
@media (max-width: 700px) {
    .feature {
        grid-template-columns: 1fr;
    }
    .feature-num {
        margin-bottom: -14px;
    }
}

/* PROCESS STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: var(--shadow);
}
.step-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.step-meta {
    font-size: 12.5px;
    color: var(--ink-faint);
    font-weight: 600;
}
@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* DIRECTIONS GRID */
.directions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.dir-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.dir-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}
.dir-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.dir-status {
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    background: var(--green-soft);
    color: var(--green);
}
.dir-status.dev {
    background: #fbeadd;
    color: var(--clay);
}
.dir-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.dir-card p {
    font-size: 14px;
    color: var(--ink-soft);
}
@media (max-width: 900px) {
    .directions {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .directions {
        grid-template-columns: 1fr;
    }
}

/* PARTNERSHIP GRID (6-point) */
.perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}
.perk {
    background: var(--paper);
    padding: 28px 26px;
}
.perk h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
}
.perk p {
    font-size: 14px;
    color: var(--ink-soft);
}
@media (max-width: 900px) {
    .perks {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .perks {
        grid-template-columns: 1fr;
    }
}

/* ROADMAP as timeline */
.timeline {
    border-left: 2px solid var(--line);
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: 10px;
}
.tl-item {
    position: relative;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--paper);
    border: 2.5px solid var(--green);
}
.tl-item.done::before {
    background: var(--green);
}
.tl-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}
.tl-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.tl-item p {
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 560px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-q {
    color: black;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16.5px;
}
.faq-q .plus {
    font-size: 20px;
    color: var(--green-soft);
    color: var(--green);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-item.open .plus {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-a p {
    padding-bottom: 22px;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 620px;
}

/* CTA final */
.cta-final {
    background: var(--green);
    color: #fff;
    border-radius: 24px;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.cta-final h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 36px);
    margin-bottom: 14px;
}
.cta-final p {
    color: #d8e5db;
    font-size: 15.5px;
    margin-bottom: 8px;
}
.cta-check {
    list-style: none;
    margin-top: 18px;
}
.cta-check li {
    font-size: 14.5px;
    color: #eaf1eb;
    padding: 6px 0;
    display: flex;
    gap: 10px;
}
.cta-final .btn-primary {
    background: #fff;
    color: var(--green);
}
.cta-final .btn-primary:hover {
    background: #eaf1eb;
}
@media (max-width: 860px) {
    .cta-final {
        grid-template-columns: 1fr;
    }
}

footer {
    border-top: 1px solid var(--line);
    padding: 56px 0 32px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.foot-grid h4 {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
    margin-bottom: 14px;
}
.foot-links {
    list-style: none;
}
.foot-links li {
    margin-bottom: 10px;
    font-size: 14.5px;
    color: var(--ink-soft);
}
.foot-links a:hover {
    color: var(--green);
}
.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-faint);
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 860px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}
.wrap.nav .logo a {
    height: 76px;
    width: 200px;
}
#partnership {
    margin-top: 20px;
}

#callForm.is-error input {
    border-color: red;
}

#callForm #validation-error {
    font-size: 12px;
    position: relative;
    top: -15px;
    color: red;
    display: none;
}
