* {
    box-sizing: border-box;
}

:root {
    --green-950: #0f3626;
    --green-900: #174d33;
    --green-800: #1f6841;
    --green-700: #2f7d45;
    --green-600: #3d934d;
    --green-100: #eaf6e7;
    --red-600: #c8272d;
    --red-500: #e04045;
    --yellow-500: #f2cd42;
    --yellow-300: #ffe88f;
    --cream: #fbfaf3;
    --mint: #f3fbf2;
    --white: #ffffff;
    --ink: #1d2c25;
    --muted: #64746c;
    --line: rgba(31, 104, 65, 0.16);
    --line-strong: rgba(31, 104, 65, 0.28);
    --shadow: 0 24px 70px rgba(23, 77, 51, 0.18);
    --shadow-soft: 0 16px 42px rgba(23, 77, 51, 0.11);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 12%, rgba(242, 205, 66, 0.16), transparent 26rem),
        radial-gradient(circle at 84% 6%, rgba(200, 39, 45, 0.09), transparent 24rem),
        linear-gradient(180deg, var(--cream), #f5fbf2 46%, var(--cream));
    line-height: 1.6;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--green-600);
    outline-offset: 2px;
    border-radius: 4px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(31, 104, 65, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 104, 65, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.cursor-trail {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2147483647;
    width: 30px;
    height: 15px;
    pointer-events: none;
    border-radius: 999px;
    opacity: 0;
    transform: translate3d(var(--trail-x, 0), var(--trail-y, 0), 0) rotate(var(--trail-rotate, 0deg));
    animation: pillTrail var(--trail-duration, 900ms) ease-out forwards;
    filter: drop-shadow(0 8px 12px rgba(23, 77, 51, 0.2));
}

.cursor-trail::before,
.cursor-trail::after {
    content: "";
    position: absolute;
    inset: 0;
}

.cursor-trail-pill {
    overflow: hidden;
    background: linear-gradient(90deg, var(--yellow-500) 0 50%, var(--white) 50% 100%);
    border: 1px solid rgba(23, 77, 51, 0.18);
}

.cursor-trail-pill::before {
    left: 50%;
    width: 1px;
    background: rgba(23, 77, 51, 0.18);
}

.cursor-trail-capsule {
    overflow: hidden;
    background: linear-gradient(90deg, var(--red-500) 0 50%, var(--white) 50% 100%);
    border: 1px solid rgba(200, 39, 45, 0.18);
}

.cursor-trail-capsule::before {
    left: 50%;
    width: 1px;
    background: rgba(200, 39, 45, 0.18);
}

.cursor-trail-tablet {
    width: 30px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(145deg, #ffffff, #e9f5e6);
    border: 2px solid rgba(47, 125, 69, 0.3);
}

.cursor-trail-tablet::before {
    inset: 50% 5px auto;
    height: 2px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(47, 125, 69, 0.42);
}

.cursor-trail-dragee {
    width: 24px;
    height: 18px;
    border-radius: 52% 48% 50% 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.98), transparent 28%),
        linear-gradient(145deg, var(--yellow-300), var(--yellow-500));
    border: 1px solid rgba(242, 205, 66, 0.42);
}

.cursor-trail-dragee::before {
    inset: 5px auto auto 6px;
    width: 6px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.cursor-trail-softgel {
    width: 28px;
    height: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.9), transparent 24%),
        linear-gradient(145deg, #dff5dc, #7ecb83);
    border: 1px solid rgba(47, 125, 69, 0.24);
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(31, 104, 65, 0.14);
    background: rgba(251, 250, 243, 0.78);
    backdrop-filter: blur(18px) saturate(1.25);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 86px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 7000;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 6500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem;
}

.mobile-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--green-700);
}

.mobile-nav .mobile-phone {
    color: var(--green-700);
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 1rem;
    border-bottom: none;
}

body.menu-open {
    overflow: hidden;
}

.logo,
.nav a,
.header-phone,
.button,
.popular-links a,
.contacts-actions a,
.footer a,
.promo-slide {
    text-decoration: none;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 128px;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(23, 77, 51, 0.14));
}

.nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
}

.nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: var(--green-900);
    font-size: 15px;
    font-weight: 750;
    transition: color 180ms ease, background-color 180ms ease;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--red-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--green-800);
    background: rgba(234, 246, 231, 0.72);
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(47, 125, 69, 0.28);
    border-radius: var(--radius);
    color: var(--green-900);
    font-weight: 850;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(23, 77, 51, 0.08);
}

.hero {
    position: relative;
    min-height: calc(100vh - 86px);
    padding: 58px 0 70px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
    background:
        linear-gradient(120deg, rgba(15, 54, 38, 0.98) 0%, rgba(23, 77, 51, 0.92) 46%, rgba(47, 125, 69, 0.86) 100%),
        url("img/hero-bg-desktop.webp") center / cover fixed;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -32%;
    left: 0;
    height: 50%;
    z-index: -1;
    background: var(--cream);
    transform: skewY(-3deg);
    transform-origin: 100% 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.38;
    background-image:
        radial-gradient(circle at 8% 26%, rgba(242, 205, 66, 0.36), transparent 18rem),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.22), transparent 18rem),
        linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46% 47%, transparent 47% 100%);
}

.hero-backdrop {
    position: absolute;
    inset: 12% auto auto 48%;
    width: 42rem;
    height: 42rem;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 205, 66, 0.2), transparent 68%);
    animation: floatHalo 9s ease-in-out infinite;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 58px;
}

.hero-copy {
    min-width: 0;
    padding: 26px 0;
    animation: revealUp 700ms ease both;
}

.section-label {
    margin: 0 0 14px;
    color: var(--red-600);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .section-label,
.parallax-banner .section-label,
.contacts .section-label {
    color: var(--yellow-500);
}

h1,
h2,
h3,
p {
    margin-top: 0;
    overflow-wrap: break-word;
}

h1 {
    max-width: 800px;
    margin-bottom: 24px;
    font-size: clamp(42px, 6.5vw, 84px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(30px, 3.3vw, 50px);
    line-height: 1.08;
    color: var(--green-900);
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.25;
    color: var(--green-900);
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 2vw, 23px);
}

.hero-searchbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: min(640px, 100%);
    min-height: 64px;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
}

.hero-searchbar input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 18px;
    border-radius: calc(var(--radius) - 2px);
    color: var(--green-950);
    background: rgba(255, 255, 255, 0.94);
}

.hero-searchbar input::placeholder {
    color: rgba(29, 44, 37, 0.58);
}

.hero-searchbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 132px;
    border: 0;
    border-radius: calc(var(--radius) - 2px);
    color: var(--green-950);
    background: var(--yellow-500);
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
}

.hero-searchbar button:hover,
.hero-searchbar button:focus-visible {
    transform: translateY(-1px);
    background: var(--yellow-300);
}

.hero-searchbar svg,
.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-actions,
.contacts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--radius);
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: var(--green-950);
    background: var(--yellow-500);
    box-shadow: 0 14px 34px rgba(242, 205, 66, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--yellow-300);
}

.button-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 38px 0 0;
}

.hero-stats a {
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: block;
}

.hero-stats a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
}

.hero-stats dt {
    color: var(--yellow-500);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.hero-stats dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.35;
}

.hero-showcase {
    position: relative;
    min-width: 0;
    min-height: 510px;
    animation: revealUp 800ms 120ms ease both;
}

.showcase-ring {
    position: absolute;
    inset: 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.showcase-main {
    position: absolute;
    top: 60px;
    right: 10%;
    z-index: 1;
    width: min(386px, 72%);
    height: min(386px, 72vw);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center right;
    border: 12px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    animation: floatCard 6s ease-in-out infinite;
}

.showcase-logo {
    position: absolute;
    top: 238px;
    bottom: auto;
    left: 2%;
    z-index: 2;
    width: min(198px, 38%);
    height: auto;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
    transform: rotate(-5deg);
}

.availability-panel,
.pickup-panel {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    color: var(--green-950);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(23, 77, 51, 0.18);
    backdrop-filter: blur(14px);
}

.availability-panel {
    top: 34px;
    left: 0;
    width: min(330px, 76%);
    padding: 15px 16px;
    font-weight: 850;
}

.pickup-panel {
    right: 0;
    bottom: 86px;
    display: grid;
    gap: 2px;
    width: min(280px, 70%);
    padding: 16px 18px;
}

.pickup-panel strong {
    color: var(--green-900);
    font-size: 18px;
    line-height: 1.1;
}

.pickup-panel span {
    color: var(--muted);
    font-size: 14px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red-600);
    box-shadow: 0 0 0 0 rgba(200, 39, 45, 0.38);
    animation: pulse 1.8s ease-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    transform: translateX(-50%);
}

