:root {
    --text: #2c343a;
    --muted: #6d7a83;
    --line: rgba(92, 110, 122, 0.2);

    --glass: rgba(255, 255, 255, 0.33);
    --glass2: rgba(255, 255, 255, 0.26);

    --btn: #6f8f7c;
    --btn2: #5f7c6d;
    --btnBorder: rgba(125, 150, 135, 0.55);

    --green: #6f8f7c;
    --red: #6f8f7c;
    --text-muted: #95a5a6;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        180deg,
        #e7ecef 0%,
        #dfe6ea 35%,
        #e7edf0 70%,
        #dfe6ea 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.preloader__logo {
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader__logo img {
    width: 200px;
    opacity: 0.8;
}

.preloader__bar {
    width: 300px;
    height: 3px;
    background: rgba(111, 143, 124, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader__progress {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--btn2));
    border-radius: 10px;
    width: 0;
    transition: width 0.3s ease;
}

.preloader__percent {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

@keyframes preloaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .preloader__logo img {
        width: 150px;
    }

    .preloader__bar {
        width: 250px;
    }

    .preloader__percent {
        font-size: 20px;
    }
}

body {
    margin: 0;
    padding: 0;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: radial-gradient(
            1200px 600px at 70% 15%,
            rgba(160, 175, 190, 0.22),
            rgba(255, 255, 255, 0) 70%
        ),
        radial-gradient(
            900px 500px at 25% 35%,
            rgba(185, 195, 205, 0.28),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            180deg,
            #e7ecef 0%,
            #dfe6ea 35%,
            #e7edf0 70%,
            #dfe6ea 100%
        );
}

* {
    box-sizing: border-box;
    font-family: Manrope;
}

/* Улучшенная типографика для мобильных */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
    }
}

[class*='__container'] {
    max-width: 1200px;
    margin: 0px auto;
}

.page {
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.page::before {
    content: '';
    position: absolute;
    inset: -200px -200px auto -200px;
    height: 900px;
    background: radial-gradient(
            900px 420px at 70% 30%,
            rgba(255, 255, 255, 0.65),
            rgba(255, 255, 255, 0) 60%
        ),
        radial-gradient(
            1000px 450px at 15% 70%,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0) 65%
        );
    filter: blur(0px);
    pointer-events: none;
}
.page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.2) 0px,
        rgba(255, 255, 255, 0.2) 2px,
        rgba(255, 255, 255, 0) 42px,
        rgba(255, 255, 255, 0) 62px
    );
    opacity: 0.25;
    pointer-events: none;
}

.header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background: radial-gradient(
            1200px 600px at 70% 15%,
            rgba(160, 175, 190, 0.22),
            rgba(255, 255, 255, 0) 70%
        ),
        radial-gradient(
            900px 500px at 25% 35%,
            rgba(185, 195, 205, 0.28),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            180deg,
            #e7ecef 0%,
            #dfe6ea 35%,
            #e7edf0 70%,
            #dfe6ea 100%
        );
    transition: transform 0.3s ease-in-out;
}

.header--hidden {
    transform: translateY(-100%);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header .logo img {
    width: 100px;
    opacity: 0.7;
}

nav.nav ul {
    display: flex;
    gap: 20px;
    z-index: 99;
    position: relative;
    margin: 0;
    padding: 0;
}

nav.nav ul li {
    list-style: none;
}

nav.nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.header .nav .nav__button {
    display: none;
}

.nav__button--desktop {
    z-index: 99;
    display: block;
}

.nav__button--mobile {
    display: none;
}

.nav__button a {
    padding: 10px 20px;
    background: linear-gradient(
        180deg,
        rgba(126, 160, 140, 0.9),
        rgba(98, 128, 112, 0.92)
    );
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(40, 55, 50, 0.14);
}

.burger-menu {
    display: none;
}

.main {
    margin-top: 100px;
}

.main__first__block {
    position: relative;
    overflow: hidden;
    padding: 84px 0 96px;
}

.main__first__block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.marketsgroup.org/wp-content/uploads/2024/10/PrivateEquityChicago2024-web.jpg')
        center / cover no-repeat;
    filter: grayscale(1) saturate(0) contrast(1.05) brightness(1.12);
    opacity: 0.55;
    transform: scale(1.02);
    z-index: 0;
}

