*,
*::before,
*::after {
    content: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

.bar__shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: stretch;
    gap: 48px;
}

.site-bar {
    background: #F3F4F0;
    border-bottom: 1.5px solid #CEDEAD;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06), 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    font-family: 'Figtree', sans-serif;
    position: relative;
    z-index: 100;
}

.brand__mount {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__frame {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 16px 0;
}

.brand__img-hold {
    width: 120px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #CEDEAD;
    box-shadow: inset 0 2px 4px 0 rgba(172, 134, 45, 0.06), 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    padding: 8px 16px;
    overflow: hidden;
}

.brand__img-hold img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand__name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2200;
}

.bar__mid {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__shell {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__item {
    display: flex;
    align-items: center;
}

.menu__lnk {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.015em;
    color: #2a2200;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 44px;
}

.menu__lnk:hover {
    background: #CEDEAD;
    color: #1a1000;
}

.menu__lnk:focus-visible {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.18);
}

.menu__lnk--active {
    color: #AC862D;
    font-weight: 700;
}

.bar__act {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bar__cta-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2200;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #AC862D;
    background: linear-gradient(135deg, #AC862D 0%, #c9a84c 100%);
    color: #ffffff;
    min-height: 44px;
    transition: background 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.bar__cta-lnk:hover {
    background: linear-gradient(315deg, #AC862D 0%, #c9a84c 100%);
    border-color: #8a6a20;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.bar__cta-lnk:focus-visible {
    outline: 2px solid #2a2200;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.22);
}

.bar__cta-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bar__accent-strip {
    height: 4px;
    background: linear-gradient(90deg, #AC862D 0%, #CEDEAD 60%, #F3F4F0 100%);
}

@media (max-width: 1024px) {
    .bar__shell {
        padding: 0 24px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bar__shell {
        padding: 0 16px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .brand__mount {
        flex: 1 0 100%;
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .bar__mid {
        flex: 1 0 100%;
        justify-content: flex-start;
    }

    .bar__act {
        flex: 1 0 100%;
        padding-bottom: 16px;
    }

    .menu__shell {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .bar__shell {
        padding: 0 8px;
        gap: 8px;
    }

    .brand__name {
        font-size: 16px;
    }

    .bar__cta-lnk {
        font-size: 16px;
        padding: 8px 16px;
    }
}

.ftr {
    background: #2a2200;
    font-family: 'Figtree', sans-serif;
    position: relative;
}

.ftr__top-bar {
    height: 4px;
    background: linear-gradient(90deg, #AC862D 0%, #CEDEAD 100%);
}

.ftr__body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ftr__upper {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.ftr__brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 auto;
}

.ftr__brand-frame {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.ftr__img-hold {
    width: 120px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #CEDEAD;
    box-shadow: inset 0 2px 4px 0 rgba(172, 134, 45, 0.06), 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    padding: 8px 16px;
    overflow: hidden;
}

.ftr__img-hold img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ftr__brand-name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #F3F4F0;
}

.ftr__tagline {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.015em;
    color: #CEDEAD;
    max-width: 320px;
}

.ftr__contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.ftr__contact-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    text-transform: uppercase;
}

.ftr__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr__contact-item {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #F3F4F0;
}

.ftr__contact-lnk {
    color: #CEDEAD;
    text-decoration: none;
    transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ftr__contact-lnk:hover {
    color: #AC862D;
}

.ftr__contact-lnk:focus-visible {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.18);
    border-radius: 3px;
}

.ftr__divider {
    height: 1px;
    background: rgba(206, 222, 173, 0.18);
}

.ftr__lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
}

.ftr__copy {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(243, 244, 240, 0.55);
}

.ftr__policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ftr__policy-lnk {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(243, 244, 240, 0.55);
    text-decoration: none;
    transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ftr__policy-lnk:hover {
    color: #CEDEAD;
}

.ftr__policy-lnk:focus-visible {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.18);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .ftr__body {
        padding: 48px 24px 24px;
        gap: 24px;
    }

    .ftr__upper {
        gap: 24px;
    }

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

@media (max-width: 480px) {
    .ftr__body {
        padding: 24px 16px 16px;
    }
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #2a2200;
    border-top: 2px solid #AC862D;
    box-shadow: 0 -6px 14px 0 rgba(172, 134, 45, 0.11);
    font-family: 'Figtree', sans-serif;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: none;
}

.consent-bar.consent-bar--visible {
    transform: translateY(0);
}

.consent-bar__shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consent-bar__head {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #F3F4F0;
}

.consent-bar__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #CEDEAD;
}

.consent-bar__uses {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.consent-bar__use-item {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(206, 222, 173, 0.8);
    padding-left: 16px;
    position: relative;
}

.consent-bar__use-item::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #AC862D;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.consent-bar__opt-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.consent-bar__opt-label {
    font-size: 16px;
    line-height: 1.8;
    color: #CEDEAD;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.consent-bar__opt-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #AC862D;
    cursor: pointer;
}

.consent-bar__btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.consent-bar__btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.01em;
    border-radius: 10px;
    border: 2px solid #AC862D;
    background: transparent;
    color: #F3F4F0;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-bar__btn:hover {
    background: #AC862D;
    color: #2a2200;
}

.consent-bar__btn:focus-visible {
    outline: 2px solid #F3F4F0;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.22);
}

@media (max-width: 768px) {
    .consent-bar__shell {
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .consent-bar__shell {
        padding: 16px;
    }

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

    .consent-bar__btn {
        justify-content: center;
    }
}

.pref-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1999;
    width: 48px;
    height: 48px;
    border-radius: 20px;
    background: #AC862D;
    border: 2px solid #2a2200;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pref-toggle:hover {
    background: #c9a84c;
}

.pref-toggle:focus-visible {
    outline: 2px solid #2a2200;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(172, 134, 45, 0.22);
}

.pref-toggle__icon {
    width: 22px;
    height: 22px;
    display: block;
}

.pref-toggle--show {
    display: flex;
}

.doc-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2a2a2a;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.doc-section h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin-bottom: 24px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #AC862D;
}

.doc-section h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid #AC862D;
    border-bottom: 1px solid #CEDEAD;
    padding-bottom: 8px;
}

.doc-section h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #222222;
    margin-top: 48px;
    margin-bottom: 16px;
}

.doc-section h4 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #222222;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.doc-section h5 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #333333;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.doc-section h6 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #444444;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    font-style: italic;
}

.doc-section ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.doc-section ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.doc-section ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.doc-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #AC862D;
    border-radius: 50%;
    flex-shrink: 0;
}

.doc-section ol li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    line-height: 1.8;
    counter-increment: policy-counter;
}

.doc-section ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -8px;
    top: 0;
    color: #AC862D;
    font-weight: 700;
    font-size: 16px;
}

.doc-section ul ul,
.doc-section ol ol,
.doc-section ul ol,
.doc-section ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.doc-section strong,
.doc-section b {
    font-weight: 700;
    color: #1b1b1b;
}

.doc-section em,
.doc-section i {
    font-style: italic;
    color: #3a3a3a;
}

.doc-section a {
    color: #AC862D;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doc-section a:hover {
    color: #8a6a22;
    text-decoration-color: #CEDEAD;
}

.doc-section a:visited {
    color: #7a5e1e;
}

.doc-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.doc-section thead {
    background-color: #AC862D;
}

.doc-section thead th {
    color: #ffffff;
    font-weight: 700;
    padding: 16px;
    text-align: left;
    letter-spacing: 0.02em;
    font-size: 16px;
    line-height: 1.8;
}

.doc-section tbody tr {
    border-bottom: 1px solid #CEDEAD;
    transition: background-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doc-section tbody tr:nth-child(even) {
    background-color: #F3F4F0;
}

.doc-section tbody tr:hover {
    background-color: #e8eddd;
}

.doc-section td {
    padding: 16px;
    color: #2a2a2a;
    line-height: 1.8;
    vertical-align: top;
}

.doc-section th {
    padding: 16px;
    line-height: 1.8;
    vertical-align: top;
}

.doc-section div {
    margin-bottom: 16px;
}

.doc-section div:last-child {
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .doc-section {
        padding: 48px 24px;
    }

    .doc-section h1 {
        font-size: 44px;
    }

    .doc-section h2 {
        font-size: 32px;
    }

    .doc-section h3 {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .doc-section {
        padding: 48px 24px;
    }

    .doc-section h1 {
        font-size: 44px;
    }

    .doc-section h2 {
        font-size: 32px;
    }

    .doc-section h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .doc-section {
        padding: 24px 16px;
    }

    .doc-section h1 {
        font-size: 32px;
    }

    .doc-section h2 {
        font-size: 32px;
        padding-left: 8px;
    }

    .doc-section h3 {
        font-size: 16px;
    }

    .doc-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 5px;
    }

    .doc-section thead th,
    .doc-section td {
        padding: 8px 16px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .doc-section {
        padding: 16px 8px;
    }

    .doc-section h1 {
        font-size: 32px;
    }

    .doc-section h2 {
        font-size: 16px;
        border-left-width: 3px;
    }

    .doc-section h3 {
        font-size: 16px;
    }

    .doc-section ul {
        padding-left: 16px;
    }

    .doc-section ol {
        padding-left: 16px;
    }
}

.svc-det {
    background: #F3F4F0;
    padding: 0;
    overflow-x: clip;
    position: relative;
}

.svc-det .pg-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.svc-det .lede-band {
    position: relative;
    padding: 48px 24px 0;
    overflow: hidden;
}

.svc-det .lede-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(172, 134, 45, 0.09) 0%, rgba(206, 222, 173, 0.07) 55%, transparent 100%);
    pointer-events: none;
}

