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

:root {
    --green-dark: #1a5c2a;
    --green-mid: #27803a;
    --green-light: #3aad50;
    --green-accent: #4edc6a;
    --white: #ffffff;
    --off-white: #f4f7f5;
    --dark: #0e1a12;
    --gray-50: #f8faf8;
    --gray-100: #eef2ef;
    --gray-600: #5a6b5e;
    --gray-800: #2a3a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--dark);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-title--dark {
    color: var(--dark);
}

.section-title--white {
    color: var(--white);
}

.section-sub {
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    max-width: 640px;
}

.section-sub--muted {
    color: var(--gray-600);
}

.section-sub--light {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 1. HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(8, 20, 10, 0.92) 0%,
            rgba(10, 26, 14, 0.78) 40%,
            rgba(10, 26, 14, 0.35) 70%,
            rgba(10, 26, 14, 0.15) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 40px 150px 40px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    opacity: 0;
}

.logo__icon {
    width: 40px;
    height: 40px;
}

.logo__text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--white);
}

.logo__text span {
    color: var(--green-accent);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(62, 173, 80, 0.15);
    border: 1px solid rgba(78, 220, 106, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-accent);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    opacity: 0;
}

.hero__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.5px;
    max-width: 680px;
    margin-bottom: 24px;
    opacity: 0;
}

.hero__title em {
    font-style: normal;
    color: var(--green-accent);
}

.hero__subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 36px;
    opacity: 0;
}

.hero__usp {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 44px;
    opacity: 0;
}

.hero__usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.hero__usp-item svg {
    flex-shrink: 0;
    color: var(--green-accent);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--primary {
    background: linear-gradient(135deg,
            var(--green-light),
            var(--green-mid));
    color: var(--white);
    box-shadow:
        0 8px 32px rgba(58, 173, 80, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(58, 173, 80, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero__seo {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    opacity: 0;
}

.hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(10, 20, 12, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(78, 220, 106, 0.12);
}

.hero__stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    justify-content: flex-start;
    gap: 56px;
}

.stat {
    opacity: 0;
}

.stat__number {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-accent);
}

.stat__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* ===== 2. SERVICES ===== */
.services {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%,
            rgba(78, 220, 106, 0.12),
            transparent 22%),
        radial-gradient(circle at 86% 16%,
            rgba(39, 128, 58, 0.1),
            transparent 20%),
        linear-gradient(180deg, #f3f6f3 0%, #edf2ee 100%);
    padding: 120px 0;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.62) 32%,
            rgba(255, 255, 255, 0.16) 100%),
        url("data:image/svg+xml,%3Csvg width='1200' height='700' viewBox='0 0 1200 700' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.55' stroke='%2327803a' stroke-width='1.6'%3E%3Cpath d='M840 110L1070 200V470L840 580L610 470V200L840 110Z'/%3E%3Cpath d='M840 110V580'/%3E%3Cpath d='M610 200L840 310L1070 200'/%3E%3Cpath d='M610 470L840 360L1070 470'/%3E%3C/g%3E%3Cg opacity='0.2' stroke='%2327803a' stroke-width='1.2'%3E%3Cpath d='M980 70L1145 135V325L980 395L815 325V135L980 70Z'/%3E%3Cpath d='M980 70V395'/%3E%3Cpath d='M815 135L980 210L1145 135'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position:
        center,
        right -60px center;
    background-size: auto, min(54vw, 760px);
    pointer-events: none;
}

.services::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 48px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.16) 0%,
            rgba(78, 220, 106, 0) 70%);
    filter: blur(28px);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
}

.services__lead {
    max-width: 460px;
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(39, 128, 58, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(16, 34, 19, 0.06);
}

.services__lead-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
}

.services__lead p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    min-height: 340px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.86) 100%);
    border-radius: 28px;
    padding: 32px 26px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 60px rgba(16, 34, 19, 0.08);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    backdrop-filter: blur(14px);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(78, 220, 106, 0.12),
            rgba(255, 255, 255, 0) 46%,
            rgba(39, 128, 58, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s;
}