.main__first__block::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.32) 0px,
            rgba(255, 255, 255, 0.32) 3px,
            rgba(255, 255, 255, 0) 36px,
            rgba(255, 255, 255, 0) 56px
        ),
        linear-gradient(
            90deg,
            rgba(241, 245, 247, 0.98) 0%,
            rgba(241, 245, 247, 0.96) 42%,
            rgba(241, 245, 247, 0.88) 62%,
            rgba(241, 245, 247, 0.72) 80%,
            rgba(241, 245, 247, 0.52) 100%
        ),
        radial-gradient(
            1200px 600px at 60% 20%,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0) 65%
        ),
        repeating-radial-gradient(
            circle at 20% 25%,
            rgba(255, 255, 255, 0.08) 0 1px,
            rgba(255, 255, 255, 0) 1px 4px
        );
    opacity: 0.95;
}

.main__first__container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.main__first__block h1,
.main__first__block p {
    max-width: 620px;
}

.main__first__block h1 {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0;
}

.main__first__block p {
    font-size: 18px;
    color: rgba(44, 52, 58, 0.8);
    line-height: 1.75;
    margin: 22px 0 0;
}

.main__first__list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(44, 52, 58, 0.85);
}

.main__first__list li {
    position: relative;
    padding-left: 18px;
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.55;
}

.main__first__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--btn);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35),
        0 6px 14px rgba(40, 55, 50, 0.12);
}

.main__first__button {
    margin-top: 30px;
}

.main__first__button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 25px;
    background: linear-gradient(
        180deg,
        rgba(126, 160, 140, 0.92),
        rgba(98, 128, 112, 0.92)
    );
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--btnBorder);
    box-shadow: 0 10px 24px rgba(40, 55, 50, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .main__first__block {
        padding: 30px 0 40px;
    }

    .main__first__block h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .main__first__block p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .main__first__list {
        gap: 8px;
        margin: 20px 0;
    }

    .header .logo img {
        width: 70px;
    }

    .main__first__list li {
        font-size: 13px;
        padding: 5px 10px 10px 25px;
        line-height: 1.3;
    }

    .main__first__list li::before {
        font-size: 12px;
        left: 10px;
        top: 11px;
    }

    .main__first__button {
        margin-top: 5px;
    }

    .main__first__button .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .main__first__timer {
        font-size: 12px;
        margin-top: 10px;
    }

    .timer {
        font-size: 14px !important;
    }
}

.main__first__cta {
    max-width: fit-content;
}

.main__first__timer {
    text-align: center;
    margin-top: 7px;
}

.main__why {
    padding: 70px 0px;
    background: linear-gradient(#d4dee6, #c6dbd2);
}

.main__why__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2.why__title {
    margin: 0;
    max-width: 60%;
    font-size: 36px;
    text-align: center;
}

@media (max-width: 768px) {
    .main__why {
        padding: 25px 0 20px;
    }

    h2.why__title {
        max-width: 100%;
        font-size: 20px;
        padding: 0 16px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    p.why__desc {
        max-width: 100% !important;
        font-size: 15px !important;
        padding: 0 16px;
        line-height: 1.3;
        margin-bottom: 18px;
        margin-top: 0;
        text-align: left;
    }

    .why__grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 18px !important;
        margin-bottom: 15px !important;
        padding: 0 16px;
    }

    .why__grid__block {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 14px 12px !important;
        gap: 8px !important;
        border-radius: 12px !important;
    }

    .why__block__icon {
        font-size: 32px !important;
    }

    .why__block__text {
        font-size: 14px !important;
        line-height: 1.25;
    }

    .why__info-list {
        margin-top: 0;
    }

    .why__info {
        font-size: 12px !important;
        padding: 0 16px !important;
        gap: 6px !important;
        margin: 4px 0;
        line-height: 1.3;
    }

    .why__info__icon {
        font-size: 14px;
        flex-shrink: 0;
    }
}

p.why__desc {
    max-width: 50%;
    text-align: center;
    font-size: 20px;
}

.why__grid {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.why__grid__block {
    width: 300px;
    height: 300px;
    background: var(--glass2);
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    gap: 20px;
}

.why__block__icon {
    font-size: 60px;
    color: var(--btn);
}

.why__block__text {
    font-size: 20px;
}

.why__info {
    width: 100%;
    display: flex;
    justify-content: start;
    margin: 5px 0px;
    gap: 10px;
    font-size: 20px;
}

.why__info__icon {
    color: var(--btn);
}

/* --- New Styles --- */

/* --- Extended Styles for Blocks 5-11 --- */

:root {
    --red: #6f8f7c;
    --red-hover: #5f7c6d;
    --green: #6f8f7c;
    --green-hover: #5f7c6d;
    --text-main: #2c343a;
    --text-muted: #6d7a83;
}

/* Common Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section__title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.2;
}

.section__desc {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    line-height: 1.6;
}

.card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 10px;
    }

    .btn--large {
        padding: 16px 28px;
        font-size: 17px;
    }
}

.btn--red {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 20px rgba(111, 143, 124, 0.25);
}

.btn--red:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(111, 143, 124, 0.35);
}

.btn--green {
    background: var(--green);
    color: white;
    box-shadow: 0 10px 20px rgba(111, 143, 124, 0.25);
}

.btn--green:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(111, 143, 124, 0.35);
}

.btn--large {
    padding: 18px 40px;
    font-size: 19px;
    font-weight: 700;
}

/* Block 3: Audience */
.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.audience__col h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 25px;
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.cross-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.5;
}

.check-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--green);
    font-size: 20px;
}

