/* ==========================================================
   ECO CLEAN – STRONA GŁÓWNA
   ========================================================== */

:root {
    --green: #69dc24;
    --green-hover: #7ceb3d;
    --green-dark: #3ba70f;
    --green-deep: #287c09;
    --green-soft: #effbe9;
    --green-soft-2: #f7fcf4;

    --text: #263129;
    --text-dark: #121a15;
    --muted: #68746c;

    --white: #ffffff;
    --bg-soft: #f6f8f6;
    --bg-warm: #fafbf9;
    --border: #e2e9e3;
    --border-dark: #cad6cc;

    --dark: #101813;
    --dark-soft: #18221c;
    --facebook: #1877f2;

    --font:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    --container: 1220px;
    --container-narrow: 850px;

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 30px;

    --shadow-small: 0 8px 25px rgba(31, 57, 38, 0.065);
    --shadow: 0 18px 48px rgba(31, 57, 38, 0.11);
    --shadow-large: 0 30px 74px rgba(31, 57, 38, 0.16);

    --transition: 0.22s ease;
}


/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
summary {
    cursor: pointer;
}

p {
    margin-top: 0;
    margin-bottom: 1.2em;
}

ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    margin-bottom: 0.55em;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.25rem, 4.4vw, 3.55rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.82rem, 3vw, 2.58rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.18rem;
    letter-spacing: -0.015em;
}

::selection {
    color: var(--text-dark);
    background: var(--green);
}


/* GLOBAL */

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-right: auto;
    margin-left: auto;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: 82px;
    padding-bottom: 82px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.eyebrow {
    margin-bottom: 11px;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin-top: 38px;
}


/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.button .icon {
    width: 18px;
    height: 18px;
}

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

.button--primary {
    color: var(--text-dark);
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 11px 25px rgba(105, 220, 36, 0.23);
}

.button--primary:hover {
    background: var(--green-hover);
    border-color: var(--green-hover);
    box-shadow: 0 15px 34px rgba(105, 220, 36, 0.31);
}

.button--outline {
    color: var(--text-dark);
    background: var(--white);
    border-color: var(--border-dark);
}

.button--outline:hover {
    border-color: var(--green-dark);
    box-shadow: var(--shadow-small);
}

.button--facebook {
    color: var(--white);
    background: var(--facebook);
    border-color: var(--facebook);
}

.button--facebook:hover {
    background: #0f65d7;
    border-color: #0f65d7;
}

.button--dark {
    color: var(--white);
    background: var(--dark);
    border-color: var(--dark);
}

.button--dark:hover {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);
}

.button--small {
    min-height: 43px;
    padding: 9px 17px;
    font-size: 0.86rem;
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.text-link .icon {
    width: 17px;
    height: 17px;
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--green-deep);
}

.text-link:hover .icon {
    transform: translateX(4px);
}


/* HEADER */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(25, 50, 31, 0.045);
    backdrop-filter: blur(12px);
}

.header-top {
    color: rgba(255, 255, 255, 0.76);
    background: var(--dark);
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 34px;
}

.header-top p {
    margin: 0;
    font-size: 0.76rem;
}

.header-top__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 700;
}

.header-top a:hover {
    color: var(--green);
}

.header-top .icon {
    width: 14px;
    height: 14px;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 78px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 5px 10px;
    background: #080e0a;
    border-radius: 10px;
}

.site-logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: #39443c;
    font-size: 0.9rem;
    font-weight: 700;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    content: "";
    background: var(--green-dark);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--green-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--green-dark);
    background: var(--green-soft);
    border-radius: 50%;
}

.header-phone__icon .icon {
    width: 18px;
    height: 18px;
}

.header-phone > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-phone small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.69rem;
}

.header-phone strong {
    color: var(--text-dark);
    font-size: 0.86rem;
    white-space: nowrap;
}

.header-phone:hover strong {
    color: var(--green-dark);
}

.mobile-nav {
    display: none;
    margin-left: auto;
}

.mobile-nav summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
}