.svc-det .lede-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.svc-det .lede-img--left,
.svc-det .lede-img--right {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.svc-det .lede-img--right {
    margin-top: 48px;
}

.svc-det .lede-img--left img,
.svc-det .lede-img--right img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.svc-det .lede-img--left::after,
.svc-det .lede-img--right::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(20, 16, 8, 0.72) 100%);
    border-radius: 0 0 10px 10px;
    pointer-events: none;
}

.svc-det .lede-txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
}

.svc-det .lede-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.svc-det .cat-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #2a1f00;
    background: rgba(172, 134, 45, 0.13);
    border: 1px solid rgba(172, 134, 45, 0.35);
    border-radius: 5px;
    padding: 4px 16px;
    font-weight: 600;
}

.svc-det .read-est {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #5a4e2e;
}

.svc-det .lede-desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #4a4030;
    max-width: 560px;
}

.svc-det .lede-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1e1600;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.svc-det .lede-heading .framed-word {
    display: inline;
    border: 1.5px solid #AC862D;
    border-radius: 3px;
    padding: 0 8px;
}

.svc-det .lede-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.svc-det .price-fig {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #AC862D;
    letter-spacing: 0.01em;
}

.svc-det .likes-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #5a4e2e;
    background: #fff;
    border: 1px solid rgba(172, 134, 45, 0.22);
    border-radius: 20px;
    padding: 4px 16px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.svc-det .likes-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.svc-det .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: #1e1600;
    background: linear-gradient(112deg, #AC862D 0%, #d4aa48 100%);
    border: none;
    border-radius: 5px;
    padding: 16px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    align-self: flex-start;
}

.svc-det .cta-btn:hover {
    background: linear-gradient(200deg, #AC862D 0%, #d4aa48 100%);
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-2px);
}

.svc-det .cta-btn:focus {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
}

.svc-det .cta-btn:active {
    transform: translateY(0);
}

.svc-det .cta-arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.svc-det .wave-div {
    width: 100%;
    line-height: 0;
    margin-top: 24px;
}

.svc-det .wave-div svg {
    display: block;
    width: 100%;
}

.svc-det .desc-sect {
    background: #fff;
    padding: 48px 24px;
    position: relative;
}

.svc-det .desc-sect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(206, 222, 173, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.svc-det .desc-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.svc-det .desc-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .sidebar-card {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(172, 134, 45, 0.15);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    box-shadow: inset 0 2px 8px 0 rgba(172, 134, 45, 0.06), 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.svc-det .sidebar-label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #1e1600;
    margin-bottom: 16px;
    display: block;
}

.svc-det .sidebar-price-val {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #AC862D;
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 8px;
}

.svc-det .sidebar-note {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4e2e;
}

.svc-det .sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #1e1600;
    background: linear-gradient(112deg, #AC862D 0%, #d4aa48 100%);
    border: none;
    border-radius: 5px;
    padding: 16px 24px;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    transition: background 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.svc-det .sidebar-btn:hover {
    background: linear-gradient(230deg, #AC862D 0%, #c9a040 100%);
    transform: scale(1.03);
}

.svc-det .sidebar-btn:focus {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
}

.svc-det .desc-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .desc-heading-strip {
    display: inline-block;
    background: rgba(206, 222, 173, 0.45);
    border-radius: 3px;
    padding: 4px 16px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.svc-det .desc-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
    max-width: 660px;
}

.svc-det .desc-body h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
}

.svc-det .desc-body mark {
    background: rgba(172, 134, 45, 0.18);
    color: #1e1600;
    border-radius: 3px;
    padding: 0 4px;
}

.svc-det .desc-body small {
    font-size: 16px;
    color: #5a4e2e;
    line-height: 1.8;
}

.svc-det .desc-body ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .desc-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
}

.svc-det .desc-body details {
    background: #F3F4F0;
    border-radius: 5px;
    border: 1px solid rgba(172, 134, 45, 0.18);
    padding: 16px;
}

.svc-det .desc-body summary {
    font-size: 16px;
    font-weight: 600;
    color: #1e1600;
    cursor: pointer;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.svc-det .desc-body summary:focus {
    outline: 2px solid #AC862D;
    outline-offset: 2px;
    border-radius: 3px;
}

.svc-det .prog-sect {
    padding: 48px 24px;
    position: relative;
    background: #F3F4F0;
}

.svc-det .prog-sect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 25% 55%, rgba(172, 134, 45, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.svc-det .prog-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.svc-det .prog-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.svc-det .prog-heading-strip {
    display: inline-block;
    background: rgba(172, 134, 45, 0.12);
    border-radius: 3px;
    padding: 4px 16px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
}

.svc-det .prog-sub {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4e2e;
    max-width: 480px;
    letter-spacing: 0.01em;
}

.svc-det .prog-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-det .prog-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
}

.svc-det .prog-body h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
    display: inline-block;
    background: rgba(206, 222, 173, 0.45);
    border-radius: 3px;
    padding: 4px 16px;
}

.svc-det .prog-body h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.svc-det .prog-body em {
    color: #AC862D;
    font-style: normal;
    font-weight: 600;
}

.svc-det .prog-body ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .prog-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
}

.svc-det .prog-body dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .prog-body dt {
    font-size: 16px;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
}

.svc-det .prog-body dd {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    margin-left: 24px;
    letter-spacing: 0.01em;
}

.svc-det .prog-body blockquote {
    border-left: 3px solid #AC862D;
    border-right: 1px solid rgba(206, 222, 173, 0.6);
    background: rgba(206, 222, 173, 0.15);
    border-radius: 0 5px 5px 0;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    font-style: italic;
    letter-spacing: 0.01em;
}

.svc-det .prog-body figure {
    margin: 0;
}

.svc-det .prog-body figcaption {
    font-size: 16px;
    line-height: 1.2;
    color: #5a4e2e;
    margin-top: 8px;
    letter-spacing: 0.01em;
}

.svc-det .review-sect {
    background: #fff;
    padding: 48px 24px;
    position: relative;
}

.svc-det .review-sect::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 50% at 70% 30%, rgba(206, 222, 173, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.svc-det .review-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.svc-det .review-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .review-heading-strip {
    display: inline-block;
    background: rgba(172, 134, 45, 0.12);
    border-radius: 3px;
    padding: 4px 16px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
}

.svc-det .review-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
    max-width: 480px;
}