.cross-list li::before {
    content: '\f00d';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--text-muted);
    opacity: 0.6;
    font-size: 20px;
}

/* Block 4: Market */
.market__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.market__item {
    padding: 30px;
}

.market__item .number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(111, 143, 124, 0.15); /* Very light green */
    line-height: 1;
    margin-bottom: 15px;
}

.market__item .text {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

/* Block 5 & 6: Feature Highlights (Legal & Clients) */
.section--legal,
.section--clients {
    text-align: center;
    padding: 60px 0;
}

.card--highlight {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.4)
    );
    border: 1px solid white;
    max-width: 900px;
    margin: 0 auto;
}

.card--highlight .section__title {
    margin-bottom: 20px;
}

.card--highlight .section__desc {
    margin-bottom: 0; /* Override default */
    font-size: 22px;
    color: var(--text-main);
}

/* Block 7: Numbers */
.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.number__card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.number__card .lbl {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.number__card .val {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
}

.card--accent {
    border: 2px solid rgba(111, 143, 124, 0.2);
    background: rgba(111, 143, 124, 0.05);
}

.card--accent .val {
    color: var(--green);
    font-size: 36px; /* Larger for impact */
}

/* Block 8: Trust */
.trust__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    font-size: 20px;
    font-weight: 500;
}

.trust__item i {
    font-size: 32px;
    color: var(--green);
}

/* Block 9: Comparison */
.comparison__table-wrapper {
    overflow: hidden; /* For border radius */
    padding: 0; /* Reset padding for table to fill */
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
}

.comparison__table th,
.comparison__table td {
    padding: 25px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison__table th {
    font-size: 22px;
    font-weight: 600;
}

.comparison__table th.ours {
    background: rgba(111, 143, 124, 0.1);
    color: var(--green);
    width: 35%;
}

.comparison__table th.others {
    color: var(--text-muted);
    width: 35%;
}

.comparison__table tr:last-child td {
    border-bottom: none;
}

.comparison__table td.good {
    background: rgba(111, 143, 124, 0.06);
    color: var(--green-hover);
    font-weight: 600;
    font-size: 18px;
}

.comparison__table td.bad {
    color: var(--text-muted);
    font-size: 18px;
}

/* Block 10 & 11: Final CTA */
.section--final {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f0f2 100%);
    position: relative;
    overflow: hidden;
}

.section--final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(111, 143, 124, 0.3) 50%,
        transparent 100%
    );
}

.final-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.final-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, #8da998 100%);
}

.final-header {
    text-align: center;
    margin-bottom: 45px;
}

.final-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.final-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.final-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: var(--text);
    background: linear-gradient(
        135deg,
        rgba(111, 143, 124, 0.05),
        rgba(141, 169, 152, 0.08)
    );
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
}

.final-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(111, 143, 124, 0.15);
}

.final-feature-item i {
    font-size: 24px;
    color: var(--green);
    flex-shrink: 0;
}