.card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.18) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 26px 70px rgba(16, 34, 19, 0.14),
        0 0 0 1px rgba(58, 173, 80, 0.14);
}

.card:hover::before,
.card:hover::after {
    opacity: 1;
}

.card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(58, 173, 80, 0.08);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(58, 173, 80, 0.14),
            rgba(78, 220, 106, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--green-mid);
    transition: all 0.35s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.card:hover .card__icon {
    background: linear-gradient(135deg,
            var(--green-mid),
            var(--green-light));
    color: var(--white);
    transform: scale(1.05) rotate(-4deg);
}

.card__title {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.card__text {
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--gray-600);
}

.card__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 800;
    color: var(--green-mid);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.card:hover .card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== 3. WHY US ===== */
.why {
    background:
        radial-gradient(circle at 12% 18%,
            rgba(78, 220, 106, 0.12) 0%,
            transparent 26%),
        radial-gradient(circle at 88% 22%,
            rgba(78, 220, 106, 0.08) 0%,
            transparent 24%),
        linear-gradient(180deg, #07150d 0%, #06120b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.why::before {
    top: -180px;
    right: -220px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.14) 0%,
            transparent 68%);
    filter: blur(10px);
}

.why::after {
    left: -120px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.08) 0%,
            transparent 72%);
}

.why__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(78, 220, 106, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 220, 106, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center,
            black 40%,
            transparent 88%);
}

.why__top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
    gap: 32px;
    align-items: end;
}

.why__lead {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    max-width: 700px;
    margin-top: 18px;
}

.why__highlight {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(78, 220, 106, 0.16);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 26px 24px;
    backdrop-filter: blur(16px);
}

.why__highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(78, 220, 106, 0.14),
            transparent 60%);
    opacity: 0.9;
}

.why__highlight-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why__highlight-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    background: rgba(78, 220, 106, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why__highlight-number {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.why__highlight-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.why__highlight-text {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.why__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.why__card {
    min-height: 218px;
    padding: 28px 26px 24px;
    border-radius: 24px;
    border: 1px solid rgba(78, 220, 106, 0.1);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(78, 220, 106, 0.14),
            transparent 42%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why__card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(78, 220, 106, 0.1),
            rgba(78, 220, 106, 0.85),
            rgba(78, 220, 106, 0.1));
    transform: scaleX(0.28);
    transform-origin: center;
    opacity: 0;
    transition: all 0.35s ease;
    border-radius: 999px;
}

.why__card:hover {
    border-color: rgba(78, 220, 106, 0.28);
    transform: translateY(-8px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(78, 220, 106, 0.08);
}

.why__card:hover::before,
.why__card:hover::after {
    opacity: 1;
}

.why__card:hover::after {
    transform: scaleX(1);
}

.why__card-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg,
            rgba(78, 220, 106, 0.16),
            rgba(78, 220, 106, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    margin-bottom: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why__card-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(78, 220, 106, 0.84);
}

.why__card-label::before {
    content: "";
    width: 18px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
}

.why__card-title {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.28;
    margin-bottom: 10px;
}

.why__card-text {
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.56);
}

.why__seo {
    position: relative;
    z-index: 1;
    margin-top: 56px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.46);
    max-width: 860px;
}

/* ===== 4. FULL SERVICES ===== */
.full {
    position: relative;
    background:
        radial-gradient(circle at 12% 14%,
            rgba(78, 220, 106, 0.1),
            transparent 24%),
        radial-gradient(circle at 82% 22%,
            rgba(39, 128, 58, 0.1),
            transparent 26%),
        linear-gradient(180deg, #f5f8f5 0%, #eef3ef 100%);
    padding: 110px 0;
    overflow: hidden;
}

.full::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.74) 0%,
            rgba(255, 255, 255, 0.36) 45%,
            rgba(255, 255, 255, 0.08) 100%),
        radial-gradient(circle at 78% 32%,
            rgba(78, 220, 106, 0.18),
            transparent 20%);
    pointer-events: none;
}

.full::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.12) 0%,
            rgba(78, 220, 106, 0) 72%);
    filter: blur(16px);
    pointer-events: none;
}

