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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #111614;
    background: #ffffff;
}

:root {
    --nv-green: #6bb476;
    --nv-green-dark: #4d9659;
    --nv-green-light: #edf6ef;
    --nv-dark: #0d1f1a;
    --nv-black: #111614;
    --nv-gray: #687076;
    --nv-gray-light: #f5f7f6;
    --nv-border: #e3e8e5;
    --nv-white: #ffffff;
    --nv-shadow: 0 24px 70px rgba(13, 31, 26, 0.08);
}

.container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* =========================
   HERO
========================= */
.ct-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(107,180,118,0.12), transparent 30%),
        linear-gradient(180deg, #0d1f1a 0%, #10261f 100%);
    padding: 88px 0 72px;
}

.ct-page__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(107,180,118,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,180,118,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.ct-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 64px;
    align-items: center;
}

.ct-main {
    padding-top: 18px;
}

.ct-title {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ct-brand {
    color: #fff;
    white-space: nowrap;
}

.ct-subtitle {
    margin: 0 0 36px;
    max-width: 620px;
    color: rgba(255,255,255,0.72);
    font-size: 20px;
    line-height: 1.7;
}

/* =========================
   QUICK CONTACTS
========================= */
.ct-quick {
    display: grid;
    gap: 14px;
    margin-bottom: 0;
    max-width: 680px;
}

.ct-quick__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: 0.25s ease;
}

.ct-quick__item:hover {
    transform: translateY(-2px);
    border-color: rgba(107,180,118,0.28);
    background: rgba(107,180,118,0.10);
}

.ct-quick__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107,180,118,0.16);
    color: var(--nv-green);
}

.ct-quick__icon svg {
    width: 18px;
    height: 18px;
}

.ct-quick__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ct-quick__title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.ct-quick__text {
    color: rgba(255,255,255,0.52);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
   FORM
========================= */
.ct-form-col {
    position: relative;
}

.ct-form-box {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.22);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.ct-form-box__top {
    padding: 30px 32px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
    border-bottom: 1px solid var(--nv-border);
}

.ct-form-box__badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--nv-green-light);
    color: var(--nv-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ct-form-box__title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--nv-black);
    letter-spacing: -0.03em;
}

.ct-form-box__text {
    margin: 0;
    color: var(--nv-gray);
    font-size: 15px;
    line-height: 1.7;
}

.ct-form-box__amo {
    padding: 32px;
    background: #fff;
}

.ct-amo-action {
    display: flex;
    justify-content: center;
    align-items: center;

}

.ct-amo-action__btn {
    width: 100%;
    max-width: 320px;
    min-height: 58px;
    border: none;
    border-radius: 14px;
    background: var(--nv-green);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.ct-amo-action__btn:hover {
    background: var(--nv-green-dark);
    transform: translateY(-1px);
}

.ct-form-box__bottom {
    padding: 0 32px 28px;
    color: #8a9490;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================
   EMAIL SECTION
========================= */
.ct-email {
    padding: 84px 0 96px;
    background: #fff;
}

.ct-email__head {
    max-width: 760px;
    margin-bottom: 36px;
}

.ct-section-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--nv-black);
}

.ct-section-subtitle {
    margin: 0;
    color: var(--nv-gray);
    font-size: 18px;
    line-height: 1.7;
}

.ct-email__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.ct-email-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 22px;
    background: var(--nv-gray-light);
    border: 1px solid var(--nv-border);
    text-decoration: none;
    transition: 0.25s ease;
}

.ct-email-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107,180,118,0.36);
    box-shadow: var(--nv-shadow);
}

.ct-email-card--primary {
    background: linear-gradient(180deg, #f3faf4 0%, #edf6ef 100%);
    border-color: rgba(107,180,118,0.34);
}

.ct-email-card__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--nv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-green-dark);
}

.ct-email-card__icon svg {
    width: 22px;
    height: 22px;
}

.ct-email-card__content {
    min-width: 0;
}

.ct-email-card__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--nv-black);
    margin-bottom: 8px;
}

.ct-email-card__email {
    font-size: 16px;
    font-weight: 700;
    color: var(--nv-green-dark);
    margin-bottom: 8px;
    word-break: break-word;
}

.ct-email-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--nv-gray);
}

/* =========================
   MESSENGERS SECONDARY
========================= */
.ct-messengers--secondary {
    margin-bottom: 28px;
    padding: 24px 28px;
    border-radius: 22px;
    background: var(--nv-gray-light);
    border: 1px solid var(--nv-border);
}

.ct-messengers__label {
    margin-bottom: 12px;
    color: var(--nv-gray);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ct-messengers__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-msg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.ct-msg:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.ct-msg--tg { background: #229ED9; }
.ct-msg--max { background: #0077ff; }
.ct-msg--vk { background: #4C75A3; }
.ct-msg--wa { background: #25D366; }

/* =========================
   SYSTEM NOTE
========================= */
.ct-system-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px 28px;
    border-radius: 24px;
    background: #0f1714;
    color: #fff;
}

.ct-system-note__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    background: rgba(107,180,118,0.14);
    color: var(--nv-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-system-note__icon svg {
    width: 22px;
    height: 22px;
}

.ct-system-note__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ct-system-note__text {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
    .ct-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ct-form-col {
        max-width: 720px;
    }

    .ct-email__grid {
        grid-template-columns: 1fr;
    }
}

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

    .ct-page {
        padding: 64px 0 52px;
    }

    .ct-title {
        font-size: 38px;
    }

    .ct-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .ct-form-box__top,
    .ct-form-box__amo,
    .ct-form-box__bottom {
        padding-left: 22px;
        padding-right: 22px;
    }

    .ct-section-title {
        font-size: 30px;
    }

    .ct-section-subtitle {
        font-size: 16px;
    }

    .ct-system-note {
        padding: 20px;
        flex-direction: column;
    }

    .ct-messengers--secondary {
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .ct-messengers__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ct-msg {
        width: 100%;
    }

    .ct-quick__item {
        padding: 16px;
    }

    .ct-quick__title {
        font-size: 18px;
    }

    .ct-email-card {
        padding: 18px;
    }
}

body > .body:not(.index) > .main{
    padding: 0px !important;
}