.final-timer-box {
    background: linear-gradient(135deg, var(--green) 0%, #8da998 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(111, 143, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.final-timer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.final-timer-icon {
    margin-bottom: 15px;
}

.final-timer-icon i {
    font-size: 42px;
    opacity: 0.9;
}

.final-timer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.final-timer-label {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-timer-value {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.final-bottom {
    text-align: center;
    border-top: 2px solid #f0f4f5;
    padding-top: 40px;
}

.final-tagline {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 500;
}

.final__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section--final {
        padding: 35px 0 45px;
    }

    .final-wrapper {
        padding: 25px 16px;
        border-radius: 14px;
    }

    .final-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .final-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .final-features {
        gap: 10px;
    }

    .final-feature-item {
        font-size: 13px;
        padding: 12px 14px;
    }

    .final-feature-item i {
        font-size: 18px;
    }

    .final-timer-box {
        padding: 20px 16px;
    }

    .final-timer-icon i {
        font-size: 32px;
    }

    .final-timer-label {
        font-size: 12px;
    }

    .final-timer-value {
        font-size: 24px;
    }

    .final-tagline {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .final__actions {
        flex-direction: column;
        gap: 10px;
    }

    .final__actions button {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Remove old styles */
.final__card,
.final__timer,
.final__text {
    display: none;
}

/* Footer (Block 12 equivalent) */
.footer {
    background: #20262b;
    color: #fff;
    padding: 80px 0 40px;
    z-index: 99;
    position: relative;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer__col {
    flex: 1;
}

.footer__col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.6;
}

.footer__col a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    transition: opacity 0.2s;
}

.footer__col a:hover {
    opacity: 0.8;
}

.footer__col.social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__col.social > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer__col.social > div > div {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link i {
    color: white;
    font-size: 20px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-left {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #d4dee6 0%, #c6dbd2 100%);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.modal-right {
    flex: 1;
    padding: 35px 30px;
    background: white;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
}

.modal-close-success {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 2px solid rgba(111, 143, 124, 0.2);
}

.modal-badge i {
    font-size: 16px;
    color: var(--green);
}

.modal-title {
    margin: 0 0 12px;
    font-size: 26px;
    color: #2c343a;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 15px;
    color: #5a6570;
    line-height: 1.5;
    margin-bottom: 30px;
}

.modal-content h3 {
    margin: 0 0 25px;
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
}

.lead-form input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 15px;
    background: #f8f9fa;
    transition: all 0.3s;
    font-family: 'Manrope', sans-serif;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 4px rgba(111, 143, 124, 0.1);
}

.lead-form input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.lead-form input:valid:not(:placeholder-shown) {
    border-color: var(--green);
}

.lead-form button {
    width: 100%;
    margin-top: 8px;
}

.modal-privacy-checkbox {
    margin: 16px 0;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.privacy-label input[type='checkbox'] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--green);
}

.privacy-text {
    flex: 1;
}

.privacy-link {
    color: var(--green);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: var(--green-hover);
}

.modal-privacy {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: auto;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2c343a;
    font-weight: 500;
    background: white;
    padding: 14px 16px;
    border-radius: 10px;
}

.modal-feature i {
    color: var(--green);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.modal-timer {
    margin-top: 30px;
    padding: 16px 20px;
    background: #2c343a;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    color: white;
}

.modal-timer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
}

.modal-timer .timer {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.modal-success {
    text-align: center;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-success h3 {
    color: var(--green);
    font-size: 28px;
    margin: 0 0 15px 0;
}

.success-subtitle {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-messengers {
    margin-bottom: 20px;
}

.messengers-label,
.phone-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.messengers-label i,
.phone-label i {
    color: var(--green);
    font-size: 18px;
}

.messenger-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.messenger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.messenger-btn i {
    font-size: 28px;
}

.messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.messenger-btn--telegram {
    background: linear-gradient(135deg, #0088cc, #0099dd);
}

.messenger-btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #2fe677);
}

.messenger-btn--max {
    background: linear-gradient(135deg, #264891, #050839);
}

.messenger-btn--max img {
    width: 30px;
}

.messenger-btn--vk {
    background: linear-gradient(135deg, #4680c2, #5a9bd5);
}

.success-phone {
    background: linear-gradient(
        135deg,
        rgba(111, 143, 124, 0.08),
        rgba(141, 169, 152, 0.12)
    );
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.phone-number {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--green-hover);
}

.success-note {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 15px 0 0 0;
}

.btn--telegram {
    background: #0088cc;
    color: white;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.btn--phone {
    background: #f0f0f0;
    color: var(--text-main);
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
        margin: 10px;
        border-radius: 14px;
    }

    .modal-left {
        flex: none;
        padding: 20px 16px;
    }

    .modal-right {
        flex: none;
        padding: 20px 16px;
    }

    .modal-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .modal-features {
        gap: 10px;
    }

    .modal-feature {
        padding: 10px 12px;
        font-size: 12px;
    }

    .modal-feature i {
        font-size: 14px;
    }

    .modal-timer {
        padding: 12px;
        margin-top: 20px;
    }

    .modal-timer strong {
        font-size: 11px;
    }

    .modal-timer .timer {
        font-size: 18px;
    }

    .modal-content h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .lead-form input {
        padding: 12px 14px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .privacy-label {
        font-size: 11px;
    }

    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 22px;
        top: -455px;
        right: 15px;
        background: rgba(0, 0, 0, 0.08);
    }

    .messenger-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .messenger-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 14px;
        gap: 10px;
    }

    .messenger-btn i,
    .messenger-btn img {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .messenger-btn span {
        font-size: 14px;
    }

    .phone-number {
        font-size: 18px;
    }

    .success-subtitle {
        font-size: 13px;
    }

    .messengers-label,
    .phone-label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .modal-success h3 {
        font-size: 22px;
    }

    .success-phone {
        padding: 14px;
        margin-bottom: 12px;
    }

    .success-note {
        font-size: 12px;
        margin: 12px 0 0 0;
    }
}

@media (max-width: 1024px) {
    .market__grid,
    .numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section__title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section__desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .container {
        padding: 0 16px;
    }

    .audience__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience__col {
        padding: 20px 16px;
    }

    .audience__col h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .check-list li,
    .cross-list li {
        font-size: 14px;
        padding-left: 28px;
        line-height: 1.5;
    }

    .market__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .market__block {
        padding: 20px 16px;
    }

    .market__block h3 {
        font-size: 18px;
    }

    .numbers__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .numbers__card {
        padding: 20px 16px;
    }

    .numbers__value {
        font-size: 32px;
    }

    .numbers__label {
        font-size: 14px;
    }

    .fee-badge {
        padding: 14px 16px !important;
        margin-top: 16px !important;
    }

    .fee-badge__text {
        font-size: 18px !important;
    }

    .fee-badge__text i {
        font-size: 16px;
    }

    .comparison__table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison__table {
        min-width: 600px;
    }

    .comparison__table th,
    .comparison__table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .final__actions {
        flex-direction: column;
        gap: 12px;
    }

    .final__actions button {
        width: 100%;
        font-size: 16px;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer {
        padding: 40px 0 25px;
    }

    .footer__col {
        width: 100%;
    }

    .footer__logo {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer__col h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer__col p,
    .footer__col a {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer__col.social {
        justify-content: center;
        margin-top: 0;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 16px;
    }

    .trust__list {
        flex-direction: column;
        align-items: stretch;
    }

    .trust__item {
        justify-content: center;
    }

    .header .burger-menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        color: var(--text);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .header .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.908);
        z-index: 1000 !important;
        flex-direction: column;
        padding: 20px 20px 20px;
        transition: right 0.3s ease;
        display: flex;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .header .nav.active {
        right: 0;
        z-index: 1000;
    }

    .header .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        font-size: 18px;
        width: 100%;
        margin-bottom: auto;
    }

    ul {
        padding-inline-start: 0px;
    }

    .header .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0;
    }

    .header .nav ul li a {
        display: block;
        padding: 16px 0;
        color: var(--text);
        font-weight: 500;
        transition: color 0.3s;
    }

    .header .nav ul li a:hover {
        color: var(--green);
    }

    .nav__button--mobile {
        display: block !important;
        width: 100%;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid rgba(0, 0, 0, 0.08);
    }

    .nav__button--desktop {
        display: none !important;
    }

    .nav__button--mobile .btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 24px;
    }

    .header__container {
        padding: 12px 16px;
    }

    .logo {
        max-width: 140px;
    }

    .logo img {
        max-height: 32px;
    }
}

.text-green {
    color: var(--green);
}
.text-red {
    color: #95a5a6;
}

.section--hero-style {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section--hero-style::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80')
        center / cover no-repeat;
    filter: grayscale(1) saturate(0) contrast(1.05) brightness(1.12);
    opacity: 0.15;
    transform: scale(1.02);
    z-index: 0;
}

.section--hero-style::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.32) 0px,
            rgba(255, 255, 255, 0.32) 3px,
            rgba(255, 255, 255, 0) 36px,
            rgba(255, 255, 255, 0) 56px
        ),
        linear-gradient(
            90deg,
            rgba(241, 245, 247, 0.98) 0%,
            rgba(241, 245, 247, 0.96) 42%,
            rgba(241, 245, 247, 0.88) 62%,
            rgba(241, 245, 247, 0.72) 80%,
            rgba(241, 245, 247, 0.52) 100%
        );
    opacity: 0.95;
}

.section--hero-style .container {
    position: relative;
    z-index: 2;
}

.section--hero-style .section__title {
    margin-bottom: 40px;
}

/* Redesign for Feature Cards (Legal & Clients) */

.feature-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05); /* Soft premium shadow */
    text-align: center;
    position: relative;
}

.feature-card .section__title {
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
}

.feature-card .section__desc {
    font-size: 20px;
    color: #6d7a83;
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
}

.feature-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a555c;
}

.feature-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 3px;
    color: #8da998;
    font-size: 16px;
    font-weight: normal;
}

.feature-center-list {
    text-align: left;
    display: inline-block;
    max-width: 500px;
    margin: 0 auto;
}

.feature-center-wrapper {
    text-align: center;
}

.feature-group-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    display: block;
}