.hero-scroll span {
    width: 6px;
    height: 10px;
    border-radius: 999px;
    background: var(--yellow-500);
    animation: scrollHint 1.6s ease-in-out infinite;
}

section {
    padding: 94px 0;
}

.section-band {
    position: relative;
    border-block: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 251, 242, 0.78));
}

.split-layout,
.faq-grid,
.contacts-panel {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 58px;
    align-items: start;
}

.section-intro {
    position: sticky;
    top: 112px;
}

.about-content {
    display: grid;
    gap: 20px;
    color: var(--muted);
    font-size: 18px;
}

.about-content p:last-child,
.promo-copy p:last-child,
.contacts-panel p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.about-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--green-900);
    background: var(--white);
    font-weight: 850;
}

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

.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: 6%;
    right: 0;
    width: 30rem;
    height: 30rem;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 205, 66, 0.16), transparent 70%);
}

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

.service-card,
.faq-item,
.steps li {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.service-card {
    position: relative;
    min-height: 292px;
    padding: 28px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 205, 66, 0.28), transparent 66%);
    transform: scale(0.6);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200, 39, 45, 0.28);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 58px rgba(23, 77, 51, 0.15);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card-accent {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(243, 251, 242, 0.9)),
        radial-gradient(circle at 82% 18%, rgba(242, 205, 66, 0.22), transparent 9rem);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    color: var(--green-950);
    background: linear-gradient(135deg, var(--yellow-500), #fff4ad);
    box-shadow: 0 12px 24px rgba(242, 205, 66, 0.24);
}

.service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card p,
.faq-item p,
.promo-copy p,
.contacts-panel p,
.journey-copy p,
.steps p,
.parallax-banner p {
    color: var(--muted);
}

.journey {
    padding-top: 42px;
}

.journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 42px;
    align-items: center;
}

.journey-copy p {
    margin: 20px 0 28px;
    font-size: 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.steps li {
    position: relative;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
}

.steps li::before {
    content: "";
    position: absolute;
    inset: auto -44px -44px auto;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(47, 125, 69, 0.08);
}

.steps span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--red-600);
    font-size: 14px;
    font-weight: 950;
}

.parallax-banner {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(15, 54, 38, 0.9), rgba(23, 77, 51, 0.72)),
        url("img/parallax-bg-desktop.webp") center / cover fixed;
    background-attachment: fixed;
}

.parallax-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 40%, rgba(242, 205, 66, 0.18) 40% 41%, transparent 41% 100%),
        radial-gradient(circle at 82% 50%, rgba(255, 255, 255, 0.2), transparent 18rem);
}

.parallax-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 292px);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.parallax-copy {
    max-width: 700px;
}

.parallax-content h2,
.parallax-content p {
    color: var(--white);
}

.parallax-copy p:last-child {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.motto-card {
    position: relative;
    width: min(292px, 100%);
    margin: 0;
    justify-self: end;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
        radial-gradient(circle at 18% 12%, rgba(242, 205, 66, 0.34), transparent 8rem);
    box-shadow: 0 26px 60px rgba(6, 34, 22, 0.28);
    transform: rotate(1.5deg);
    animation: mottoFloat 7s ease-in-out infinite;
}

.motto-card::before,
.motto-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.motto-card::before {
    inset: -18px;
    z-index: -1;
    border-radius: var(--radius);
    background: radial-gradient(circle, rgba(242, 205, 66, 0.26), transparent 68%);
    filter: blur(4px);
}

.motto-card::after {
    inset: 10px auto auto 10px;
    width: 42%;
    height: 34%;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 68%);
}