.svc-det .review-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .rev-card {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(172, 134, 45, 0.13);
    box-shadow: inset 0 2px 6px 0 rgba(172, 134, 45, 0.06), 0 6px 14px 0 rgba(172, 134, 45, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-det .rev-card:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 2px 6px 0 rgba(172, 134, 45, 0.06), 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.svc-det .rev-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
}

.svc-det .rev-text {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3020;
    letter-spacing: 0.01em;
}

.svc-det .review-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-det .form-heading {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1600;
    letter-spacing: 0.01em;
    display: inline-block;
    background: rgba(206, 222, 173, 0.45);
    border-radius: 3px;
    padding: 4px 16px;
}

.svc-det .rev-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-det .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .form-field label {
    font-size: 16px;
    font-weight: 600;
    color: #1e1600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.svc-det .form-field input,
.svc-det .form-field textarea {
    font-size: 16px;
    line-height: 1.8;
    color: #1e1600;
    background: #F3F4F0;
    border: 1px solid rgba(172, 134, 45, 0.25);
    border-radius: 5px;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.svc-det .form-field input::placeholder,
.svc-det .form-field textarea::placeholder {
    color: #9a8a60;
    transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-det .form-field input:focus::placeholder,
.svc-det .form-field textarea:focus::placeholder {
    opacity: 0;
}

.svc-det .form-field input:focus,
.svc-det .form-field textarea:focus {
    border-color: #AC862D;
    box-shadow: 0 0 0 3px rgba(172, 134, 45, 0.12);
}

.svc-det .form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.svc-det .star-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-det .star-label {
    font-size: 16px;
    font-weight: 600;
    color: #1e1600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.svc-det .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1e1600;
    background: linear-gradient(112deg, #AC862D 0%, #d4aa48 100%);
    border: none;
    border-radius: 5px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    align-self: flex-start;
}

.svc-det .form-submit:hover {
    background: linear-gradient(220deg, #AC862D 0%, #c9a040 100%);
    transform: scale(1.03);
}

.svc-det .form-submit:focus {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
}

.svc-det .dbl-border-box {
    border: 1px solid rgba(172, 134, 45, 0.2);
    border-radius: 10px;
    padding: 4px;
    background: transparent;
}

.svc-det .dbl-border-inner {
    border: 2px solid rgba(172, 134, 45, 0.45);
    border-radius: 10px;
    padding: 24px;
    background: rgba(206, 222, 173, 0.1);
}

.svc-det .dir-arrow {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.13;
    pointer-events: none;
    width: 80px;
    height: 80px;
}

.svc-det .reveal-anim {
    opacity: 0;
    transform: scale(0.96);
    animation: revealUp 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.svc-det .reveal-anim--d1 {
    animation-delay: 0.08s;
}

.svc-det .reveal-anim--d2 {
    animation-delay: 0.16s;
}

.svc-det .reveal-anim--d3 {
    animation-delay: 0.24s;
}

.svc-det .reveal-anim--d4 {
    animation-delay: 0.32s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.svc-det .char-reveal {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: charReveal 1.1s steps(40, end) 0.1s both;
    max-width: 100%;
}

@keyframes charReveal {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.svc-det .moroccan-bg {
    position: relative;
}

.svc-det .moroccan-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(172, 134, 45, 0.04) 0px,
            rgba(172, 134, 45, 0.04) 1px,
            transparent 1px,
            transparent 12px),
        repeating-linear-gradient(-45deg,
            rgba(206, 222, 173, 0.05) 0px,
            rgba(206, 222, 173, 0.05) 1px,
            transparent 1px,
            transparent 12px);
    pointer-events: none;
    border-radius: inherit;
}

@media (max-width: 1024px) {
    .svc-det .lede-inner {
        grid-template-columns: 1fr 2fr;
        gap: 16px;
    }

    .svc-det .lede-img--right {
        display: none;
    }

    .svc-det .desc-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc-det .desc-sidebar {
        position: static;
    }

    .svc-det .review-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .svc-det .lede-inner {
        grid-template-columns: 1fr;
    }

    .svc-det .lede-img--left {
        display: none;
    }

    .svc-det .lede-heading {
        font-size: 32px;
    }

    .svc-det .prog-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-det .price-fig {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .svc-det .lede-band,
    .svc-det .desc-sect,
    .svc-det .prog-sect,
    .svc-det .review-sect {
        padding-left: 16px;
        padding-right: 16px;
    }

    .svc-det .lede-heading {
        font-size: 32px;
    }

    .svc-det .desc-heading-strip,
    .svc-det .prog-heading-strip,
    .svc-det .review-heading-strip,
    .svc-det .form-heading {
        font-size: 32px;
    }
}

.innov {
    display: block;
    width: 100%;
    overflow-x: clip;
    background: #fff;
}

.innov .pg-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: #AC862D;
    color: #1b1200;
}

.innov .dir-arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 0;
}

.innov .dir-arrows span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #AC862D;
    border-bottom: 2px solid #AC862D;
    transform: rotate(-45deg);
    opacity: 0.55;
}

.innov .dir-arrows span:nth-child(2) {
    opacity: 0.75;
}

.innov .dir-arrows span:nth-child(3) {
    opacity: 1;
}

.innov .tb {
    padding: 48px 0 24px;
    background: #F3F4F0;
    position: relative;
}

.innov .tb-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AC862D 0%, #CEDEAD 60%, transparent 100%);
}

.innov .tb-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.innov .tb-img-col {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.innov .tb-img-col img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    filter: saturate(0.3) sepia(0.5) hue-rotate(0deg) brightness(0.92);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.innov .tb-img-col:hover img {
    filter: saturate(0.55) sepia(0.35) brightness(0.95);
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.innov .tb-txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.innov .tb-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #5a4010;
    border: 1px solid #AC862D;
    border-radius: 3px;
    padding: 4px 16px;
    width: fit-content;
}

.innov .tb-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1200;
    margin: 0;
    position: relative;
    display: inline-block;
}

.innov .tb-h1 .hl-word {
    position: relative;
    display: inline;
}

.innov .tb-h1 .hl-word::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 10px;
    background: #CEDEAD;
    z-index: -1;
    border-radius: 3px;
}

.innov .tb-wavy {
    width: 100%;
    height: 18px;
    margin-top: 8px;
    overflow: hidden;
}

.innov .tb-wavy svg {
    display: block;
    width: 100%;
    height: 18px;
}

.innov .feat {
    padding: 48px 0;
    background: #fff;
    position: relative;
}

.innov .feat-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.innov .feat-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.innov .feat-heading-wrap {
    display: inline-block;
    background: #CEDEAD;
    border-radius: 5px;
    padding: 4px 16px;
    margin-bottom: 8px;
}

.innov .feat-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1200;
    margin: 0;
}

.innov .feat-intro {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2e2300;
    max-width: 680px;
}

.innov .contrast-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
}

.innov .contrast-block::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(180deg, transparent, #AC862D 30%, #AC862D 70%, transparent);
    transform: translateX(-50%);
    border-radius: 3px;
}

.innov .state-card {
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    transition: box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.innov .state-card:hover {
    box-shadow: inset 0 2px 4px 0 rgba(172, 134, 45, 0.06), 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.innov .state-card--before {
    background: #F3F4F0;
    border: 1px solid #d8d9d5;
    border-radius: 10px;
}

.innov .state-card--after {
    background: #fff;
    border: 1.5px solid #AC862D;
    border-radius: 10px;
}

.innov .state-tag {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: uppercase;
}

.innov .state-tag--before {
    color: #7a7060;
}

.innov .state-tag--after {
    color: #AC862D;
}

.innov .state-h4 {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #1b1200;
    margin: 0;
    font-weight: 600;
}

.innov .state-p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a2f10;
    margin: 0;
}

.innov .metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.innov .metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 10px;
    background: #F3F4F0;
    border-left: 3px solid #AC862D;
    border-top: 1px solid #e8e9e5;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    transition: box-shadow 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.innov .metric-item:hover {
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    transform: translateY(-3px);
}

.innov .metric-num {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
    font-weight: 700;
}

.innov .metric-desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a2f10;
}

.innov .img-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.innov .img-showcase img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.innov .img-showcase img:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.innov .sidebar-card {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 3px solid #CEDEAD;
}

.innov .sidebar-h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1200;
    margin: 0;
}

.innov .sidebar-h3-wrap {
    display: inline-block;
    background: #CEDEAD;
    border-radius: 5px;
    padding: 4px 8px;
}

.innov .sidebar-p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a2f10;
    margin: 0;
}

.innov .step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.innov .step-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2e2300;
}

.innov .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #AC862D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 4px;
}

.innov .cta-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-decoration-thickness 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.innov .cta-link:hover {
    text-decoration-thickness: 3px;
    color: #7a5c10;
}

.innov .cta-link .arr {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.innov .cta-link:hover .arr {
    transform: rotate(-45deg) translate(3px, 3px);
}

.innov .wavy-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    padding-top: 8px;
}

.innov .wavy-bottom svg {
    display: block;
    width: 100%;
    height: 16px;
}