.mobile-nav nav {
    position: fixed;
    z-index: 1001;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 20px 28px;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.mobile-nav nav a {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

.mobile-nav__phone {
    color: var(--green-dark);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(105, 220, 36, 0.12), transparent 27%),
        linear-gradient(130deg, #ffffff 0%, #f7fbf5 58%, #eff9eb 100%);
}

.hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(450px, 1.02fr);
    align-items: center;
    gap: 70px;
    min-height: 610px;
    padding-top: 64px;
    padding-bottom: 95px;
}

.hero__content {
    max-width: 680px;
}

.hero h1 {
    margin-bottom: 22px;
}

.hero h1 span {
    position: relative;
    color: var(--green-dark);
}

.hero h1 span::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 8px;
    content: "";
    opacity: 0.35;
    background: var(--green);
    border-radius: 100%;
    transform: rotate(-1deg);
}

.hero__lead {
    max-width: 630px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.07rem;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 29px;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4d5b51;
    font-size: 0.86rem;
    font-weight: 700;
}

.hero__benefits li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 50%;
}

.hero__benefits .icon {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

.hero__visual {
    position: relative;
    min-height: 500px;
}

.hero__shape {
    position: absolute;
    z-index: 0;
    top: 14px;
    right: -18px;
    width: 90%;
    height: 90%;
    background: linear-gradient(145deg, var(--green), #9af05d);
    border-radius: 44% 56% 56% 44% / 43% 42% 58% 57%;
    transform: rotate(5deg);
}

.hero__image {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 10px;
    bottom: 25px;
    left: 25px;
    margin: 0;
    overflow: hidden;
    background: var(--bg-soft);
    border: 8px solid var(--white);
    border-radius: 34px 34px 86px 34px;
    box-shadow: var(--shadow-large);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(10, 26, 14, 0.25), transparent 38%);
}

.hero__image figcaption {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 17px;
    padding: 8px 13px;
    color: var(--white);
    background: rgba(16, 24, 19, 0.76);
    border-radius: 100px;
    font-size: 0.73rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 13px;
    box-shadow: var(--shadow);
}

.floating-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--green-deep);
    background: var(--green-soft);
    border-radius: 11px;
}

.floating-card__icon .icon {
    width: 19px;
    height: 19px;
}

.floating-card > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.floating-card small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.floating-card--experience {
    top: 48px;
    left: -20px;
}

.floating-card--area {
    right: -15px;
    bottom: 46px;
}

.hero__dots {
    position: absolute;
    z-index: 0;
    width: 130px;
    height: 130px;
    opacity: 0.19;
    background-image: radial-gradient(var(--green-dark) 2px, transparent 2px);
    background-size: 17px 17px;
}

.hero__dots--left {
    bottom: 95px;
    left: 2%;
}

.hero__dots--right {
    top: 50px;
    right: 1%;
}

.hero-wave {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 90px;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: var(--white);
}


/* TRUST BAR */

.trust-bar {
    position: relative;
    z-index: 4;
    padding: 10px 0 32px;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 22px 20px;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--border);
}

.trust-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--green-dark);
    background: var(--green-soft);
    border-radius: 12px;
    flex: 0 0 44px;
}

.trust-item__icon .icon {
    width: 21px;
    height: 21px;
}

.trust-item > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.trust-item strong {
    color: var(--text-dark);
    font-size: 0.87rem;
}

.trust-item span:last-child {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.74rem;
}


/* SERVICES */

.services {
    background: var(--white);
}

.services-grid--three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    border-color: rgba(59, 167, 15, 0.42);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card--featured {
    border-color: rgba(59, 167, 15, 0.35);
    box-shadow: 0 18px 50px rgba(63, 130, 39, 0.13);
}

.service-card__badge {
    position: absolute;
    z-index: 4;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    color: var(--text-dark);
    background: var(--green);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 700 / 440;
    background: var(--bg-soft);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.045);
}

.service-card__icon {
    position: absolute;
    top: 247px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--green-deep);
    background: var(--green);
    border: 5px solid var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(41, 90, 47, 0.16);
}

.service-card__icon .icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.65;
}

