:root {
    --dark-green: #26A47B;
    --green: #00CA89;
    --light-green: #DDF8E5;
    --img-light: #CBF5D8;
    --blue: #0088A4;
    --violet: #AE00D1;
    --yellow: #E5D841;
    --orange: #E28129;
    --ink: #102027;
    --muted: #65737B;
    --line: #DDECE7;
    --bg: #F7FAF9;
    --card: #FFFFFF;
    --shadow: 0 24px 70px rgba(16, 32, 39, .10);
    --radius: 30px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 7% 0%, rgba(0, 202, 137, .14) 0 18rem, transparent 28rem),
    radial-gradient(circle at 92% 7%, rgba(0, 136, 164, .12) 0 18rem, transparent 29rem),
    var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(247, 250, 249, .78);
    border-bottom: 1px solid rgba(221, 236, 231, .7);
}

.header__inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 190px;
    max-width: 260px;
    flex: 0 0 260px;
}

.brand__media {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.brand__logo {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
}

.brand__title {
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    font-size: 17px;
}

.brand__subtitle {
    font-size: 10px;
    color: var(--muted);
    margin: 0;
    padding-left: 4px;
}

.nav {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #405158;
    font-size: 13px;
    font-weight: 700;
}

.nav a {
    padding: 8px 4px;
}

.nav a:hover {
    color: var(--dark-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: .2s transform, .2s box-shadow, .2s background;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    box-shadow: 0 18px 34px rgba(0, 136, 164, .24);
}

.btn--light {
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 14px 30px rgba(16, 32, 39, .08);
}

.btn--ghost {
    color: var(--blue);
    background: #fff;
    border: 1px solid var(--line);
}

.hero {
    padding: 70px 0 54px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--dark-green);
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(16, 32, 39, .04);
}

h1 {
    font-size: clamp(40px, 5vw, 48px);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 22px 0 22px;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: clamp(18px, 2vw, 22px);
    color: #34494F;
    max-width: 720px;
    margin: 0 0 28px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero__note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    max-width: 620px;
}

.hero-card {
    position: relative;
    min-height: 320px;
    border-radius: 42px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(221, 248, 229, .70));
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: auto -60px -100px auto;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: rgba(174, 0, 209, .11);
    filter: blur(10px);
}

.hero-card:after {
    content: "";
    position: absolute;
    inset: -100px auto auto -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 136, 164, .12);
    filter: blur(8px);
}

.hero-card__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 492px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(16, 32, 39, .12);
}

.glass-illustration {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.building {
    position: relative;
    width: min(390px, 100%);
    height: 310px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(203, 245, 216, .48));
    border: 1px solid rgba(255, 255, 255, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 32px 70px rgba(0, 136, 164, .17);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px 34px 38px;
}

.building__roof {
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 64px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, var(--green), var(--blue));
    opacity: .92;
    border-radius: 6px;
}

.building__cols {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
    height: 150px;
    margin-top: 80px;
}

.building__cols span {
    border-radius: 16px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .86);
    box-shadow: inset 0 18px 34px rgba(0, 202, 137, .12);
}

.building__base {
    height: 28px;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.float {
    position: absolute;
    z-index: 3;
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .84);
    box-shadow: 0 20px 45px rgba(16, 32, 39, .12);
    backdrop-filter: blur(12px);
}

.float--one {
    top: 48px;
    right: 24px;
    padding: 14px 18px;
    transform: rotate(4deg);
}

.float--two {
    bottom: 44px;
    left: 18px;
    padding: 16px 18px;
    transform: rotate(-5deg);
}

.float--three {
    bottom: 138px;
    right: 10px;
    padding: 13px 16px;
    transform: rotate(7deg);
}

.float b {
    display: block;
    color: var(--dark-green);
    font-size: 24px;
    line-height: 1
}

.float small {
    font-weight: 700;
    color: var(--muted);
}

.section {
    padding: 72px 0;
}

.section--compact {
    padding: 48px 0;
}

.section__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section__head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 0;
    max-width: 850px;
}