@media (max-width: 1024px) {
    .innov .tb-grid {
        grid-template-columns: 160px 1fr;
        gap: 24px;
    }

    .innov .tb-img-col img {
        width: 160px;
        height: 200px;
    }

    .innov .tb-h1 {
        font-size: 44px;
    }

    .innov .feat-grid {
        grid-template-columns: 1fr;
    }

    .innov .feat-main {
        gap: 24px;
    }

    .innov .metrics-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .innov .sidebar-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .innov .sidebar-h3-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .innov .tb-grid {
        grid-template-columns: 1fr;
    }

    .innov .tb-img-col {
        display: none;
    }

    .innov .tb-h1 {
        font-size: 32px;
    }

    .innov .feat-h2 {
        font-size: 32px;
    }

    .innov .contrast-block {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .innov .contrast-block::before {
        display: none;
    }

    .innov .metrics-row {
        grid-template-columns: 1fr 1fr;
    }

    .innov .metric-num {
        font-size: 32px;
    }

    .innov .sidebar-card {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .innov .tb {
        padding: 24px 0 16px;
    }

    .innov .feat {
        padding: 24px 0;
    }

    .innov .metrics-row {
        grid-template-columns: 1fr;
    }

    .innov .feat-grid {
        padding: 0 16px;
    }

    .innov .tb-grid {
        padding: 0 16px;
    }
}

.svc-pg {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip;
}

.svc-pg .pg-lead {
    padding: 48px 48px 48px 48px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    background: #F3F4F0;
    position: relative;
}

.svc-pg .pg-lead::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 60px;
    height: 60px;
    border-top: 2px solid #AC862D;
    border-left: 2px solid #AC862D;
    border-radius: 3px 0 0 0;
    pointer-events: none;
}

.svc-pg .pg-lead::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #CEDEAD;
    border-right: 2px solid #CEDEAD;
    border-radius: 0 0 3px 0;
    pointer-events: none;
}

.svc-pg .lead-txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.svc-pg .lead-txt__tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    border: 1px solid #AC862D;
    border-radius: 5px;
    padding: 4px 16px;
    width: fit-content;
}

.svc-pg .lead-txt__h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0;
}

.svc-pg .lead-txt__h1 span {
    color: #AC862D;
}

.svc-pg .lead-txt__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3a3a;
    max-width: 520px;
    margin: 0;
}

.svc-pg .lead-txt__num {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-top: 8px;
}

.svc-pg .num-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-pg .num-item__val {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
}

.svc-pg .num-item__lbl {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #555;
}

.svc-pg .lead-img {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svc-pg .lead-img__wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    position: relative;
}

.svc-pg .lead-img__wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(243, 244, 240, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.svc-pg .lead-img__wrap img {
    width: 420px;
    height: 340px;
    object-fit: cover;
    display: block;
}

.svc-pg .ratio-bar-row {
    padding: 48px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-pg .ratio-bar-row__lbl {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #3a3a3a;
}

.svc-pg .ratio-bar {
    display: flex;
    flex-direction: row;
    height: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.svc-pg .ratio-bar__a {
    background: #AC862D;
    transition: width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-pg .ratio-bar__b {
    background: #CEDEAD;
    flex: 1 1 0;
}

.svc-pg .ratio-bar-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.svc-pg .ratio-bar-meta__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #3a3a3a;
}

.svc-pg .ratio-bar-meta__dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.svc-pg .ratio-bar-meta__dot--a {
    background: #AC862D;
}

.svc-pg .ratio-bar-meta__dot--b {
    background: #CEDEAD;
    border: 1px solid #b8c9a0;
}

.svc-pg .card-grid-area {
    padding: 48px 48px;
    background: #F3F4F0;
}

.svc-pg .card-grid-area__hd {
    margin-bottom: 48px;
}

.svc-pg .card-grid-area__hd h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0 0 8px 0;
    display: inline-block;
    background: #CEDEAD;
    padding: 4px 16px;
    border-radius: 5px;
}

.svc-pg .card-grid-area__hd h2 span {
    color: #AC862D;
}

.svc-pg .card-grid-area__hd p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 8px 0 0 0;
    max-width: 560px;
}

.svc-pg .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-pg .svc-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.svc-pg .svc-card:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-4px) scale(1.012);
}

.svc-pg .svc-card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.svc-pg .svc-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-pg .svc-card:hover .svc-card__img-wrap img {
    transform: scale(1.04);
}

.svc-pg .svc-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #AC862D;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 4px 8px;
    border-radius: 5px;
}

.svc-pg .svc-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    box-shadow: inset 0 4px 12px 0 rgba(172, 134, 45, 0.06);
}

.svc-pg .svc-card__h {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0;
}

.svc-pg .svc-card__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.svc-pg .svc-card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.svc-pg .svc-card__price {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
}

.svc-pg .svc-card__rt {
    font-size: 16px;
    line-height: 1.2;
    color: #777;
    letter-spacing: 0.01em;
}

.svc-pg .svc-card__likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1.2;
    color: #555;
    margin-left: auto;
}

.svc-pg .svc-card__likes svg {
    width: 18px;
    height: 18px;
    fill: #AC862D;
    flex-shrink: 0;
}

.svc-pg .svc-card__foot {
    padding: 0 24px 24px 24px;
}

.svc-pg .svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    text-decoration: none !important;
    border-bottom: 1px solid #AC862D;
    padding-bottom: 4px;
    transition: border-bottom-width 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-pg .svc-card__link:hover {
    border-bottom-width: 3px;
    color: #8a6a20;
}

.svc-pg .svc-card__link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-pg .svc-card__link:hover svg {
    transform: translateX(4px);
}

.svc-pg .trust-area {
    padding: 48px 48px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.svc-pg .trust-sidebar {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-pg .trust-sidebar__h {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0;
    background: #AC862D;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
}

.svc-pg .trust-sidebar__p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.svc-pg .trust-sidebar__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #F3F4F0;
    border-radius: 10px;
    border-left: 3px solid #AC862D;
    border-top: 1px solid #CEDEAD;
}

.svc-pg .trust-sidebar__stat-num {
    font-size: 44px;
    line-height: 1.2;
    color: #AC862D;
}

.svc-pg .trust-sidebar__stat-lbl {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
}

.svc-pg .trust-main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-pg .review-card {
    background: #F3F4F0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-pg .review-card:hover {
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.svc-pg .review-card__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.svc-pg .review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 32px;
    background: #CEDEAD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3a3a3a;
    flex-shrink: 0;
    font-style: normal;
}

.svc-pg .review-card__name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b1b1b;
    letter-spacing: 0.01em;
}

.svc-pg .review-card__role {
    font-size: 16px;
    line-height: 1.2;
    color: #777;
}

.svc-pg .review-card__txt {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.svc-pg .review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.svc-pg .process-area {
    padding: 48px 48px;
    background: radial-gradient(ellipse 80% 60% at 80% 40%, rgba(206, 222, 173, 0.22) 0%, #F3F4F0 70%);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.svc-pg .process-area__hd {
    display: inline-block;
    background: #CEDEAD;
    padding: 4px 16px;
    border-radius: 5px;
}

.svc-pg .process-area__hd h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0;
}

.svc-pg .process-area__hd h2 span {
    color: #AC862D;
}

.svc-pg .process-steps {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
}

.svc-pg .step-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: step-rotate-in 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.svc-pg .step-item:nth-child(1) {
    animation-delay: 0.05s;
}

.svc-pg .step-item:nth-child(2) {
    animation-delay: 0.10s;
}

.svc-pg .step-item:nth-child(3) {
    animation-delay: 0.15s;
}

.svc-pg .step-item:nth-child(4) {
    animation-delay: 0.20s;
}

@keyframes step-rotate-in {
    from {
        opacity: 0;
        transform: rotate(-4deg) translateY(16px);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) translateY(0);
    }
}

.svc-pg .step-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.svc-pg .step-item__num {
    font-size: 44px;
    line-height: 1.2;
    color: #AC862D;
    letter-spacing: 0.01em;
}

.svc-pg .step-item__h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b1b1b;
    letter-spacing: 0.02em;
    margin: 0;
}

.svc-pg .step-item__p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.svc-pg .cta-strip {
    padding: 48px 48px;
    background: #AC862D;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    border-radius: 20px;
    margin: 0 48px 48px 48px;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    position: relative;
    overflow: hidden;
}

.svc-pg .cta-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(243, 244, 240, 0.18);
    border-radius: 32px;
    transform: rotate(20deg);
    pointer-events: none;
}

.svc-pg .cta-strip__txt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-pg .cta-strip__h {
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

.svc-pg .cta-strip__p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(243, 244, 240, 0.88);
    margin: 0;
}

.svc-pg .cta-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #AC862D;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.svc-pg .cta-strip__btn:hover {
    background: #F3F4F0;
    color: #8a6a20;
    transform: scale(1.05);
}

.svc-pg .cta-strip__btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.svc-pg .frosted-info {
    padding: 48px 48px;
    background: linear-gradient(155deg, rgba(206, 222, 173, 0.28) 0%, rgba(243, 244, 240, 0.9) 100%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch;
    border-top: 1px solid rgba(172, 134, 45, 0.12);
    border-bottom: 1px solid rgba(172, 134, 45, 0.12);
}

.svc-pg .frosted-info__col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.svc-pg .frosted-info__col h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0;
    letter-spacing: 0.01em;
}

.svc-pg .frosted-info__col h3 span {
    color: #AC862D;
}