.full .container {
    position: relative;
    z-index: 1;
}

.full__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
    gap: 68px;
    align-items: stretch;
    margin-top: 52px;
}

.full__list {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    position: relative;
}

.full__list::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg,
            rgba(39, 128, 58, 0),
            rgba(39, 128, 58, 0.16),
            rgba(39, 128, 58, 0));
}

.full__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.full__item-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(58, 173, 80, 0.12),
            rgba(78, 220, 106, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--green-mid);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.full__right {
    position: relative;
    min-height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.82));
    border-radius: 34px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 26px 80px rgba(16, 34, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
    isolation: isolate;
}

.full__right::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 24%,
            rgba(78, 220, 106, 0.22),
            transparent 22%),
        linear-gradient(145deg,
            rgba(78, 220, 106, 0.08),
            rgba(255, 255, 255, 0) 48%,
            rgba(39, 128, 58, 0.08) 100%);
    pointer-events: none;
    z-index: -1;
}

.full__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 12px;
    align-items: end;
    min-height: 360px;
}

.full__content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    padding: 22px 0 10px;
}

.full__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(58, 173, 80, 0.1);
    color: var(--green-mid);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.full__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 6px rgba(78, 220, 106, 0.12);
}

.full__right-title {
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 16px;
}

.full__right-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.82;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.full__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.full__actions .btn {
    box-shadow: 0 18px 36px rgba(39, 128, 58, 0.18);
}

.full__micro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--gray-600);
}

.full__micro::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
}

.full__visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.full__glow {
    position: absolute;
    right: 6px;
    bottom: 4px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(58, 173, 80, 0.26) 0%,
            rgba(58, 173, 80, 0.12) 34%,
            rgba(58, 173, 80, 0) 72%);
    filter: blur(16px);
}

.full__ring {
    position: absolute;
    right: 20px;
    bottom: 64px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(39, 128, 58, 0.14);
    box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.14);
}

.full__worker {
    position: relative;
    z-index: 2;
    width: 370px;
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: translate(24px, 24px) scale(1.06);
    filter: drop-shadow(0 28px 42px rgba(7, 21, 13, 0.18));
}

.full__floating {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(16, 34, 19, 0.12);
    backdrop-filter: blur(12px);
}

.full__floating--top {
    top: 22px;
    right: 8px;
}

.full__floating--bottom {
    left: 8px;
    bottom: 18px;
}

.full__floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg,
            var(--green-mid),
            var(--green-light));
    box-shadow: 0 10px 22px rgba(39, 128, 58, 0.22);
}

.full__floating-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.full__floating-text {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--gray-600);
}

/* ===== 5. STEPS ===== */
.steps {
    background: var(--white);
    padding: 100px 0;
}

.steps__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.steps__track::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--green-accent),
            var(--green-light),
            var(--green-accent));
    border-radius: 3px;
    z-index: 0;
    opacity: 0.25;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__num {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 28px;
    background: linear-gradient(135deg,
            var(--green-mid),
            var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(58, 173, 80, 0.25);
    position: relative;
}

.step__num::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(58, 173, 80, 0.2);
    animation: spin 20s linear infinite;
}