.section__head p {
    margin: 0;
    max-width: 420px;
    color: var(--muted);
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.stat {
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(16, 32, 39, .05);
}

.stat__num {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1
}

.stat p {
    margin: 10px 0 0;
    color: #34494F;
    font-weight: 600;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid--3 {
    grid-template-columns:repeat(3, 1fr)
}

.grid--2 {
    grid-template-columns:repeat(2, 1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 38px rgba(16, 32, 39, .045);
}

.card--green {
    background: linear-gradient(145deg, #fff, var(--light-green));
    border-color: #B9F0DE;
}

.card--accent {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #fff;
    border: 0;
    box-shadow: 0 28px 70px rgba(0, 136, 164, .18);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--light-green);
    display: grid;
    place-items: center;
    color: var(--dark-green);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.card--accent .icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.22
}

.card p {
    margin: 0;
    color: #44565D
}

.card--accent p {
    color: rgba(255, 255, 255, .88)
}

.list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.list li {
    position: relative;
    padding-left: 30px;
    font-weight: 600;
    color: #34494F;
}

.list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.panel {
    border-radius: 38px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.panel--dark {
    background: linear-gradient(135deg, #16352f, #0E5B66);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.panel--dark:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(229, 216, 65, .15);
    right: -140px;
    top: -130px;
}

.panel--dark p, .panel--dark li {
    color: rgba(255, 255, 255, .85)
}

.price-tables {
    display: grid;
    gap: 22px;
}

.table-wrap {
    overflow: auto;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

th {
    background: var(--light-green);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1f5f4c;
}

tr:last-child td {
    border-bottom: 0
}

.price {
    font-weight: 900;
    color: var(--dark-green);
    white-space: nowrap;
}

.product-title {
    font-weight: 800;
    color: var(--ink)
}

.product-desc {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.split {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.big-price {
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: var(--dark-green);
    letter-spacing: -.04em;
    margin: 10px 0;
}

.note-box {
    border-left: 5px solid var(--green);
    background: var(--light-green);
    border-radius: 22px;
    padding: 22px;
    margin-top: 20px;
    font-weight: 700;
}

.discount {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(226, 129, 41, .14);
    color: #9B4C00;
    font-weight: 900;
    font-size: 13px;
}

.form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.form input, .form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 18px;
    font: inherit;
    background: #fff;
    outline: none;
}

.form input:focus, .form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 202, 137, .12);
}

.clients-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px;
}

.client {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}

.client b {
    display: block;
    color: var(--dark-green);
    margin-bottom: 6px
}

.client span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.quote {
    display: grid;
    grid-template-columns:180px 1fr;
    gap: 26px;
    align-items: center;
}

.avatar-photo {
    width: 180px;
    height: 220px;
    border-radius: 34px;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 20px 46px rgba(0, 136, 164, .18);
    border: 1px solid var(--line);
    background: #fff;
}

blockquote {
    margin: 0;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 800;
    letter-spacing: -.02em
}

.quote small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 700;
}

.contacts {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
}

.contact-row {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    color: #34494F
}

.contact-row b {
    min-width: 120px;
    color: var(--ink)
}

.map {
    min-height: 340px;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--light-green), #fff);
    border: 1px solid #B9F0DE;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.map:before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(0, 136, 164, .14);
    left: -60px;
    top: -60px
}

.map:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 35px;
    background: rgba(174, 0, 209, .10);
    right: 30px;
    bottom: 30px;
    transform: rotate(18deg)
}

.map--iframe {
    padding: 0;
    display: block;
    background: #fff;
    min-height: 400px;
}

.map--iframe:before, .map--iframe:after {
    display: none;
}

.map--iframe iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 30px;
}

.map__pin {
    position: relative;
    z-index: 1;
    font-size: 54px
}

.map p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    font-weight: 800;
    color: var(--dark-green);
}

.requisites {
    font-size: 14px;
    line-height: 1.6;
    color: #405158;
}

.footer {
    padding: 36px 0;
    background: #102027;
    color: #fff;
    margin-top: 40px
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 280px
}

.footer__logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px
}

.footer a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .3)
}