.svc-pg .frosted-info__col p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.svc-pg .frosted-info__col .fi-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #AC862D;
    border: 1px solid #AC862D;
    border-radius: 5px;
    padding: 4px 8px;
    width: fit-content;
}

@media (max-width: 1280px) {
    .svc-pg .pg-lead {
        padding: 48px 24px;
        gap: 24px;
    }

    .svc-pg .lead-img {
        flex: 0 0 320px;
    }

    .svc-pg .lead-img__wrap img {
        width: 320px;
        height: 260px;
    }

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

    .svc-pg .process-steps {
        flex-wrap: wrap;
    }

    .svc-pg .step-item {
        flex: 0 0 calc(50% - 12px);
    }

    .svc-pg .trust-area {
        flex-direction: column;
    }

    .svc-pg .trust-sidebar {
        flex: none;
    }

    .svc-pg .frosted-info {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .svc-pg .pg-lead {
        flex-direction: column;
        padding: 48px 24px;
    }

    .svc-pg .lead-img {
        flex: none;
    }

    .svc-pg .lead-img__wrap img {
        width: 100%;
        height: 260px;
    }

    .svc-pg .lead-txt__h1 {
        font-size: 44px;
    }

    .svc-pg .card-grid-area {
        padding: 48px 24px;
    }

    .svc-pg .trust-area {
        padding: 48px 24px;
    }

    .svc-pg .process-area {
        padding: 48px 24px;
    }

    .svc-pg .cta-strip {
        margin: 0 24px 48px 24px;
        flex-direction: column;
    }

    .svc-pg .frosted-info {
        padding: 48px 24px;
    }

    .svc-pg .ratio-bar-row {
        padding: 48px 24px;
    }
}

@media (max-width: 768px) {
    .svc-pg .pg-lead {
        padding: 48px 16px;
    }

    .svc-pg .lead-txt__h1 {
        font-size: 44px;
    }

    .svc-pg .lead-txt__num {
        gap: 24px;
        flex-wrap: wrap;
    }

    .svc-pg .card-grid {
        grid-template-columns: 1fr;
    }

    .svc-pg .review-grid {
        grid-template-columns: 1fr;
    }

    .svc-pg .process-steps {
        flex-direction: column;
    }

    .svc-pg .step-item {
        flex: none;
    }

    .svc-pg .card-grid-area {
        padding: 48px 16px;
    }

    .svc-pg .trust-area {
        padding: 48px 16px;
    }

    .svc-pg .process-area {
        padding: 48px 16px;
    }

    .svc-pg .cta-strip {
        margin: 0 16px 48px 16px;
        padding: 24px 16px;
    }

    .svc-pg .frosted-info {
        padding: 48px 16px;
    }

    .svc-pg .ratio-bar-row {
        padding: 48px 16px;
    }
}

@media (max-width: 480px) {
    .svc-pg .lead-txt__h1 {
        font-size: 32px;
    }

    .svc-pg .num-item__val {
        font-size: 32px;
    }

    .svc-pg .card-grid-area__hd h2 {
        font-size: 32px;
    }

    .svc-pg .process-area__hd h2 {
        font-size: 32px;
    }

    .svc-pg .cta-strip__h {
        font-size: 32px;
    }

    .svc-pg .trust-sidebar__h {
        font-size: 32px;
    }
}

.strt {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip;
}

.strt .pg-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 600px;
    position: relative;
}

.strt .pg-row__txt {
    flex: 0 0 50%;
    padding: 96px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.strt .pg-row__img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.strt .pg-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.strt .pg-row__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at 10% 10%, rgba(172, 134, 45, 0.38) 0%, transparent 70%);
    pointer-events: none;
}

.strt .lbl-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    border: 1px solid #AC862D;
    border-radius: 3px;
    padding: 4px 16px;
    margin-bottom: 24px;
    font-weight: 500;
}

.strt .mfst-h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    margin-bottom: 24px;
    font-weight: 700;
}

.strt .mfst-h1 .acc-word {
    color: #AC862D;
}

.strt .mfst-body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
    max-width: 520px;
    margin-bottom: 24px;
}

.strt .mfst-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .mfst-link:hover {
    border-bottom-color: #AC862D;
    gap: 16px;
}

.strt .mfst-link svg {
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .mfst-link:hover svg {
    transform: translateX(4px);
}

.strt .wave-div {
    width: 100%;
    line-height: 0;
    margin-top: -2px;
}

.strt .wave-div svg {
    display: block;
    width: 100%;
}

.strt .adapt-sec {
    background: #F3F4F0;
    padding: 48px 48px;
}

.strt .adapt-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.strt .adapt-sec__side {
    position: sticky;
    top: 24px;
}

.strt .sec-label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #7a6820;
    font-weight: 500;
    margin-bottom: 16px;
}

.strt .adapt-h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
}

.strt .adapt-h2 .acc-word {
    color: #AC862D;
}

.strt .adapt-sec__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .adapt-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06), 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .adapt-card:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-2px);
}

.strt .adapt-card__img {
    border-radius: 5px;
    overflow: hidden;
}

.strt .adapt-card__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.strt .adapt-card__txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strt .adapt-card__num {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
    font-weight: 700;
}

.strt .adapt-card__h {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
    display: inline;
    background: linear-gradient(180deg, transparent 55%, rgba(206, 222, 173, 0.55) 55%);
}

.strt .adapt-card__p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
}

.strt .adapt-card--rev {
    direction: ltr;
}

.strt .adapt-card--rev .adapt-card__img {
    order: 2;
}

.strt .adapt-card--rev .adapt-card__txt {
    order: 1;
}

.strt .pattern-sec {
    background: #fff;
    padding: 48px 48px;
}

.strt .pattern-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.strt .pattern-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
    margin-bottom: 8px;
}

.strt .pattern-h2 .acc-word {
    color: #AC862D;
}

.strt .pattern-sub {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
    max-width: 600px;
    margin-bottom: 48px;
}

.strt .rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.strt .rev-item {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 2px 8px 0 rgba(172, 134, 45, 0.08);
    transition: background 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.strt .rev-item:hover {
    background: #eef2e6;
}

.strt .rev-item__stars {
    display: block;
}

.strt .rev-item__quote {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
    flex: 1;
}

.strt .rev-item__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.strt .rev-item__name {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
}

.strt .rev-item__role {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #7a6820;
}

.strt .scale-sec {
    background: radial-gradient(ellipse 80% 60% at 85% 40%, rgba(206, 222, 173, 0.35) 0%, transparent 65%), #F3F4F0;
    padding: 48px 48px;
}

.strt .scale-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
}

.strt .scale-sec__img {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.strt .scale-sec__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.strt .scale-sec__data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .scale-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
}

.strt .scale-h2 .acc-word {
    color: #AC862D;
}

.strt .scale-p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
}

.strt .metric-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.strt .metric-box {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .metric-box:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-3px);
}

.strt .metric-box__val {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
    font-weight: 700;
}

.strt .metric-box__desc {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2418;
}

.strt .rel-sec {
    background: #fff;
    padding: 48px 48px;
}

.strt .rel-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.strt .rel-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
    margin-bottom: 24px;
}

.strt .rel-h2 .acc-word {
    color: #AC862D;
}

.strt .rel-p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
    margin-bottom: 16px;
}

.strt .rel-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.strt .rel-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 5px;
    border: 1px solid #CEDEAD;
    border-left: 4px solid #AC862D;
    background: #F3F4F0;
    transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), border-left-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .rel-step:hover {
    background: #eef2e6;
    border-left-color: #7a6820;
}

.strt .rel-step__num {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
    font-weight: 700;
    flex-shrink: 0;
    width: 48px;
}

.strt .rel-step__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.strt .rel-step__h {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
}

.strt .rel-step__p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
}