.feature-bottom-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 16px;
    color: #6d7a83;
}

.feature-info-item i {
    color: #6d7a83;
    font-size: 16px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card .section__title {
        font-size: 28px;
    }
}

/* Fresh Styles for Info Blocks */
.section--light {
    padding: 60px 0;
    position: relative;
    /* Clean background, removing any hero overlaps */
    z-index: 5;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(100, 110, 120, 0.08);
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.info-card .section__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text);
}

.info-card .section__desc {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.info-grid.centered {
    justify-content: center;
}

.info-col {
    flex: 1;
}

.info-grid.centered .info-col {
    flex: 0 0 auto;
    min-width: 300px;
}

.info-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 25px;
}

.info-col h4.text-center {
    text-align: center;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #444;
    line-height: 1.5;
}

.clean-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 3px;
    color: #8da998; /* The specific muted green from reference */
    font-size: 16px;
}

.info-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* Center the tags */
}

.info-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
}

.info-tag i {
    color: #8da998;
    font-size: 18px;
}

@media (max-width: 768px) {
    .info-grid {
        flex-direction: column;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-card .section__title {
        font-size: 28px;
    }
}

/* Premium Business Style Sections */
.section--premium-wrapper {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(#d4dee6, #c6dbd2);
}

.premium-section {
    padding: 50px 0;
}

.premium-section:first-child {
    padding-top: 0;
}

.premium-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 70px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.premium-card .section__title {
    font-size: 40px;
    font-weight: 700;
    color: #2c343a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.premium-card .section__desc {
    font-size: 19px;
    color: #5c6e7a;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    margin-top: 40px;
}

.premium-grid.centered {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-col h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2c343a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(111, 143, 124, 0.2);
}

.premium-col h4.text-center {
    text-align: center;
    border-bottom: none;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #3a454d;
    line-height: 1.6;
}

.premium-list li i {
    color: #6f8f7c;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.premium-list.centered-list {
    text-align: left;
}

.premium-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(111, 143, 124, 0.15);
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.premium-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(111, 143, 124, 0.08);
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 16px;
    color: #3a454d;
    font-weight: 500;
    border: 1px solid rgba(111, 143, 124, 0.2);
}

.premium-badge i {
    color: #6f8f7c;
    font-size: 20px;
}

@media (max-width: 768px) {
    .section--premium-wrapper {
        padding: 35px 0;
    }

    .premium-section {
        padding: 16px 0;
    }

    .premium-card {
        padding: 25px 16px;
        border-radius: 14px;
    }

    .premium-card .section__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .premium-card .section__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-col h4 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .premium-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .premium-list li i {
        font-size: 16px;
    }

    .premium-footer {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
        padding-top: 20px;
    }

    .premium-badge {
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cards inside sections animate slightly faster */
.animate-on-scroll .card,
.animate-on-scroll .premium-card,
.animate-on-scroll .why__grid__block {
    transition-delay: 0.2s;
}