@media (max-width: 980px) {
    .nav {
        display: none
    }

    .hero__grid, .split, .contacts {
        grid-template-columns:1fr
    }

    .hero-card {
        min-height: 420px
    }

    .hero-card__photo {
        min-height: 390px
    }

    .section__head {
        display: block
    }

    .section__head p {
        margin-top: 14px
    }

    .grid--3 {
        grid-template-columns:repeat(2, 1fr)
    }

    .stats {
        grid-template-columns:1fr
    }

    .clients-grid {
        grid-template-columns:1fr
    }

    .quote {
        grid-template-columns:1fr
    }

    .avatar-photo {
        width: 150px;
        height: 180px;
        border-radius: 28px
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .header__inner {
        height: auto;
        padding: 12px 0
    }

    .brand {
        min-width: 0;
        max-width: 220px;
        flex: 0 1 220px
    }

    .brand__logo {
        max-width: 210px
    }

    .brand__subtitle {
        padding-left: 2px
    }

    .hero {
        padding: 42px 0
    }

    .hero-card {
        padding: 10px;
        border-radius: 30px;
        min-height: 350px
    }

    .hero-card__photo {
        min-height: 330px;
        border-radius: 24px
    }

    .building {
        height: 260px;
        padding: 26px
    }

    .float--one {
        right: 8px
    }

    .float--two {
        left: 8px
    }

    .grid--3, .grid--2 {
        grid-template-columns:1fr
    }

    .panel, .card {
        padding: 22px;
        border-radius: 24px
    }

    h1 {
        font-size: 42px
    }

    .big-price {
        font-size: 36px
    }

    .footer__inner {
        display: block
    }

    .footer__brand {
        min-width: 0
    }

    .footer__logo {
        width: 200px
    }

    .footer p {
        margin-top: 12px
    }

    .contact-row {
        display: block
    }

    .contact-row b {
        display: block;
        margin-bottom: 2px
    }

    .btn {
        width: 100%;
    }

    .hero__actions {
        width: 100%;
    }
}

/* Оверлей */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Модальное окно */
.modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

/* Кнопка закрытия */
.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.modal__close:hover {
    color: #333;
}

/* Иконка */
.modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.modal__icon--success {
    background-color: #e8f5e9;
    color: #4caf50;
}

.modal__icon--error {
    background-color: #ffebee;
    color: #f44336;
}

/* Заголовок */
.modal__title {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Текст */
.modal__text {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

/* Кнопка */
.modal__btn {
    background-color: #2196f3;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

.modal__btn:hover {
    background-color: #1976d2;
}

.modal__btn--success {
    background-color: #4caf50;
}

.modal__btn--success:hover {
    background-color: #45a049;
}

.modal__btn--error {
    background-color: #f44336;
}

.modal__btn--error:hover {
    background-color: #da190b;
}

/* Блокировка скролла */
body.modal-open {
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 480px) {
    .modal {
        padding: 30px 20px;
        width: 95%;
    }

    .modal__title {
        font-size: 20px;
    }

    .modal__icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
}

.footer__links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .28);
    text-underline-offset: 3px;
}

.footer__links a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.legal-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(16, 32, 39, .62);
    backdrop-filter: blur(10px);
}

.legal-modal-backdrop.is-open {
    display: flex;
}

.legal-modal {
    position: relative;
    width: min(100%, 900px);
    max-height: min(86vh, 840px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(221, 236, 231, .95);
    box-shadow: 0 34px 90px rgba(16, 32, 39, .28);
}

.legal-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #DDF8E5;
    color: #26A47B;
    font: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.legal-modal__header {
    padding: 30px 76px 18px 30px;
    background: linear-gradient(135deg, rgba(0, 202, 137, .14), rgba(0, 136, 164, .08));
    border-bottom: 1px solid #DDECE7;
}

.legal-modal__badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #DDECE7;
    color: #26A47B;
    font-size: 12px;
    font-weight: 800;
}

.legal-modal__header h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: #102027;
}

.legal-modal__content {
    padding: 28px 30px 34px;
    overflow: auto;
    color: #102027;
    font-size: 15px;
    line-height: 1.68;
}

.legal-modal__content h2 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.18;
    color: #26A47B;
}

.legal-modal__content h3 {
    margin: 24px 0 10px;
    font-size: 19px;
    line-height: 1.28;
    color: #102027;
}

.legal-modal__content p {
    margin: 0 0 12px;
}

.legal-modal__content ul {
    margin: 0 0 14px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.legal-modal__content li {
    position: relative;
    padding-left: 24px;
}

.legal-modal__content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00CA89;
}

.legal-table-wrap {
    overflow: auto;
    margin: 16px 0;
    border: 1px solid #DDECE7;
    border-radius: 18px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.legal-table th, .legal-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #DDECE7;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: #DDF8E5;
    color: #1f5f4c;
    font-weight: 800;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

body.legal-modal-open {
    overflow: hidden;
}