.strt .rel-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .rel-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.strt .rel-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.strt .rel-cta-box {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: inset 0 2px 6px 0 rgba(172, 134, 45, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strt .rel-cta-box__h {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1a1200;
    font-weight: 700;
}

.strt .rel-cta-box__p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2a2418;
}

.strt .btn-arr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(120deg, #AC862D 0%, #c9a84c 100%);
    border: none;
    border-radius: 5px;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    align-self: flex-start;
}

.strt .btn-arr:hover {
    background: linear-gradient(220deg, #AC862D 0%, #c9a84c 100%);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    gap: 16px;
}

.strt .btn-arr:focus {
    outline: 3px solid #AC862D;
    outline-offset: 2px;
}

.strt .btn-arr svg {
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strt .btn-arr:hover svg {
    transform: translateX(4px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strt .pg-row__txt {
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.strt .adapt-card {
    animation: slideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.strt .adapt-card:nth-child(2) {
    animation-delay: 0.08s;
}

@media (max-width: 1024px) {
    .strt .pg-row {
        flex-direction: column;
        min-height: unset;
    }

    .strt .pg-row__txt {
        flex: none;
        padding: 48px 24px 24px 24px;
    }

    .strt .pg-row__img {
        flex: none;
        height: 360px;
    }

    .strt .mfst-h1 {
        font-size: 44px;
    }

    .strt .adapt-sec__inner {
        grid-template-columns: 1fr;
    }

    .strt .adapt-sec__side {
        position: static;
    }

    .strt .adapt-card {
        grid-template-columns: 1fr;
    }

    .strt .adapt-card--rev .adapt-card__img {
        order: 0;
    }

    .strt .adapt-card--rev .adapt-card__txt {
        order: 0;
    }

    .strt .rev-grid {
        grid-template-columns: 1fr 1fr;
    }

    .strt .scale-sec__inner {
        flex-direction: column;
    }

    .strt .scale-sec__img {
        flex: none;
        width: 100%;
    }

    .strt .rel-sec__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .strt .adapt-sec {
        padding: 48px 16px;
    }

    .strt .pattern-sec {
        padding: 48px 16px;
    }

    .strt .scale-sec {
        padding: 48px 16px;
    }

    .strt .rel-sec {
        padding: 48px 16px;
    }

    .strt .rev-grid {
        grid-template-columns: 1fr;
    }

    .strt .metric-row {
        flex-direction: column;
    }

    .strt .mfst-h1 {
        font-size: 32px;
    }

    .strt .pattern-h2 {
        font-size: 32px;
    }

    .strt .scale-h2 {
        font-size: 32px;
    }

    .strt .rel-h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .strt .pg-row__txt {
        padding: 24px 16px;
    }

    .strt .pg-row__img {
        height: 240px;
    }

    .strt .adapt-sec {
        padding: 24px 16px;
    }

    .strt .pattern-sec {
        padding: 24px 16px;
    }

    .strt .scale-sec {
        padding: 24px 16px;
    }

    .strt .rel-sec {
        padding: 24px 16px;
    }
}

.abt-us {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative;
}

.abt-us .abt-hero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-width: 0;
    position: relative;
    background: #F3F4F0;
}

.abt-us .abt-hero__txt {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 48px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.abt-us .abt-hero__label {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #AC862D;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #AC862D;
    padding: 4px 16px;
    border-radius: 3px;
    width: fit-content;
}

.abt-us .abt-hero__h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0;
    font-weight: 800;
}

.abt-us .abt-hero__h1 span {
    display: inline-block;
    background: #CEDEAD;
    padding: 0 8px;
    border-radius: 3px;
}

.abt-us .abt-hero__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #2e2e2e;
    max-width: 480px;
    margin: 0;
}

.abt-us .abt-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    line-height: 0;
}

.abt-us .abt-hero__img-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.abt-us .abt-hero__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), brightness 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us .abt-hero__img-col:hover img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.abt-us .abt-hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.abt-us .abt-team {
    position: relative;
    padding: 48px 0 0;
    background: #fff;
}

.abt-us .abt-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 48px;
}

.abt-us .abt-team__intro {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
}

.abt-us .abt-team__intro-txt {
    flex: 1 1 0;
    min-width: 0;
}

.abt-us .abt-team__intro-h2 {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b1b;
    margin: 0 0 16px;
    font-weight: 700;
}

.abt-us .abt-team__intro-h2 em {
    font-style: normal;
    background: #AC862D;
    color: #fff;
    padding: 0 8px;
    border-radius: 3px;
}

.abt-us .abt-team__intro-p {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    max-width: 540px;
    margin: 0;
}

.abt-us .abt-team__metrics {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .abt-team__metric {
    background: #F3F4F0;
    border-radius: 10px;
    padding: 16px 24px;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06), inset 0 1px 4px 0 rgba(172, 134, 45, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us .abt-team__metric:hover {
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    transform: translateY(-2px);
}

.abt-us .abt-team__metric-val {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #AC862D;
    letter-spacing: 0.01em;
}

.abt-us .abt-team__metric-lbl {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
}

.abt-us .abt-team__cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.abt-us .abt-person {
    background: #F3F4F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.abt-us .abt-person:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-4px);
}

.abt-us .abt-person__img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.abt-us .abt-person__img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us .abt-person:hover .abt-person__img-wrap img {
    transform: scale(1.05);
    filter: brightness(1.07);
}

.abt-us .abt-person__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
    letter-spacing: 0.01em;
}

.abt-us .abt-person__role {
    font-size: 16px;
    line-height: 1.8;
    color: #AC862D;
    font-weight: 600;
    margin: 0;
}

.abt-us .abt-person__bio {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    margin: 0;
}

.abt-us .abt-person--break {
    position: relative;
    top: -24px;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    background: #fff;
    border: 2px solid #CEDEAD;
}

.abt-us .abt-tiers {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 8px;
}

.abt-us .abt-tier {
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us .abt-tier--base {
    background: #F3F4F0;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.abt-us .abt-tier--mid {
    background: #fff;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    border: 1.5px solid #CEDEAD;
}

.abt-us .abt-tier--top {
    background: #AC862D;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.abt-us .abt-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
}

.abt-us .abt-tier__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1b1b1b;
    margin: 0;
}

.abt-us .abt-tier--top .abt-tier__name {
    color: #fff;
}

.abt-us .abt-tier__price {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #AC862D;
    margin: 0;
    letter-spacing: 0.01em;
}

.abt-us .abt-tier--top .abt-tier__price {
    color: #fff;
}

.abt-us .abt-tier__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    margin: 0;
}

.abt-us .abt-tier--top .abt-tier__desc {
    color: rgba(255, 255, 255, 0.88);
}

.abt-us .abt-tier__feats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .abt-tier__feat {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    padding-left: 16px;
    position: relative;
}

.abt-us .abt-tier__feat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #AC862D;
}

.abt-us .abt-tier--top .abt-tier__feat {
    color: rgba(255, 255, 255, 0.88);
}

.abt-us .abt-tier--top .abt-tier__feat::before {
    background: #fff;
}

.abt-us .abt-tier__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #AC862D;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us .abt-tier--top .abt-tier__btn {
    color: #fff;
}

.abt-us .abt-tier__btn:hover {
    gap: 16px;
}

.abt-us .abt-tier__btn svg {
    flex-shrink: 0;
}

.abt-us .abt-team__divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #CEDEAD 30%, #AC862D 50%, #CEDEAD 70%, transparent);
    margin: 0 auto 48px;
    max-width: 900px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-us .abt-team__divider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #AC862D;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #CEDEAD;
}

.abt-us .abt-team__tiers-head {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .abt-team__tiers-h3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
    letter-spacing: 0.01em;
}

.abt-us .abt-team__tiers-h3 span {
    background: #CEDEAD;
    padding: 0 8px;
    border-radius: 3px;
}

.abt-us .abt-team__tiers-p {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    margin: 0;
    max-width: 560px;
}

.abt-us .abt-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.abt-us .abt-grid-bg svg {
    width: 100%;
    height: 100%;
}

.abt-us .grid-line {
    animation: abt-grid-pulse 4s ease-in-out infinite;
}

.abt-us .grid-line:nth-child(2) {
    animation-delay: 0.6s;
}

.abt-us .grid-line:nth-child(3) {
    animation-delay: 1.2s;
}

.abt-us .grid-line:nth-child(4) {
    animation-delay: 1.8s;
}

.abt-us .grid-line:nth-child(5) {
    animation-delay: 2.4s;
}

.abt-us .grid-line:nth-child(6) {
    animation-delay: 3s;
}

@keyframes abt-grid-pulse {

    0%,
    100% {
        opacity: 0.07;
    }

    50% {
        opacity: 0.22;
    }
}

.abt-us .abt-team__inner {
    position: relative;
    z-index: 1;
}

.abt-us .abt-shake {
    display: inline-block;
    animation: abt-gentle-shake 6s ease-in-out infinite;
}