.service-card__content {
    padding: 27px 24px 25px;
}

.service-card__kicker {
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card h3 {
    padding-right: 42px;
}

.service-card h3 a:hover {
    color: var(--green-dark);
}

.service-card__content > p:not(.service-card__kicker) {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.91rem;
}

.service-card__features {
    display: grid;
    gap: 7px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.service-card__features li {
    position: relative;
    padding-left: 20px;
    color: #49564d;
    font-size: 0.82rem;
}

.service-card__features li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    content: "✓";
    color: var(--green-dark);
    font-weight: 900;
}


/* PRICING */

.pricing {
    background:
        radial-gradient(circle at 10% 10%, rgba(105, 220, 36, 0.12), transparent 24%),
        linear-gradient(125deg, var(--green-soft-2), #ffffff);
}

.pricing__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    align-items: center;
    gap: 70px;
}

.pricing__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.02rem;
}

.pricing__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 26px;
    padding: 17px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow-small);
}

.pricing__notice .icon {
    width: 23px;
    height: 23px;
    color: var(--green-dark);
    flex: 0 0 23px;
}

.pricing__notice p {
    margin: 0;
    color: #445046;
    font-size: 0.84rem;
}

.price-list {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.price-row {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 19px;
    border-radius: 16px;
}

.price-row + .price-row {
    border-top: 1px solid var(--border);
    border-radius: 0;
}

.price-row__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--green-deep);
    background: var(--green-soft);
    border-radius: 13px;
}

.price-row__icon .icon {
    width: 23px;
    height: 23px;
}

.price-row h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.price-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.price-row > strong {
    max-width: 180px;
    color: var(--green-dark);
    font-size: 1rem;
    text-align: right;
}

.price-list .button {
    margin-top: 10px;
}


\n\n/* PICKUP */\n\n.pickup {\n    background: var(--white);\n}\n\n.pickup__layout {\n    display: grid;\n    grid-template-columns: minmax(500px, 1.12fr) minmax(0, 0.88fr);\n    align-items: center;\n    gap: 70px;\n}\n\n.pickup__image {\n    min-height: 470px;\n    margin: 0;\n    overflow: hidden;\n    border-radius: var(--radius-large);\n    box-shadow: var(--shadow-large);\n}\n\n.pickup__image img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    object-position: 50% 50%;\n}\n\n.pickup__content > p:not(.eyebrow) {\n    color: var(--muted);\n    font-size: 1.02rem;\n}\n

/* ABOUT */

.about {
    background: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: minmax(410px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 76px;
}

.about__visual {
    position: relative;
    min-height: 600px;
}

.about__shape {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    height: 78%;
    background: var(--green);
    border-radius: 60px 30px 60px 30px;
    transform: rotate(5deg);
}

.about__image {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 30px;
    bottom: 25px;
    left: 0;
    margin: 0;
    overflow: hidden;
    background: var(--bg-soft);
    border-radius: 35px 95px 35px 35px;
    box-shadow: var(--shadow-large);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    z-index: 3;
    right: -15px;
    bottom: 65px;
    display: flex;
    flex-direction: column;
    min-width: 175px;
    padding: 16px 18px;
    color: var(--white);
    background: var(--dark);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.about__badge strong {
    font-size: 1.3rem;
}

.about__badge span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
}

.about__lead {
    color: #3f4a42;
    font-size: 1.04rem;
    font-weight: 600;
}

.about__content > p:not(.eyebrow):not(.about__lead) {
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.about-grid article {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    background: var(--green-soft-2);
    border: 1px solid #e3efdc;
    border-radius: 15px;
}

.about-grid article > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 900;
    flex: 0 0 42px;
}

.about-grid .icon {
    width: 20px;
    height: 20px;
}

.about-grid h3 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.about-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}


/* COMPARISON */

.comparison-section {
    background: linear-gradient(120deg, var(--green-soft-2), #ffffff);
}

.comparison-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    align-items: center;
    gap: 72px;
}

.comparison-section__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.02rem;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #3f4d43;
    font-size: 0.92rem;
    font-weight: 700;
}