.motto-card img {
    width: 100%;
    aspect-ratio: 265 / 321;
    border-radius: calc(var(--radius) - 2px);
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(15, 54, 38, 0.16);
}

.promo {
    position: relative;
}

.promo-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
    gap: 36px;
    align-items: center;
}

.promo-copy {
    padding: 32px 0;
}

.promo-copy p {
    margin: 20px 0 28px;
    font-size: 18px;
}

.promo-slider {
    position: relative;
    min-width: 0;
}

.promo-track {
    position: relative;
    display: grid;
    min-height: clamp(250px, 25vw, 390px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 251, 242, 0.82));
    box-shadow: var(--shadow);
}

.promo-slide {
    grid-area: 1 / 1;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px) scale(0.985);
    transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.promo-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.promo-slide img {
    width: 100%;
    height: auto;
    max-height: clamp(214px, 22vw, 340px);
    object-fit: contain;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 18px 44px rgba(23, 77, 51, 0.16);
}

.promo-track::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(23, 77, 51, 0.08), transparent 36%),
        radial-gradient(circle at 88% 10%, rgba(242, 205, 66, 0.16), transparent 16rem);
}

.promo-slide:hover img,
.promo-slide:focus-visible img {
    filter: saturate(1.08);
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.promo-dots button {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 104, 65, 0.18);
    cursor: pointer;
    transition: background-color 180ms ease, width 180ms ease;
}

.promo-dots button.is-active {
    width: 46px;
    background: var(--green-700);
}

.popular-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.popular-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--green-900);
    background: var(--white);
    font-weight: 900;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.popular-links a::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--yellow-500);
    opacity: 0.16;
    transition: transform 180ms ease, opacity 180ms ease;
}

.popular-links a:hover,
.popular-links a:focus-visible {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    color: var(--green-950);
    background: var(--green-100);
}

.popular-links a:hover::before,
.popular-links a:focus-visible::before {
    opacity: 0.34;
    transform: scale(1.2);
}

.popular-links span {
    position: relative;
    z-index: 1;
}

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

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    color: var(--green-900);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    color: var(--green-950);
    background: var(--yellow-500);
    line-height: 1;
}

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

.faq-item p {
    margin: 0;
    padding: 0 28px 26px;
}

.faq-item a {
    color: var(--green-800);
    font-weight: 850;
}

.contacts {
    padding-bottom: 78px;
}

.contacts-panel {
    position: relative;
    align-items: center;
    padding: 56px 52px;
    overflow: hidden;
    border-radius: 12px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(15, 54, 38, 0.96), rgba(47, 125, 69, 0.92)),
        url("img/contacts-panel-desktop.webp") center / cover;
    box-shadow: var(--shadow);
}

.contacts-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(242, 205, 66, 0.08), transparent 50%);
    pointer-events: none;
}

.contacts-panel::after {
    content: "";
    position: absolute;
    inset: -32% -12% auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 205, 66, 0.2), transparent 70%);
    animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.3; }
}

.contacts-panel > * {
    position: relative;
    z-index: 1;
}

.contacts-panel > div:first-child {
    max-width: 520px;
}

.contacts-panel h2,
.contacts-panel p {
    color: var(--white);
}