.step__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.step__text {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 320px;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== 6. PRICING ===== */
.pricing {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ::before replaced by canvas */

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.price-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(78, 220, 106, 0.1);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s;
}

.price-card:hover {
    border-color: rgba(78, 220, 106, 0.35);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

.price-card__icon {
    margin-bottom: 16px;
    color: var(--green-accent);
}

.price-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.price-card__detail {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.price-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-accent);
}

.price-card__unit {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.pricing__note {
    margin-top: 40px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 680px;
}

/* ===== 7. FEARS ===== */
.fears {
    background: var(--off-white);
    padding: 100px 0;
}

.fears__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.fear {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 20px;
    transition: all 0.4s;
}

.fear:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.fear__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            rgba(58, 173, 80, 0.1),
            rgba(78, 220, 106, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
}

.fear__q {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.fear__a {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-600);
}

.fears__seo {
    margin-top: 48px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 700px;
}

/* ===== 8. TRUST ===== */
.trust {
    background: var(--white);
    padding: 100px 0;
}

.trust__content {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.trust__text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.trust__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.trust__logo-tag {
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.trust__logo-tag:hover {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}

.trust__right {
    background: linear-gradient(135deg,
            var(--green-mid),
            var(--green-dark));
    border-radius: 24px;
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trust__right::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08),
            transparent);
    pointer-events: none;
}

.trust__right-stat {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.trust__right-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.trust__right-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust__right-item svg {
    flex-shrink: 0;
    color: var(--green-accent);
}

/* ===== 9. SEO BLOCK ===== */
.seo-block {
    background: var(--gray-50);
    padding: 80px 0;
    border-top: 1px solid var(--gray-100);
}

.seo-block__text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray-600);
    max-width: 860px;
    column-count: 2;
    column-gap: 48px;
    margin-top: 24px;
}

/* ===== 10. CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--green-dark), var(--dark));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(78, 220, 106, 0.07),
            transparent 60%);
    pointer-events: none;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta__form {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(78, 220, 106, 0.15);
    border-radius: 24px;
    padding: 44px 36px;
}

.cta__input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.cta__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.cta__input:focus {
    border-color: var(--green-accent);
}

.cta__micro {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.anim {
    opacity: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 24px;
    top: 24px;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 9999;
    background: #fff;
    color: #0e1a12;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.service-areas {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid var(--gray-100);
}

.service-areas__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.service-areas__chip {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 700;
}

.faq {
    background: var(--off-white);
    padding: 100px 0;
}

.faq__list {
    margin-top: 40px;
    display: grid;
    gap: 16px;
}

.faq__item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 24px 24px 22px;
    box-shadow: 0 10px 30px rgba(16, 34, 19, 0.04);
}

.faq__item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.faq__item p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services::before {
        background-size: auto, 460px;
        background-position:
            center,
            right -120px center;
    }

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

    .services__lead {
        max-width: 100%;
    }

    .services__grid,
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .full__wrap,
    .trust__content,
    .cta__inner {
        grid-template-columns: 1fr;
    }

    .full__card {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .full__content {
        max-width: 100%;
    }

    .full__visual {
        min-height: 340px;
        margin-top: 6px;
    }

    .full__worker {
        width: 300px;
        transform: translate(12px, 18px) scale(1.03);
    }

    .full__floating--top {
        top: 10px;
        right: 12px;
    }

    .full__floating--bottom {
        left: 12px;
        bottom: 12px;
    }

    .seo-block__text {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 84px 0;
    }

    .services::before {
        background-position:
            center,
            right -180px bottom;
        background-size: auto, 340px;
    }

    .card {
        min-height: unset;
        border-radius: 22px;
    }

    .container {
        padding: 0 24px;
    }

    .hero__content {
        padding: 50px 25px 200px 25px;
    }

    .hero__stats-inner {
        gap: 24px;
        padding: 16px 24px;
        flex-wrap: wrap;
    }

    .hero__usp {
        flex-direction: column;
        gap: 10px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .stat__number {
        font-size: 22px;
    }

    .services,
    .why,
    .full,
    .steps,
    .pricing,
    .fears,
    .trust,
    .cta {
        padding: 64px 0;
    }

    .services__grid,
    .why__grid,
    .fears__grid,
    .steps__track,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .why__top {
        gap: 24px;
    }

    .why__highlight {
        padding: 22px 20px;
    }

    .why__card {
        min-height: auto;
    }

    .full__right {
        padding: 24px 22px 18px;
        border-radius: 26px;
    }

    .full__badge {
        margin-bottom: 14px;
    }

    .full__right-title {
        font-size: 30px;
    }

    .full__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .full__micro {
        justify-content: center;
        text-align: center;
    }

    .full__visual {
        min-height: 300px;
    }

    .full__worker {
        width: 235px;
        transform: translate(6px, 16px) scale(1.02);
    }

    .full__ring {
        width: 170px;
        height: 170px;
        right: 10px;
        bottom: 58px;
    }

    .full__glow {
        width: 210px;
        height: 210px;
        right: 8px;
    }

    .full__floating {
        gap: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .full__floating-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .full__floating-title {
        font-size: 12px;
    }

    .full__floating-text {
        font-size: 11px;
    }

    .steps__track::before {
        display: none;
    }
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(8, 18, 10, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #111c14;
    border: 1px solid rgba(78, 220, 106, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(78, 220, 106, 0.06);
}

.modal-accent {
    height: 3px;
    background: linear-gradient(90deg, #27803a 0%, #4edc6a 50%, #27803a 100%);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.modal-body {
    padding: 36px 36px 32px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 12px;
}

.modal-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-accent);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.modal-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.modal-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.55;
    margin-bottom: 28px;
}

.modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.modal-field {
    position: relative;
}

.modal-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.modal-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.modal-input:focus {
    border-color: rgba(78, 220, 106, 0.5);
    background: rgba(78, 220, 106, 0.04);
}

.modal-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    padding: 15px 24px;
    margin-bottom: 12px;
}

.modal-micro {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    line-height: 1.5;
}

/* success state */
.modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0 8px;
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(78, 220, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-success-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.modal-success-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.6;
    max-width: 340px;
}

/* CTA-form отправка */
#cta-form-msg.success-msg {
    color: var(--green-accent);
    font-weight: 600;
}