.check-list li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 50%;
    flex: 0 0 25px;
}

.check-list .icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
}

.comparison figure {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
}

.comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comparison__label--before {
    color: var(--white);
    background: rgba(17, 25, 20, 0.82);
}

.comparison__label--after {
    color: var(--text-dark);
    background: var(--green);
}


/* PROCESS */

.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-card {
    position: relative;
    padding: 26px 23px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.process-card::after {
    position: absolute;
    z-index: 2;
    top: 49px;
    right: -19px;
    width: 38px;
    height: 2px;
    content: "";
    background:
        repeating-linear-gradient(
            to right,
            var(--green-dark),
            var(--green-dark) 5px,
            transparent 5px,
            transparent 9px
        );
}

.process-card:last-child::after {
    display: none;
}

.process-card__number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: #dce9dd;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.process-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 14px;
}

.process-card__icon .icon {
    width: 23px;
    height: 23px;
}

.process-card h3 {
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.85rem;
}


/* REALIZATIONS */

.realizations {
    background: var(--bg-soft);
}

.realizations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.realization-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.realization-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.realization-card > a {
    display: block;
}

.realization-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 700 / 450;
    background: var(--dark);
}

.realization-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(10, 18, 12, 0.48), transparent 55%);
}

.realization-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realization-card:hover .realization-card__image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    color: var(--text-dark);
    background: var(--green);
    border: 5px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.23);
    transform: translate(-50%, -50%);
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.play-button .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: currentColor;
    transform: translateX(2px);
}

.realization-card:hover .play-button {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.realization-card__type {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    color: var(--text-dark);
    background: var(--green);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.realization-card__content {
    padding: 22px 23px 23px;
}

.realization-card__content > p {
    margin-bottom: 7px;
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.realization-card h3 {
    margin-bottom: 14px;
    font-size: 1.06rem;
}


/* BUSINESS */

.business {
    background: var(--white);
}

.business__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    align-items: center;
    gap: 70px;
}

.business__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.02rem;
}

.business__image {
    min-height: 450px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
}

.business__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* REVIEWS */

.reviews {
    background: linear-gradient(125deg, var(--green-soft-2), #ffffff);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.review-card {
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.review-card__stars {
    margin-bottom: 17px;
    color: #f1b900;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.review-card blockquote {
    margin: 0 0 23px;
    color: #3b463e;
    font-size: 0.95rem;
    font-style: italic;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 11px;
}

.review-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 900;
}

.review-card footer > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.review-card footer strong {
    color: var(--text-dark);
    font-size: 0.88rem;
}

.review-card footer small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
}


/* SERVICE AREA */

.service-area {
    background: var(--white);
}

.service-area__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
    align-items: center;
    gap: 65px;
}

.service-area__content > p:not(.eyebrow) {
    color: var(--muted);
}

.service-area__box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 26px 0;
    padding: 17px;
    background: var(--green-soft);
    border: 1px solid #dcefd2;
    border-radius: 13px;
}

.service-area__box > .icon {
    width: 23px;
    height: 23px;
    color: var(--green-dark);
    flex: 0 0 23px;
}

.service-area__box div {
    display: flex;
    flex-direction: column;
}

.service-area__box strong {
    color: var(--text-dark);
    font-size: 0.86rem;
}

.service-area__box span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.8rem;
}