.contacts-panel h2 {
    font-size: clamp(30px, 3.2vw, 42px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contacts-panel p {
    max-width: 100%;
    opacity: 0.9;
    font-size: 18px;
    line-height: 1.65;
}

.contacts-actions {
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.contacts-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 900;
    font-size: 16px;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.contacts-actions a svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.contacts-actions a:hover,
.contacts-actions a:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.contacts-actions a[href^="tel:"] {
    background: rgba(242, 205, 66, 0.16);
    border-color: rgba(242, 205, 66, 0.4);
    font-size: 17px;
}

.contacts-actions a[href^="tel:"]:hover {
    background: rgba(242, 205, 66, 0.28);
    border-color: rgba(242, 205, 66, 0.6);
}

.footer {
    color: rgba(255, 255, 255, 0.76);
    background: var(--green-950);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 1fr) minmax(180px, 1fr);
    align-items: start;
    gap: 64px;
    padding: 58px 0 42px;
}

.footer-brand {
    max-width: 340px;
    align-self: start;
}

.footer img {
    width: 140px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.footer p {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-heading {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.footer-links,
.footer-contacts {
    display: grid;
    align-content: start;
    align-self: start;
    gap: 12px;
}

.footer-links a,
.footer-contacts a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    transition: color 180ms ease, transform 120ms ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contacts a:hover,
.footer-contacts a:focus-visible {
    color: var(--yellow-500);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatHalo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-18px, 14px, 0) scale(1.04);
    }
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-14px) rotate(2deg);
    }
}

@keyframes mottoFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(1.5deg);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(-0.8deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 39, 45, 0.4);
    }
    80%,
    100% {
        box-shadow: 0 0 0 12px rgba(200, 39, 45, 0);
    }
}