@keyframes abt-gentle-shake {

    0%,
    88%,
    100% {
        transform: translateX(0);
    }

    90% {
        transform: translateX(-3px) rotate(-1deg);
    }

    92% {
        transform: translateX(3px) rotate(1deg);
    }

    94% {
        transform: translateX(-2px);
    }

    96% {
        transform: translateX(2px);
    }

    98% {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .abt-us .abt-hero__h1 {
        font-size: 44px;
    }

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

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

    .abt-us .abt-person--break {
        top: 0;
    }
}

@media (max-width: 768px) {
    .abt-us .abt-hero {
        flex-direction: column;
    }

    .abt-us .abt-hero__txt {
        flex: 1 1 auto;
        max-width: 100%;
        padding: 48px 24px 48px;
    }

    .abt-us .abt-hero__img-col {
        flex: 1 1 auto;
        max-width: 100%;
        min-height: 320px;
    }

    .abt-us .abt-hero__h1 {
        font-size: 44px;
    }

    .abt-us .abt-team__grid {
        grid-template-columns: 1fr;
        padding: 0 24px 48px;
        gap: 24px;
    }

    .abt-us .abt-team__intro {
        flex-direction: column;
        gap: 24px;
    }

    .abt-us .abt-team__metrics {
        flex: 1 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abt-us .abt-team__metric {
        flex: 1 1 140px;
    }

    .abt-us .abt-team__cards {
        grid-template-columns: 1fr;
    }

    .abt-us .abt-tiers {
        grid-template-columns: 1fr;
    }

    .abt-us .abt-team__intro-h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .abt-us .abt-hero__h1 {
        font-size: 32px;
    }

    .abt-us .abt-hero__txt {
        padding: 24px 16px;
    }

    .abt-us .abt-team__grid {
        padding: 0 16px 24px;
    }

    .abt-us .abt-team__metrics {
        flex-direction: column;
    }
}

.ctus {
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

.ctus .load-reveal {
    animation: revealBlur 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes revealBlur {
    from {
        opacity: 0;
        filter: blur(6px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.ctus ::selection {
    background: #AC862D;
    color: #1a1a1a;
}

.ctus .pg-top {
    background: #AC862D;
    padding: 48px 48px 24px 48px;
    position: relative;
    overflow: hidden;
}

.ctus .pg-top::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(ellipse 70% 55% at 80% 30%, rgba(243, 244, 240, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.ctus .pg-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #CEDEAD 0px, #CEDEAD 12px, transparent 12px, transparent 24px);
}

.ctus .pg-top__curve {
    position: absolute;
    top: 16px;
    right: 48px;
    width: 180px;
    height: 120px;
    pointer-events: none;
}

.ctus .pg-top__curve svg {
    width: 100%;
    height: 100%;
}

.ctus .pg-top__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #CEDEAD;
    margin-bottom: 16px;
    border: 1px solid rgba(206, 222, 173, 0.4);
    padding: 4px 8px;
    border-radius: 3px;
}

.ctus .pg-top__hdg {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #F3F4F0;
    max-width: 680px;
    margin: 0 0 16px 0;
}

.ctus .pg-top__hdg em {
    font-style: normal;
    background: #CEDEAD;
    color: #2a2a00;
    padding: 0 8px;
    border-radius: 3px;
    display: inline;
}

.ctus .pg-top__sub {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(243, 244, 240, 0.82);
    max-width: 520px;
    margin: 0;
}

.ctus .pg-top__geo {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.ctus .pg-top__geo-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus .pg-top__geo-lbl {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: rgba(206, 222, 173, 0.7);
    text-transform: uppercase;
    font-size: 16px;
}

.ctus .pg-top__geo-val {
    font-size: 16px;
    line-height: 1.8;
    color: #F3F4F0;
    letter-spacing: 0.01em;
}

.ctus .pg-top__geo-val a {
    color: #CEDEAD;
    text-decoration: none;
    border-bottom: 1px solid rgba(206, 222, 173, 0.35);
    transition: border-bottom-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .pg-top__geo-val a:hover {
    border-bottom-color: #CEDEAD;
}

.ctus .form-area {
    background: #F3F4F0;
    padding: 48px 48px 48px 48px;
    position: relative;
}

.ctus .form-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #AC862D 0px, #AC862D 10px, transparent 10px, transparent 22px);
}

.ctus .form-area__grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ctus .form-area__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus .form-area__hdg-wrap {
    display: inline-block;
    background: #CEDEAD;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.ctus .form-area__hdg {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2200;
    margin: 0;
}

.ctus .form-area__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3320;
    max-width: 440px;
    margin: 0;
}

.ctus .form-area__ranked {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .form-area__rank-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .form-area__rank-num {
    font-size: 16px;
    line-height: 1.2;
    color: #AC862D;
    font-weight: 700;
    min-width: 24px;
    letter-spacing: 0.01em;
}

.ctus .form-area__rank-bar-wrap {
    flex: 1;
    background: rgba(172, 134, 45, 0.12);
    border-radius: 3px;
    height: 6px;
    overflow: hidden;
}

.ctus .form-area__rank-bar {
    height: 100%;
    background: #AC862D;
    border-radius: 3px;
    transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .form-area__rank-label {
    font-size: 16px;
    line-height: 1.2;
    color: #3a3320;
    min-width: 160px;
    letter-spacing: 0.01em;
}

.ctus .form-area__right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ctus .frm {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11), inset 0 1px 4px 0 rgba(172, 134, 45, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .frm__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .frm__lbl {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2200;
}

.ctus .frm__inp {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border: 1.5px solid rgba(172, 134, 45, 0.3);
    border-radius: 5px;
    background: #F3F4F0;
    color: #2a2200;
    outline: none;
    transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    box-sizing: border-box;
}

.ctus .frm__inp::placeholder {
    color: rgba(42, 34, 0, 0.38);
    transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .frm__inp:focus::placeholder {
    opacity: 0;
}

.ctus .frm__inp:focus {
    border-color: #AC862D;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.ctus .frm__textarea {
    resize: vertical;
    min-height: 100px;
}

.ctus .frm__rating-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .frm__rating-lbl {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2200;
}

.ctus .frm__stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.ctus .frm__star-input {
    display: none;
}

.ctus .frm__star-lbl {
    cursor: pointer;
    font-size: 32px;
    color: rgba(172, 134, 45, 0.25);
    transition: color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    line-height: 1.2;
}

.ctus .frm__star-lbl svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    display: block;
    transition: fill 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .frm__star-lbl:hover svg,
.ctus .frm__star-lbl:hover~.ctus .frm__star-lbl svg {
    fill: #AC862D;
}

.ctus .frm__star-lbl:hover {
    color: #AC862D;
    transform: scale(1.18);
}

.ctus .frm__star-input:checked+.frm__star-lbl svg {
    fill: #AC862D;
}

.ctus .frm__star-input:checked~.frm__star-lbl svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.ctus .star-group input[type="radio"] {
    display: none;
}

.ctus .star-group label {
    cursor: pointer;
    font-size: 32px;
    line-height: 1.2;
    color: rgba(172, 134, 45, 0.25);
    transition: color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
}

.ctus .star-group label svg {
    width: 32px;
    height: 32px;
    fill: rgba(172, 134, 45, 0.25);
    display: block;
    transition: fill 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .star-group label:hover svg,
.ctus .star-group label:hover~label svg {
    fill: #AC862D;
}

.ctus .star-group label:hover {
    transform: scale(1.18);
}

.ctus .star-group input[type="radio"]:checked~label svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group input[type="radio"]:checked+label svg {
    fill: #AC862D;
}

.ctus .star-group:has(input:checked) label svg {
    fill: #AC862D;
}

.ctus .star-group input[type="radio"]:checked~label svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group:has(#r5:checked) label svg {
    fill: #AC862D;
}

.ctus .star-group:has(#r4:checked) label[for="r5"] svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group:has(#r4:checked) label[for="r4"] svg,
.ctus .star-group:has(#r4:checked) label[for="r3"] svg,
.ctus .star-group:has(#r4:checked) label[for="r2"] svg,
.ctus .star-group:has(#r4:checked) label[for="r1"] svg {
    fill: #AC862D;
}

.ctus .star-group:has(#r3:checked) label[for="r5"] svg,
.ctus .star-group:has(#r3:checked) label[for="r4"] svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group:has(#r3:checked) label[for="r3"] svg,
.ctus .star-group:has(#r3:checked) label[for="r2"] svg,
.ctus .star-group:has(#r3:checked) label[for="r1"] svg {
    fill: #AC862D;
}

.ctus .star-group:has(#r2:checked) label[for="r5"] svg,
.ctus .star-group:has(#r2:checked) label[for="r4"] svg,
.ctus .star-group:has(#r2:checked) label[for="r3"] svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group:has(#r2:checked) label[for="r2"] svg,
.ctus .star-group:has(#r2:checked) label[for="r1"] svg {
    fill: #AC862D;
}

.ctus .star-group:has(#r1:checked) label[for="r5"] svg,
.ctus .star-group:has(#r1:checked) label[for="r4"] svg,
.ctus .star-group:has(#r1:checked) label[for="r3"] svg,
.ctus .star-group:has(#r1:checked) label[for="r2"] svg {
    fill: rgba(172, 134, 45, 0.25);
}

.ctus .star-group:has(#r1:checked) label[for="r1"] svg {
    fill: #AC862D;
}

.ctus .frm__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.ctus .frm__checkbox {
    margin-top: 4px;
    accent-color: #AC862D;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus .frm__privacy-text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3320;
    margin: 0;
}

.ctus .frm__privacy-text a {
    color: #AC862D;
    text-decoration: none;
    border-bottom: 1px solid rgba(172, 134, 45, 0.35);
    transition: border-bottom-width 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .frm__privacy-text a:hover {
    border-bottom-width: 2px;
}

.ctus .frm__submit {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: linear-gradient(120deg, #AC862D 0%, #c9a845 100%);
    color: #F3F4F0;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.ctus .frm__submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(240deg, #AC862D 0%, #c9a845 100%);
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 5px;
}

.ctus .frm__submit:hover::after {
    opacity: 1;
}

.ctus .frm__submit:hover {
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-1px);
}

.ctus .frm__submit:active {
    transform: translateY(0);
}

.ctus .frm__submit span {
    position: relative;
    z-index: 1 !important;
}

.ctus .frm__submit svg {
    position: relative;
    z-index: 1 !important;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .frm__submit:hover svg {
    transform: translateX(4px);
}

.ctus .frm__submit:focus-visible {
    outline: 2px solid #AC862D;
    outline-offset: 3px;
}

.ctus .compare-area {
    background: #fff;
    padding: 48px 48px 48px 48px;
    position: relative;
}

.ctus .compare-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #CEDEAD 0px, #CEDEAD 14px, transparent 14px, transparent 28px);
}

.ctus .compare-area__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus .compare-area__hdg-wrap {
    display: inline-block;
    background: #CEDEAD;
    padding: 4px 8px;
    border-radius: 3px;
}

.ctus .compare-area__hdg {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2a2200;
    margin: 0;
}

.ctus .compare-area__sub {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3320;
    max-width: 600px;
    margin: 0;
}

.ctus .compare-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.ctus .compare-col {
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.ctus .compare-col--a {
    background: #F3F4F0;
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06), inset 0 1px 3px 0 rgba(172, 134, 45, 0.06);
    border: 1.5px solid rgba(172, 134, 45, 0.15);
}

.ctus .compare-col--b {
    background: #AC862D;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    border: 1.5px solid rgba(172, 134, 45, 0.4);
    margin-top: 24px;
}

.ctus .compare-col__badge {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 4px 8px;
    border-radius: 3px;
    align-self: flex-start;
}

.ctus .compare-col--a .compare-col__badge {
    background: rgba(172, 134, 45, 0.12);
    color: #AC862D;
    border: 1px solid rgba(172, 134, 45, 0.25);
}

.ctus .compare-col--b .compare-col__badge {
    background: rgba(243, 244, 240, 0.18);
    color: #F3F4F0;
    border: 1px solid rgba(243, 244, 240, 0.3);
}

.ctus .compare-col__title {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0;
}

.ctus .compare-col--a .compare-col__title {
    color: #2a2200;
}

.ctus .compare-col--b .compare-col__title {
    color: #F3F4F0;
}

.ctus .compare-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .compare-col__list li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    padding-left: 16px;
    position: relative;
}

.ctus .compare-col--a .compare-col__list li {
    color: #3a3320;
}

.ctus .compare-col--a .compare-col__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(172, 134, 45, 0.45);
}

.ctus .compare-col--b .compare-col__list li {
    color: rgba(243, 244, 240, 0.9);
}

.ctus .compare-col--b .compare-col__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CEDEAD;
}

.ctus .compare-col__note {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(172, 134, 45, 0.18);
}

.ctus .compare-col--a .compare-col__note {
    color: #3a3320;
    border-top-color: rgba(172, 134, 45, 0.18);
}

.ctus .compare-col--b .compare-col__note {
    color: rgba(243, 244, 240, 0.78);
    border-top-color: rgba(243, 244, 240, 0.18);
}

.ctus .compare-area__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    border-top: 1.5px dashed rgba(172, 134, 45, 0.3);
}

.ctus .compare-area__bottom-txt {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3320;
    margin: 0;
    flex: 1;
}

.ctus .compare-area__bottom-txt span {
    border: 1px solid #AC862D;
    border-radius: 3px;
    padding: 0 4px;
    color: #AC862D;
}

.ctus .compare-area__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #AC862D;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1.5px solid rgba(172, 134, 45, 0.35);
    transition: border-bottom-width 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.ctus .compare-area__link:hover {
    border-bottom-width: 3px;
    color: #8a6a1f;
}

.ctus .compare-area__link svg {
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus .compare-area__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .ctus .form-area__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ctus .compare-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ctus .compare-col--b {
        margin-top: 0;
    }

    .ctus .pg-top__hdg {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ctus .pg-top {
        padding: 48px 24px 24px 24px;
    }

    .ctus .form-area {
        padding: 24px 16px;
    }

    .ctus .compare-area {
        padding: 24px 16px;
    }

    .ctus .pg-top__geo {
        flex-direction: column;
        gap: 16px;
    }

    .ctus .compare-area__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ctus .pg-top__hdg {
        font-size: 32px;
    }

    .ctus .frm {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .ctus .pg-top__hdg {
        font-size: 32px;
    }

    .ctus .form-area__hdg {
        font-size: 32px;
    }

    .ctus .compare-area__hdg {
        font-size: 32px;
    }

    .ctus .pg-top {
        padding: 24px 16px 16px 16px;
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #F3F4F0;
    position: relative;
    overflow: hidden;
}

.succ-page::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 420px;
    height: 320px;
    background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(172, 134, 45, 0.10) 0%, rgba(206, 222, 173, 0.07) 60%, transparent 100%);
    pointer-events: none;
}

.succ-page::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -80px;
    width: 340px;
    height: 260px;
    background: radial-gradient(ellipse 60% 50% at 20% 80%, rgba(206, 222, 173, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.succ-page .succ-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    padding: 48px;
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    box-sizing: border-box;
}

.succ-page .succ-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(206, 222, 173, 0.45) 0%, rgba(172, 134, 45, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(172, 134, 45, 0.06);
    flex-shrink: 0;
}

.succ-page .succ-card__icon {
    width: 32px;
    height: 32px;
    display: block;
}

.succ-page .succ-card__label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #AC862D;
    font-weight: 600;
    background: rgba(172, 134, 45, 0.09);
    border-radius: 5px;
    padding: 4px 16px;
    display: inline-block;
}

.succ-page .succ-card__heading {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #1b1b18;
    font-weight: 700;
    margin: 0;
}

.succ-page .succ-card__text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: #3a3a35;
    margin: 0;
}

.succ-page .succ-card__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(172, 134, 45, 0.22) 0%, rgba(206, 222, 173, 0.30) 60%, transparent 100%);
    border: none;
}

.succ-page .succ-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.succ-page .succ-card__meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #3a3a35;
}

.succ-page .succ-card__meta-row svg {
    flex-shrink: 0;
    color: #AC862D;
}

.succ-page .succ-card__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.succ-page .succ-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.succ-page .succ-card__btn--primary {
    background: linear-gradient(120deg, #AC862D 0%, #c9a03a 100%);
    color: #fff;
    box-shadow: 0 6px 14px 0 rgba(172, 134, 45, 0.11);
}

.succ-page .succ-card__btn--primary:hover,
.succ-page .succ-card__btn--primary:focus-visible {
    background: linear-gradient(200deg, #c9a03a 0%, #AC862D 100%);
    box-shadow: 0 12px 52px 0 rgba(172, 134, 45, 0.14);
    transform: translateY(-2px);
    outline: none;
}

.succ-page .succ-card__btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.succ-page .succ-card__btn--secondary {
    background: #F3F4F0;
    color: #1b1b18;
    border: 1.5px solid rgba(172, 134, 45, 0.22);
    box-shadow: 0 2px 4px 0 rgba(172, 134, 45, 0.06);
}

.succ-page .succ-card__btn--secondary:hover,
.succ-page .succ-card__btn--secondary:focus-visible {
    background: rgba(206, 222, 173, 0.28);
    border-color: #AC862D;
    transform: translateY(-1px);
    outline: none;
}

.succ-page .succ-card__btn--secondary:active {
    transform: translateY(0);
}

.succ-page .succ-card__btn svg {
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.succ-page .succ-card__btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .succ-page .succ-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .succ-page .succ-card__heading {
        font-size: 32px;
    }

    .succ-page .succ-card__actions {
        flex-direction: column;
    }

    .succ-page .succ-card__btn {
        width: 100%;
        justify-content: center;
    }
}