.map-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    background:
        linear-gradient(45deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.85)),
        repeating-linear-gradient(0deg, #e5efe4, #e5efe4 1px, transparent 1px, transparent 38px),
        repeating-linear-gradient(90deg, #e5efe4, #e5efe4 1px, transparent 1px, transparent 38px),
        #f1f7ef;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.map-placeholder__circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(105, 220, 36, 0.16);
    border: 2px dashed rgba(59, 167, 15, 0.35);
    border-radius: 50%;
}

.map-placeholder__pin {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    color: var(--white);
    background: var(--green-dark);
    border: 8px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.map-placeholder__pin .icon {
    width: 27px;
    height: 27px;
}

.map-placeholder strong,
.map-placeholder > span:not(.map-placeholder__circle):not(.map-placeholder__pin),
.map-placeholder small {
    position: relative;
    z-index: 2;
}

.map-placeholder strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.map-placeholder > span:not(.map-placeholder__circle):not(.map-placeholder__pin) {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.map-placeholder small {
    margin-top: 13px;
    padding: 5px 9px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    font-size: 0.68rem;
}


/* CTA */

.cta {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    color: var(--text-dark);
    background: linear-gradient(120deg, var(--green), #86eb49);
}

.cta__decoration {
    position: absolute;
    top: -85px;
    right: 8%;
    width: 260px;
    height: 260px;
    opacity: 0.17;
    border: 35px solid var(--white);
    border-radius: 50%;
}

.cta__layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.cta__layout > div:first-child {
    max-width: 730px;
}

.cta__eyebrow {
    margin-bottom: 8px;
    color: rgba(17, 25, 20, 0.68);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta h2 {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.cta__actions {
    display: flex;
    align-items: center;
    gap: 23px;
    flex: 0 0 auto;
}

.cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
}

.cta__phone .icon {
    width: 20px;
    height: 20px;
}

.cta__phone:hover {
    opacity: 0.68;
}


\n\n/* CONTACT CTA */\n\n.contact-cta {\n    padding: 72px 0;\n    overflow: hidden;\n    background: linear-gradient(120deg, var(--green), #86eb49);\n}\n\n.contact-cta__layout {\n    display: grid;\n    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);\n    align-items: center;\n    gap: 58px;\n}\n\n.contact-cta__content {\n    position: relative;\n    z-index: 2;\n}\n\n.contact-cta__content .eyebrow {\n    color: rgba(17, 25, 20, 0.66);\n}\n\n.contact-cta__content h2 {\n    margin-bottom: 14px;\n}\n\n.contact-cta__content > p {\n    max-width: 560px;\n    color: rgba(17, 25, 20, 0.76);\n    font-size: 1.02rem;\n}\n\n.contact-cta__actions {\n    display: flex;\n    flex-wrap: wrap;\n    align-items: center;\n    gap: 22px;\n    margin-top: 26px;\n}\n\n.contact-cta__phone {\n    display: inline-flex;\n    align-items: center;\n    gap: 9px;\n    color: var(--text-dark);\n    font-size: 1rem;\n    font-weight: 900;\n    white-space: nowrap;\n}\n\n.contact-cta__phone .icon {\n    width: 20px;\n    height: 20px;\n}\n\n.contact-cta__phone:hover {\n    opacity: 0.68;\n}\n\n.contact-cta__image {\n    min-height: 420px;\n    margin: 0;\n    overflow: hidden;\n    border: 8px solid rgba(255, 255, 255, 0.68);\n    border-radius: var(--radius-large);\n    box-shadow: var(--shadow-large);\n}\n\n.contact-cta__image img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    object-position: 65% 50%;\n}\n

/* FAQ */

.faq {
    background: var(--white);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 13px;
}

.faq-item summary {
    position: relative;
    padding: 20px 62px 20px 22px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    content: "+";
    color: var(--green-deep);
    background: var(--green);
    border-radius: 50%;
    font-size: 1.15rem;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item[open] {
    background: var(--green-soft-2);
    border-color: #dcefd3;
}

.faq-item > div {
    padding: 0 22px 20px;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}


/* BLOG */

.blog-preview {
    background: var(--bg-soft);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.article-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 700 / 440;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.045);
}

.article-card__content {
    padding: 23px;
}

.article-card__category {
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.article-card h3 {
    margin-bottom: 11px;
    font-size: 1.06rem;
}

.article-card h3 a:hover {
    color: var(--green-dark);
}

.article-card__content > p:not(.article-card__category) {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 0.87rem;
}


/* QUOTE FORM */

.quote {
    background:
        radial-gradient(circle at 8% 15%, rgba(105, 220, 36, 0.14), transparent 25%),
        linear-gradient(125deg, #f5fbf2, #ffffff);
}

.quote__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
    align-items: start;
    gap: 70px;
}

.quote__content {
    position: sticky;
    top: 135px;
}

.quote__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1rem;
}

.quote__contacts {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.quote__contacts > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.quote__contacts > a > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 11px;
}

.quote__contacts .icon {
    width: 19px;
    height: 19px;
}

.quote__contacts div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.quote__contacts small {
    color: var(--muted);
    font-size: 0.7rem;
}

.quote__contacts strong {
    margin-top: 3px;
    color: var(--text-dark);
    font-size: 0.87rem;
    overflow-wrap: anywhere;
}

.quote__contacts a:hover {
    border-color: var(--green-dark);
}

.quote__tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 21px;
    padding: 16px;
    color: #415044;
    background: var(--green-soft);
    border: 1px solid #dcefd2;
    border-radius: 12px;
}

.quote__tip .icon {
    width: 22px;
    height: 22px;
    color: var(--green-dark);
    flex: 0 0 22px;
}

.quote__tip p {
    margin: 0;
    font-size: 0.82rem;
}

.quote-form {
    padding: 33px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label,
.form-fieldset legend {
    display: block;
    margin-bottom: 7px;
    color: var(--text-dark);
    font-size: 0.84rem;
    font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-small);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-field textarea {
    min-height: 135px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 4px rgba(105, 220, 36, 0.14);
}

.form-fieldset {
    margin: 2px 0 20px;
    padding: 0;
    border: 0;
}

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

.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    cursor: pointer;
}

.checkbox-field:hover {
    border-color: var(--green-dark);
}

.checkbox-field input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    accent-color: var(--green-dark);
    flex: 0 0 17px;
}

.checkbox-field span {
    font-size: 0.84rem;
}

.file-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 13px;
    background: var(--bg-soft);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius-small);
}

.file-field .icon {
    width: 25px;
    height: 25px;
    color: var(--green-dark);
}

.file-field input {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
}

.file-field input:focus {
    box-shadow: none;
}

.form-hint {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.74rem;
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 20px;
    cursor: pointer;
}

.consent-field input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    accent-color: var(--green-dark);
    flex: 0 0 17px;
}

.consent-field span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.consent-field a {
    color: var(--green-dark);
    text-decoration: underline;
}


/* CONTACT */

.contact {
    background: var(--white);
}

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

.contact-card {
    padding: 25px 22px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 12px;
}

.contact-card__icon .icon {
    width: 21px;
    height: 21px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-card > a {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: 0.87rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-card > a:hover {
    color: var(--green-deep);
}

.contact-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.81rem;
}


/* FOOTER */

.site-footer {
    color: rgba(255, 255, 255, 0.67);
    background: var(--dark);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
    gap: 50px;
    padding-top: 67px;
    padding-bottom: 57px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 5px 10px;
    background: #080e0a;
    border-radius: 10px;
}

.footer-logo img {
    width: auto;
    height: 51px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 350px;
    font-size: 0.86rem;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.footer-socials a:hover {
    color: var(--green);
    background: rgba(255, 255, 255, 0.12);
}

.footer-socials .icon {
    width: 17px;
    height: 17px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 0.93rem;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 9px;
}

.site-footer li,
.site-footer address,
.site-footer address p {
    font-size: 0.82rem;
}

.site-footer a:hover {
    color: var(--green);
}

.site-footer address {
    font-style: normal;
}

.site-footer address p {
    margin-bottom: 11px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: 0.76rem;
}


/* FLOATING PHONE */

.floating-phone {
    position: fixed;
    z-index: 950;
    right: 17px;
    bottom: 17px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 18px;
    color: var(--text-dark);
    background: var(--green);
    border-radius: 100px;
    box-shadow: 0 14px 35px rgba(16, 35, 20, 0.25);
    font-size: 0.86rem;
    font-weight: 900;
}

.floating-phone .icon {
    width: 18px;
    height: 18px;
}


/* RESPONSIVE */

@media (max-width: 1180px) {
    .main-nav ul {
        gap: 15px;
    }

    .header-actions .button {
        display: none;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
        gap: 45px;
    }

    .floating-card--experience {
        left: -5px;
    }

    .floating-card--area {
        right: -5px;
    }

    .service-card__icon {
        top: 225px;
    }

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

@media (max-width: 980px) {
    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .header-top {
        display: none;
    }

    .header-main {
        min-height: 72px;
    }

    .site-logo img {
        height: 43px;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 58px;
        padding-bottom: 105px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        width: min(100%, 760px);
        min-height: 510px;
    }

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

    .trust-item:nth-child(3) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .trust-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .services-grid--three,
    .pricing__layout,
    .pickup__layout,
    .about__layout,
    .comparison-section__layout,
    .business__layout,
    .service-area__layout,
    .quote__layout {
        grid-template-columns: 1fr;
    }

    .service-card__icon {
        top: auto;
        right: 22px;
        bottom: 210px;
    }

    .pricing__content,
    .comparison-section__content,
    .business__content,
    .service-area__content,
    .quote__content {
        max-width: 760px;
    }

    .pickup__image {
        min-height: 430px;
    }

    .contact-cta__layout {
        grid-template-columns: 1fr;
    }

    .contact-cta__content {
        max-width: 760px;
    }

    .contact-cta__image {
        min-height: 430px;
    }

    .about__visual {
        width: min(100%, 720px);
    }

    .comparison {
        max-width: 820px;
    }

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

    .process-card:nth-child(2)::after,
    .process-card:nth-child(4)::after {
        display: none;
    }

    .realizations-grid,
    .reviews-grid,
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid .review-card:last-child,
    .articles-grid .article-card:last-child {
        grid-column: 1 / -1;
    }

    .cta__layout {
        display: block;
    }

    .cta__actions {
        margin-top: 27px;
    }

    .quote__content {
        position: static;
    }

    .footer-main {
        grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(150px, 0.8fr));
    }

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}

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

    .section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .hero__layout {
        gap: 40px;
        padding-top: 47px;
        padding-bottom: 90px;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hero__visual {
        min-height: 430px;
    }

    .hero__image {
        right: 0;
        left: 15px;
        border-width: 6px;
        border-radius: 25px 25px 65px 25px;
    }

    .hero__shape {
        right: -10px;
        width: 92%;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card__icon {
        width: 34px;
        height: 34px;
    }

    .floating-card--experience {
        top: 26px;
        left: 0;
    }

    .floating-card--area {
        right: 0;
        bottom: 30px;
    }

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

    .trust-item + .trust-item {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .services-grid--three,
    .realizations-grid,
    .reviews-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid .review-card:last-child,
    .articles-grid .article-card:last-child {
        grid-column: auto;
    }

    .service-card__icon {
        right: 20px;
        bottom: 210px;
    }

    .price-row {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .price-row > strong {
        grid-column: 2;
        max-width: none;
        text-align: left;
    }

    .about__visual {
        min-height: 480px;
    }

    .about__image {
        right: 18px;
    }

    .about__badge {
        right: 0;
    }

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

    .comparison {
        gap: 7px;
        padding: 7px;
    }

    .comparison figure {
        min-height: 350px;
    }

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

    .process-card::after {
        display: none;
    }

    .pickup__image {
        min-height: 340px;
    }

    .contact-cta {
        padding: 58px 0;
    }

    .contact-cta__image {
        min-height: 340px;
    }

    .contact-cta__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .business__image {
        min-height: 340px;
    }

    .map-placeholder {
        min-height: 340px;
    }

    .cta__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-row,
    .checkbox-grid,
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 25px 19px;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .floating-phone {
        display: inline-flex;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2.14rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .site-logo {
        padding: 4px 8px;
    }

    .site-logo img {
        height: 39px;
    }

    .hero__visual {
        min-height: 380px;
    }

    .floating-card strong {
        font-size: 0.79rem;
    }

    .floating-card small {
        font-size: 0.64rem;
    }

    .floating-card--experience {
        left: -4px;
    }

    .floating-card--area {
        right: -4px;
    }

    .service-card__content,
    .article-card__content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .service-card__icon {
        bottom: 225px;
    }

    .about__visual {
        min-height: 400px;
    }

    .about__badge {
        bottom: 35px;
        min-width: 145px;
    }

    .comparison figure {
        min-height: 280px;
    }

    .comparison__label {
        bottom: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.68rem;
    }

    .section-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section-actions .button {
        width: 100%;
    }
}


/* ACCESSIBILITY */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ==========================================================
   FORMULARZ WYCENY – POLA WARUNKOWE I WALIDACJA
   ========================================================== */

[hidden] {
    display: none !important;
}

.label-optional {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
}

.honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.service-fieldset {
    margin-bottom: 23px;
}

.service-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.service-choice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 13px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 13px;
    cursor: pointer;
    transition:
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.service-choice:hover {
    border-color: var(--green-dark);
    transform: translateY(-1px);
}

.service-choice.is-selected {
    background: var(--green-soft);
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(105, 220, 36, 0.12);
}

.service-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.service-choice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 12px;
    flex: 0 0 43px;
}

.service-choice__icon .icon {
    width: 21px;
    height: 21px;
}

.service-choice__icon--text {
    font-size: 1.1rem;
    font-weight: 900;
}

.service-choice > span:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.service-choice strong {
    color: var(--text-dark);
    font-size: 0.87rem;
}

.service-choice small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
}

.conditional-fields {
    margin: 2px 0 22px;
    padding: 19px;
    background: var(--green-soft-2);
    border: 1px solid #dcefd3;
    border-radius: 14px;
}

.conditional-fields__title {
    margin-bottom: 16px;
    font-size: 1rem;
}

.form-fieldset--compact {
    margin-bottom: 16px;
}

.radio-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.conditional-subfield {
    margin-bottom: 0;
}

.selected-files {
    display: grid;
    gap: 5px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.selected-files li {
    position: relative;
    padding-left: 17px;
    color: var(--muted);
    font-size: 0.75rem;
}

.selected-files li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "✓";
    color: var(--green-dark);
    font-weight: 900;
}

.form-status {
    min-height: 0;
    margin-bottom: 12px;
    color: #9b2c2c;
    font-size: 0.82rem;
    font-weight: 700;
}

.form-status:empty {
    display: none;
}

.quote-form button[disabled] {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

/* Strony potwierdzenia i błędu formularza */

.form-result-page {
    min-height: 100vh;
    padding: 40px 20px;
    background:
        radial-gradient(circle at 15% 10%, rgba(105, 220, 36, 0.15), transparent 26%),
        linear-gradient(135deg, #f5fbf2, #ffffff);
}

.form-result {
    width: min(100%, 660px);
    margin: 7vh auto 0;
    padding: 38px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.form-result__logo {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 6px 11px;
    background: #080e0a;
    border-radius: 11px;
}

.form-result__logo img {
    width: auto;
    height: 52px;
}

.form-result__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    color: var(--green-deep);
    background: var(--green);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
}

.form-result--error .form-result__icon {
    color: #8a2929;
    background: #ffe2e2;
}

.form-result h1 {
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.form-result p {
    color: var(--muted);
}

.form-result__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-top: 26px;
}

@media (max-width: 760px) {
    .service-choice-grid,
    .radio-grid--two {
        grid-template-columns: 1fr;
    }

    .form-result {
        margin-top: 2vh;
        padding: 28px 20px;
    }

    .form-result__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}



/* POPRAWKA WDROZENIOWA /eco/ - formularz i kotwice */
#wycena {
    display: block;
    scroll-margin-top: 118px;
}

.quote-form {
    display: block;
}

.quote-form__heading {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.quote-form__heading .eyebrow {
    margin-bottom: 7px;
}

.quote-form__heading h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.quote-form__heading p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

#wycena.is-anchor-target .quote-form {
    animation: quoteTargetPulse 0.9s ease-out;
}

@keyframes quoteTargetPulse {
    0% { box-shadow: 0 0 0 0 rgba(105, 220, 36, 0.45), var(--shadow); }
    100% { box-shadow: 0 0 0 14px rgba(105, 220, 36, 0), var(--shadow); }
}