@keyframes scrollHint {
    0%,
    100% {
        transform: translateY(-8px);
        opacity: 0.55;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes pillTrail {
    0% {
        opacity: 0;
        transform: translate3d(var(--trail-x), var(--trail-y), 0) scale(calc(var(--trail-scale, 1) * 0.82)) rotate(var(--trail-rotate));
    }
    18% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(var(--trail-x) + var(--trail-dx)), calc(var(--trail-y) + var(--trail-dy)), 0) scale(calc(var(--trail-scale, 1) * 0.38)) rotate(calc(var(--trail-rotate) + var(--trail-spin, 96deg)));
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-grid,
    .promo-layout {
        grid-template-columns: 1fr;
    }

    .journey {
        padding-top: 72px;
    }
}

@media (max-width: 980px) {
    .header-content {
        grid-template-columns: auto auto;
        gap: 18px;
    }

    .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        padding-bottom: 12px;
        overflow-x: auto;
    }

    .hero {
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-grid,
    .split-layout,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contacts-panel {
        grid-template-columns: 1fr;
        padding: 44px 36px;
        text-align: center;
    }

    .contacts-panel > div:first-child {
        max-width: 100%;
    }

    .contacts-panel h2 {
        font-size: clamp(28px, 4.5vw, 36px);
    }

    .contacts-panel p:last-child {
        margin: 0 auto 28px;
    }

    .contacts-actions {
        justify-content: center;
        gap: 12px;
    }

    .contacts-actions a {
        min-width: 250px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-showcase {
        min-height: 440px;
    }

    .section-intro {
        position: static;
    }

    .popular-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .parallax-banner {
        background-attachment: scroll;
        min-height: 380px;
    }

    .parallax-content {
        grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
        gap: 32px;
    }

    .parallax-copy {
        max-width: 540px;
    }

    .motto-card {
        width: min(240px, 100%);
    }

    .footer-content {
        grid-template-columns: minmax(220px, 1.15fr) minmax(160px, 0.9fr) minmax(160px, 0.95fr);
        gap: 30px;
        padding: 44px 0 36px;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-heading {
        font-size: 17px;
        margin-bottom: 14px;
    }
}

@media (max-width: 720px) {
    .steps,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: 100%;
        padding-inline: 14px;
    }

    .header-content {
        grid-template-columns: auto 1fr auto;
        min-height: 76px;
        gap: 12px;
        padding: 12px 0;
    }

    .logo img {
        width: 106px;
    }

    .logo,
    .header-phone {
        justify-self: start;
    }

    .burger {
        justify-self: end;
    }

    .header-phone {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 13px;
        max-width: 100%;
    }

    .nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 42px 0 52px;
        background:
            linear-gradient(120deg, rgba(15, 54, 38, 0.98) 0%, rgba(23, 77, 51, 0.92) 46%, rgba(47, 125, 69, 0.86) 100%),
            url("img/hero-bg-mobile.webp") center top / cover;
    }

    h1 {
        font-size: clamp(34px, 10vw, 44px);
    }

    h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .hero-copy {
        padding-top: 10px;
    }

    .hero-subtitle {
        max-width: 34ch;
    }

    .hero-searchbar {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-searchbar input,
    .hero-searchbar button {
        min-height: 48px;
    }

    .hero-searchbar button {
        width: 100%;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
        min-width: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .hero-stats a {
        min-height: 86px;
    }

    .hero-showcase {
        min-height: 360px;
    }

    .showcase-main {
        top: 54px;
        right: 0;
        width: min(300px, 74%);
        height: min(300px, 74vw);
        aspect-ratio: 1 / 1;
        border-width: 8px;
    }

    .showcase-logo {
        top: 178px;
        bottom: auto;
        width: min(170px, 42%);
        padding: 12px;
    }

    .availability-panel {
        top: 4px;
        left: 0;
        width: min(300px, 88%);
        font-size: 14px;
    }

    .pickup-panel {
        bottom: 20px;
        width: min(250px, 78%);
    }

    .hero-scroll {
        display: none;
    }

    section {
        padding: 62px 0;
    }

    .split-layout,
    .faq-grid,
    .contacts-panel {
        gap: 28px;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .about-content,
    .promo-copy p,
    .journey-copy p,
    .parallax-copy p:last-child {
        font-size: 16px;
    }

    .service-card,
    .steps li,
    .contacts-panel {
        padding: 22px;
    }

    .service-card,
    .steps li {
        min-height: auto;
    }

    .steps span {
        margin-bottom: 20px;
    }

    .parallax-banner {
        min-height: auto;
        padding: 48px 0;
        background:
            linear-gradient(90deg, rgba(15, 54, 38, 0.95), rgba(23, 77, 51, 0.85)),
            url("img/parallax-bg-mobile.webp") center / cover;
    }

    .parallax-content {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 32px;
    }

    .parallax-copy {
        text-align: left;
    }

    .parallax-copy p:last-child {
        margin: 16px 0 0;
    }

    .motto-card {
        width: min(260px, 72vw);
        justify-self: center;
        padding: 8px;
        transform: rotate(0.8deg);
        margin: 8px 0 0;
    }

    .motto-card img {
        width: 100%;
        height: auto;
    }

    .promo-track {
        min-height: 220px;
    }

    .promo-slide {
        padding: 10px;
    }

    .promo-slide img {
        max-height: 180px;
    }

    .contacts-panel {
        padding: 32px 20px;
        text-align: center;
        background:
            linear-gradient(135deg, rgba(15, 54, 38, 0.96), rgba(47, 125, 69, 0.92)),
            url("img/contacts-panel-mobile.webp") center / cover;
    }

    .contacts-panel h2 {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 12px;
    }

    .contacts-panel p:last-child {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .contacts-actions {
        display: grid;
        gap: 12px;
    }

    .contacts-actions a {
        min-height: 54px;
        font-size: 16px;
        width: 100%;
    }

    .contacts-actions a:first-child,
    .contacts-actions a:nth-child(2) {
        background: rgba(242, 205, 66, 0.16);
        border-color: rgba(242, 205, 66, 0.38);
        font-size: 18px;
    }

    .contacts-actions a:first-child:hover,
    .contacts-actions a:nth-child(2):hover {
        background: rgba(242, 205, 66, 0.26);
        border-color: rgba(242, 205, 66, 0.56);
    }

    .popular-links {
        grid-template-columns: 1fr;
    }

    .popular-links a {
        min-height: 60px;
    }

    .faq-item summary {
        padding: 20px 22px;
        font-size: 18px;
    }

    .faq-item p {
        padding: 0 22px 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 42px 0 32px;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-links,
    .footer-contacts {
        text-align: center;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-contacts a:hover,
    .footer-contacts a:focus-visible {
        transform: translateX(0) translateY(-2px);
    }
}

@media (max-width: 420px) {
    .showcase-logo {
        left: 0;
        width: min(150px, 46%);
    }

    .pickup-panel {
        right: 0;
        width: 82%;
    }

    .about-highlights {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero,
    .parallax-banner {
        background-attachment: scroll;
    }

    .motto-card {
        animation: none;
    }

    .cursor-trail {
        display: none;
    }
}