#cta-form-msg.error-msg {
    color: #ff6b6b;
    font-weight: 600;
}

@media (max-width: 540px) {
    .modal-body {
        padding: 28px 20px 24px;
    }

    .modal-fields {
        grid-template-columns: 1fr;
    }

    .modal-title {
        font-size: 21px;
    }
}


/* =============================================
   INPUT WITH ICON
   ============================================= */
.input-wrap {
    position: relative;
}

.input-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green-mid);
    pointer-events: none;
    flex-shrink: 0;
}

.input-wrap .cta__input,
.input-wrap .modal-input {
    padding-left: 42px;
}

/* =============================================
   HERO CONTACTS
   ============================================= */
.hero__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 4px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.hero__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity .2s;
}

.hero__contact:hover {
    opacity: .75;
}

.hero__contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(62, 173, 80, .15);
    border: 1px solid rgba(78, 220, 106, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    flex-shrink: 0;
}

.hero__contact-info {
    display: flex;
    flex-direction: column;
}

.hero__contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
}

.hero__contact-num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}

.hero__socials {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.hero__social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}

.hero__social:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.hero__social--wa {
    background: rgba(37, 211, 102, .13);
    border: 1px solid rgba(37, 211, 102, .28);
    color: #25d366;
}

.hero__social--ig {
    background: rgba(228, 64, 95, .12);
    border: 1px solid rgba(228, 64, 95, .28);
    color: #e4405f;
}

.hero__social span {
    color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #080f0a;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 52px 0 36px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
}

.footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 18px;
}

.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: opacity .2s;
}

.footer__contact-link:hover {
    opacity: .75;
}

.footer__contact-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(62, 173, 80, .12);
    border: 1px solid rgba(78, 220, 106, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    flex-shrink: 0;
}

.footer__contact-num {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
}

.footer__contact-badge {
    display: inline-block;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .4px;
    margin-top: 2px;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.footer__social:hover {
    transform: translateX(4px);
}

.footer__social--wa {
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .22);
    color: #25d366;
}

.footer__social--ig {
    background: rgba(228, 64, 95, .1);
    border: 1px solid rgba(228, 64, 95, .22);
    color: #e4405f;
}

.footer__social span {
    color: rgba(255, 255, 255, .85);
}

.footer__social--wa:hover {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .18);
}

.footer__social--ig:hover {
    box-shadow: 0 4px 18px rgba(228, 64, 95, .18);
}

@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__contacts {
        gap: 14px;
        padding: 14px 16px;
    }

    .hero__contact-num {
        font-size: 14px;
    }

    .hero__socials {
        margin-left: 0;
        width: 100%;
    }

    .hero__social {
        flex: 1;
        justify-content: center;
    }
}


/* pricing canvas layer */
.pricing>.container {
    position: relative;
    z-index: 1;
}

#pricing-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}