* {
    box-sizing: border-box
}

html {
    font-size: 100%
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Roboto Slab', serif;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #131212
}

.hd {
    background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
    border-bottom: 2px solid #EE8D01;
    padding: 24px 24px 12px;
    position: relative
}

.hd__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.hd__logo-hold {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #0A6854;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 3px 0 #0e685412 0 4px 20px 0 #0e685414;
    display: flex;
    align-items: center;
    justify-content: center
}

.hd__logo {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.hd__name {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #0A6854;
    margin: 0;
    letter-spacing: -.02em;
    text-align: center
}

.hd__region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    background: linear-gradient(90deg, #ee8d0114 0%, #0a685414 100%);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ee8d0133;
    font-weight: 500
}

.hd__region::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #EE8D01;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ee8d0126
}

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

.hd__menu-link {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: #131212;
    text-decoration: none;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.hd__menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #EE8D01 0%, #d67d01 100%);
    transition: height .65s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1
}

.hd__menu-link:hover {
    border-color: #EE8D01;
    color: #fff;
    box-shadow: 0 4px 20px 0 #ee8d0114 0 9px 52px 0 #ee8d0121
}

.hd__menu-link:hover::before {
    height: 100%
}

.hd__menu-link:focus {
    outline: none;
    box-shadow: 0 0 0 4px #ee8d0140;
    border-color: #EE8D01
}

@media (min-width: 480px) {
    .hd {
        padding: 40px 40px 24px
    }

    .hd__brand {
        gap: 24px;
        margin-bottom: 40px
    }

    .hd__logo-hold {
        width: 56px;
        height: 56px;
        padding: 12px
    }

    .hd__name {
        font-size: 56px
    }

    .hd__menu {
        gap: 24px
    }

    .hd__menu-link {
        padding: 12px 40px
    }
}

@media (min-width: 960px) {
    .hd {
        padding: 40px 80px 24px
    }

    .hd__menu {
        gap: 40px
    }
}

.ft {
    background: linear-gradient(180deg, #0A6854 0%, #084738 100%);
    color: #fff;
    padding: 40px 24px 24px;
    margin-top: 80px
}

.ft__shell {
    max-width: 1200px;
    margin: 0 auto
}

.ft__top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ffffff26
}

.ft__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.ft__logo-hold {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #EE8D01;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.ft__logo {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.ft__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0;
    font-weight: 500;
    text-align: center
}

.ft__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center
}

.ft__menu-link {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffffe6;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .5s ease-in-out, border-color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ft__menu-link:hover {
    color: #EE8D01;
    border-bottom-color: #EE8D01
}

.ft__menu-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ee8d0166;
    border-radius: 6px
}

.ft__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

.ft__contact-title {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    color: #EE8D01;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ft__contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffd9;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.ft__contact-item:hover {
    color: #EE8D01
}

.ft__contact-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ee8d0166;
    border-radius: 6px
}

.ft__contact-icon {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.ft__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center
}

.ft__copy {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffb3;
    margin: 0;
    font-weight: 400
}

.ft__address {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffa6;
    margin: 0;
    font-style: normal;
    font-weight: 400
}

@media (min-width: 480px) {
    .ft {
        padding: 80px 40px 40px
    }

    .ft__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start
    }

    .ft__brand {
        align-items: flex-start
    }

    .ft__tagline {
        text-align: left
    }

    .ft__menu {
        align-items: flex-start
    }

    .ft__contact {
        align-items: flex-end
    }

    .ft__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }
}

@media (min-width: 960px) {
    .ft {
        padding: 80px 80px 40px
    }

    .ft__top {
        gap: 80px
    }

    .ft__menu {
        gap: 24px
    }

    .ft__contact {
        gap: 24px
    }
}

.consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
    border-top: 3px solid #EE8D01;
    box-shadow: 0 -4px 20px 0 #ee8d0114 0 -9px 52px 0 #ee8d0121;
    padding: 24px;
    z-index: 4000;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent.visible {
    opacity: 1;
    transform: translateY(0)
}

.consent__shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.consent__text {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.consent__text strong {
    font-weight: 700;
    color: #0A6854
}

.consent__list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.consent__list li {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    padding-left: 24px;
    position: relative
}

.consent__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #EE8D01;
    border-radius: 50%
}

.consent__actions {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.consent__btn {
    padding: 12px 40px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.consent__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height .65s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1
}

.consent__btn--primary {
    background: #EE8D01;
    color: #fff;
    border-color: #EE8D01
}

.consent__btn--primary::before {
    background: linear-gradient(180deg, #d67d01 0%, #c77001 100%)
}

.consent__btn--primary:hover {
    box-shadow: 0 4px 20px 0 #ee8d0114 0 9px 52px 0 #ee8d0121
}

.consent__btn--primary:hover::before {
    height: 100%
}

.consent__btn--primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px #ee8d0140
}

.consent__btn--secondary {
    background: #fff;
    color: #131212;
    border-color: #0A6854
}

.consent__btn--secondary::before {
    background: linear-gradient(180deg, #0A6854 0%, #084738 100%)
}

.consent__btn--secondary:hover {
    color: #fff;
    border-color: #0A6854;
    box-shadow: 0 4px 20px 0 #0a685414 0 9px 52px 0 #0a685421
}

.consent__btn--secondary:hover::before {
    height: 100%
}

.consent__btn--secondary:focus {
    outline: none;
    box-shadow: 0 0 0 4px #0a685440
}

@media (min-width: 480px) {
    .consent {
        padding: 40px
    }

    .consent__shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }

    .consent__actions {
        flex-direction: row;
        gap: 24px;
        flex-shrink: 0
    }
}

@media (min-width: 960px) {
    .consent {
        padding: 40px 80px
    }
}

.policy-data {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px
}

@media (max-width: 960px) {
    .policy-data {
        padding: 40px 24px
    }
}

@media (max-width: 480px) {
    .policy-data {
        padding: 24px 12px
    }
}

.policy-data h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #131212
}

.policy-data h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 80px;
    margin-bottom: 24px;
    color: #131212
}

.policy-data h3 {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #131212;
    font-weight: 600
}

@media (max-width: 960px) {
    .policy-data h1 {
        font-size: 30px;
        margin-bottom: 24px
    }

    .policy-data h2 {
        font-size: 15px;
        margin-top: 40px;
        margin-bottom: 12px
    }
}

.policy-data p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #131212
}

.policy-data ul,
.policy-data ol {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 40px
}

@media (max-width: 480px) {

    .policy-data ul,
    .policy-data ol {
        padding-left: 24px
    }
}

.policy-data li {
    margin-bottom: 12px;
    color: #131212
}

.policy-data li:last-child {
    margin-bottom: 0
}

.policy-data strong,
.policy-data b {
    font-weight: 600;
    color: #131212
}

.policy-data em,
.policy-data i {
    font-style: italic
}

.policy-data a {
    color: #0A6854;
    text-decoration: underline;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.policy-data a:hover {
    color: #EE8D01
}

.policy-data a:focus {
    outline: 2px solid #EE8D01;
    outline-offset: 2px
}

.policy-data div {
    margin-bottom: 24px
}

.policy-data table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6
}

.policy-data th,
.policy-data td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #0a685426
}

.policy-data th {
    font-weight: 600;
    color: #131212;
    background-color: #0a68540d
}

.policy-data td {
    color: #131212
}

@media (max-width: 480px) {
    .policy-data table {
        font-size: 14px
    }

    .policy-data th,
    .policy-data td {
        padding: 6px
    }
}

.policy-data blockquote {
    margin: 40px 0;
    padding: 24px;
    background-color: #ee8d010d;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    color: #131212
}

@media (max-width: 480px) {
    .policy-data blockquote {
        margin: 24px 0;
        padding: 12px
    }
}

.policy-data hr {
    border: none;
    height: 1px;
    background-color: #0a685426;
    margin: 80px 0
}

@media (max-width: 960px) {
    .policy-data hr {
        margin: 40px 0
    }
}

.availability {
    background: #fff;
    color: #131212;
    overflow-x: clip
}

.availability__intro {
    position: relative;
    padding: 80px 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden
}

.availability__intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.666%;
    z-index: 1
}

.availability__intro-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .08;
    pointer-events: none
}

.availability__intro-dots::before,
.availability__intro-dots::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #EE8D01;
    border-radius: 50%
}

.availability__intro-dots::before {
    top: 12%;
    left: 8%;
    box-shadow: 240px 80px 0 #0A6854, 480px 40px 0 #EE8D01, 120px 160px 0 #0A6854, 360px 200px 0 #EE8D01, 600px 120px 0 #0A6854, 720px 180px 0 #EE8D01, 180px 280px 0 #0A6854, 420px 320px 0 #EE8D01, 540px 260px 0 #0A6854
}

.availability__intro-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr
}

.availability__intro-text {
    padding: 0 0 40px
}

.availability__intro-heading {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    font-weight: 700
}

.availability__intro-accent {
    color: #EE8D01
}

.availability__intro-para {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    max-width: 680px
}

.availability__intro-para:last-child {
    margin-bottom: 0
}

.availability__intro-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 16/9
}

.availability__intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    filter: saturate(0.7);
    transition: filter .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability__intro-img:hover {
    filter: saturate(1)
}

.availability__schedule {
    padding: 80px 24px;
    background: linear-gradient(135deg, #0e685408 0%, transparent 60%);
    position: relative
}

.availability__schedule::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at bottom right, #ee8d0114 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.availability__schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.availability__schedule-header {
    margin: 0 0 40px;
    text-align: center
}

.availability__schedule-title {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -.01em
}

.availability__schedule-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #131212bf
}

.availability__schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 0 40px
}

.availability__schedule-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 #ee8d0112 0 4px 20px 0 #ee8d0114;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.availability__schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #EE8D01 0%, #0A6854 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability__schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px 0 #ee8d0114 0 9px 52px 0 #ee8d0121
}

.availability__schedule-card:hover::before {
    transform: scaleY(1)
}

.availability__schedule-card-label {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #0A6854;
    margin: 0 0 12px;
    font-weight: 600
}

.availability__schedule-card-time {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 6px;
    color: #131212
}

.availability__schedule-card-detail {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #131212b3
}

.availability__schedule-offset {
    transform: translateY(40px)
}

.availability__schedule-note {
    background: #ee8d010f;
    padding: 24px;
    border-radius: 10px;
    text-align: center
}

.availability__schedule-note-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #131212
}

.availability__schedule-note-highlight {
    color: #EE8D01;
    font-weight: 600
}

.availability__team {
    padding: 80px 24px;
    background: #fff;
    position: relative
}

.availability__team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #0A6854 50%, transparent 100%)
}

.availability__team::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #EE8D01 50%, transparent 100%)
}

.availability__team-container {
    max-width: 1200px;
    margin: 0 auto
}

.availability__team-header {
    margin: 0 0 40px
}

.availability__team-heading {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -.01em
}

.availability__team-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #131212;
    text-stroke: 1.5px #131212
}

.availability__team-intro {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 720px
}

.availability__team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start
}

.availability__team-member {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.availability__team-portrait-wrap {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden;
    position: relative
}

.availability__team-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: saturate(0.7);
    transition: filter .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.availability__team-portrait:hover {
    filter: saturate(1);
    transform: scale(1.05)
}

.availability__team-info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.availability__team-name {
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: #131212;
    text-transform: uppercase;
    letter-spacing: .05em
}

.availability__team-role {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #0A6854;
    font-weight: 600
}

.availability__team-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #131212bf
}

.availability__team-contact {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.availability__team-contact-item {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #131212b3
}

.availability__team-contact-icon {
    width: 18px;
    height: 18px;
    fill: #EE8D01
}

@media (min-width: 480px) {
    .availability__intro {
        padding: 80px 40px 40px
    }

    .availability__schedule {
        padding: 80px 40px
    }

    .availability__team {
        padding: 80px 40px
    }
}

@media (min-width: 960px) {
    .availability__intro-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px
    }

    .availability__intro-text {
        padding: 0
    }

    .availability__intro-img-wrap {
        max-width: none
    }

    .availability__schedule-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .availability__schedule-offset {
        transform: translateY(40px)
    }

    .availability__team-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width: 1440px) {
    .availability__intro {
        padding: 80px 24px 40px
    }

    .availability__schedule {
        padding: 80px 24px
    }

    .availability__team {
        padding: 80px 24px
    }
}

@media (max-width: 959px) {
    .availability__intro-heading {
        font-size: 30px
    }

    .availability__schedule-grid {
        grid-template-columns: 1fr
    }

    .availability__schedule-offset {
        transform: none
    }

    .availability__team-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 479px) {
    .availability__intro {
        padding: 40px 24px 24px
    }

    .availability__intro-heading {
        font-size: 30px
    }

    .availability__schedule {
        padding: 40px 24px
    }

    .availability__schedule-title {
        font-size: 30px
    }

    .availability__schedule-card-time {
        font-size: 30px
    }

    .availability__team {
        padding: 40px 24px
    }

    .availability__team-heading {
        font-size: 30px
    }
}

.mechanism {
    background: #FEFEFE;
    color: #131212;
    overflow-x: clip
}

.mechanism__intro {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(156deg, #EE8D01 0%, #0A6854 100%);
    overflow: hidden
}

.mechanism__intro-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.mechanism__intro-decoration {
    position: absolute;
    width: 680px;
    height: 680px;
    background: #ffffff14;
    border-radius: 32px;
    top: -140px;
    right: -180px;
    transform: rotate(28deg);
    pointer-events: none
}

.mechanism__intro-heading {
    font-size: 56px;
    line-height: 1.2;
    color: #FEFEFE;
    margin: 0 0 24px;
    max-width: 840px;
    letter-spacing: -.02em
}

.mechanism__intro-text {
    font-size: 15px;
    line-height: 1.6;
    color: #FEFEFE;
    margin: 0;
    max-width: 680px;
    opacity: .95
}

.mechanism__intro-text:first-letter {
    font-size: 30px;
    color: #131212;
    font-weight: 600
}

.mechanism__steps {
    padding: 80px 24px;
    background: #FEFEFE;
    position: relative
}

.mechanism__steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #0A6854 50%, transparent 100%)
}

.mechanism__steps-container {
    max-width: 1200px;
    margin: 0 auto
}

.mechanism__steps-header {
    text-align: center;
    margin: 0 0 80px
}

.mechanism__steps-title {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px;
    letter-spacing: -.01em;
    font-weight: 700
}

.mechanism__steps-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .7
}

.mechanism__steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px
}

.mechanism__step {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: #FEFEFE;
    border: 1px solid #0a68541f;
    border-radius: 18px;
    position: relative;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.mechanism__step:hover {
    box-shadow: 0 9px 52px 0 #ee8d0121;
    transform: translateY(-6px)
}

.mechanism__step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 56px;
    line-height: 1;
    color: #EE8D01;
    opacity: .15;
    font-weight: 700;
    pointer-events: none
}

.mechanism__step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EE8D01 0%, #0A6854 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mechanism__step-icon svg {
    width: 28px;
    height: 28px;
    fill: #FEFEFE
}

.mechanism__step-content {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mechanism__step-label {
    font-size: 14px;
    line-height: 1.2;
    color: #EE8D01;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
    font-weight: 600
}

.mechanism__step-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    letter-spacing: -.01em;
    font-weight: 700
}

.mechanism__step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .8
}

.mechanism__showcase {
    padding: 80px 24px;
    background: #F7F7F7;
    position: relative
}

.mechanism__showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #EE8D01 50%, transparent 100%)
}

.mechanism__showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start
}

.mechanism__showcase-visual {
    position: relative
}

.mechanism__showcase-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 9px 52px 0 #0a685421;
    transition: box-shadow .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.mechanism__showcase-image:hover {
    box-shadow: 0 4px 20px 0 #ee8d0114 0 9px 52px 0 #0a685421;
    transform: translateY(-12px)
}

.mechanism__showcase-content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.mechanism__showcase-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    letter-spacing: -.01em;
    font-weight: 700
}

.mechanism__showcase-text {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.mechanism__showcase-text:first-letter {
    font-size: 30px;
    color: #EE8D01;
    font-weight: 600
}

.mechanism__showcase-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0 0
}

.mechanism__showcase-feature {
    display: flex;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: #FEFEFE;
    border-radius: 10px;
    border: 1px solid #ee8d011f;
    transition: border-color .5s ease-in-out
}

.mechanism__showcase-feature:hover {
    border-color: #ee8d0166
}

.mechanism__showcase-feature-icon {
    width: 40px;
    height: 40px;
    background: #EE8D01;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mechanism__showcase-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #FEFEFE
}

.mechanism__showcase-feature-text {
    flex: 1
}

.mechanism__showcase-feature-title {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 6px;
    font-weight: 600
}

.mechanism__showcase-feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .7
}

.mechanism__experts {
    padding: 80px 24px;
    background: #FEFEFE;
    position: relative;
    overflow: hidden
}

.mechanism__experts-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 90%, #ee8d0114 0%, transparent 60%);
    pointer-events: none
}

.mechanism__experts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.mechanism__experts-header {
    margin: 0 0 40px
}

.mechanism__experts-title {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px;
    letter-spacing: -.01em;
    font-weight: 700
}

.mechanism__experts-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    max-width: 740px;
    opacity: .8
}

.mechanism__experts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px
}

.mechanism__expert {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: #fff9;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #0a68541f;
    border-radius: 18px;
    position: relative;
    transition: background .6s cubic-bezier(0.22, 1, 0.36, 1), border-color .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.mechanism__expert:hover {
    background: #ffffffe6;
    border-color: #ee8d014d
}

.mechanism__expert-profile {
    display: flex;
    gap: 24px;
    align-items: start
}

.mechanism__expert-portrait {
    width: 120px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px 0 #0a685414
}

.mechanism__expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.mechanism__expert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mechanism__expert-name {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700
}

.mechanism__expert-role {
    font-size: 14px;
    line-height: 1.6;
    color: #EE8D01;
    margin: 0;
    font-weight: 600
}

.mechanism__expert-credentials {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 12px 0 0;
    opacity: .7
}

.mechanism__expert-statement {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .85
}

.mechanism__faq {
    padding: 80px 24px;
    background: #F7F7F7
}

.mechanism__faq-container {
    max-width: 1200px;
    margin: 0 auto
}

.mechanism__faq-header {
    text-align: center;
    margin: 0 0 80px
}

.mechanism__faq-title {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px;
    letter-spacing: -.01em;
    font-weight: 700
}

.mechanism__faq-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .7
}

.mechanism__faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.mechanism__faq-item {
    background: #FEFEFE;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #0a685414;
    box-shadow: 0 2px 3px 0 #0a685412;
    transition: box-shadow .5s ease-in-out
}

.mechanism__faq-item:hover {
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.mechanism__faq-question {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px;
    font-weight: 700;
    display: flex;
    align-items: start;
    gap: 12px
}

.mechanism__faq-question::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #EE8D01;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 6px;
    animation: mechanism-pulse 3s cubic-bezier(0.22, 1, 0.36, 1) infinite
}

@keyframes mechanism-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 #ee8d0166
    }

    50% {
        box-shadow: 0 0 0 12px #ee8d0100
    }
}

.mechanism__faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    opacity: .8
}

@media (min-width: 480px) {
    .mechanism__intro {
        padding: 120px 40px
    }

    .mechanism__steps {
        padding: 120px 40px
    }

    .mechanism__showcase {
        padding: 120px 40px
    }

    .mechanism__experts {
        padding: 120px 40px
    }

    .mechanism__faq {
        padding: 120px 40px
    }

    .mechanism__step-number {
        font-size: 80px
    }
}

@media (min-width: 960px) {
    .mechanism__intro {
        padding: 160px 40px
    }

    .mechanism__intro-heading {
        max-width: 960px
    }

    .mechanism__intro-text {
        max-width: 820px
    }

    .mechanism__steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    .mechanism__showcase-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center
    }

    .mechanism__experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

@media (min-width: 1440px) {
    .mechanism__intro-decoration {
        width: 920px;
        height: 920px;
        right: -220px;
        top: -180px
    }

    .mechanism__steps-grid {
        gap: 40px
    }

    .mechanism__showcase-container {
        gap: 120px
    }
}

.apie {
    background: #fff;
    color: #131212;
    overflow-x: clip
}

.apie .split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative
}

.apie .split-intro::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 120px;
    height: 120px;
    border: 2px solid #EE8D01;
    pointer-events: none;
    z-index: 2
}

.apie .split-intro::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    border: 1px solid #0A6854;
    pointer-events: none;
    z-index: 2
}

.apie .left-pane {
    background: #0A6854;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    position: relative
}

.apie .right-pane {
    background: #EE8D01;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    position: relative
}

.apie .intro-h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.02em
}

.apie .intro-h2 {
    font-size: 30px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    letter-spacing: -.01em;
    opacity: .95
}

.apie .intro-h3 {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-weight: 400
}

@media (max-width: 960px) {
    .apie .split-intro {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .apie .left-pane,
    .apie .right-pane {
        padding: 40px 24px
    }

    .apie .intro-h1 {
        font-size: 30px
    }

    .apie .intro-h2 {
        font-size: 15px
    }
}

.apie .story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(147deg, #ee8d0108 0%, #fff0 100%)
}

.apie .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.apie .story-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.apie .story-h {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.apie .story-caption {
    font-size: 14px;
    line-height: 2;
    color: #0A6854;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-bottom: 1px solid #0A6854;
    padding-bottom: 6px;
    display: inline-block;
    margin: 0 0 12px
}

.apie .story-p {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.apie .story-p span {
    color: #EE8D01 !important;
    text-transform: uppercase;
    font-weight: 600
}

.apie .story-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 9px 52px 0 #0a685421;
    animation: border-glow .7s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

@keyframes border-glow {
    from {
        box-shadow: 0 0 0 0 #0a685400
    }

    to {
        box-shadow: 0 9px 52px 0 #0a685421
    }
}

.apie .story-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .story-img-wrap:hover .story-img {
    transform: scale(1.05)
}

@media (max-width: 960px) {
    .apie .story-wrapper {
        padding: 40px 24px
    }

    .apie .story-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .apie .story-img {
        height: 320px
    }
}

.apie .roles-section {
    background: #fff;
    padding: 80px 40px
}

.apie .roles-container {
    max-width: 1200px;
    margin: 0 auto
}

.apie .roles-header {
    text-align: center;
    margin-bottom: 80px
}

.apie .roles-h {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.apie .roles-caption {
    font-size: 14px;
    line-height: 2;
    color: #EE8D01;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-bottom: 1px solid #EE8D01;
    padding-bottom: 6px;
    display: inline-block;
    margin: 0
}

.apie .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.apie .role-card {
    background: #fff;
    border: 2px solid #0A6854;
    border-radius: 10px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative
}

.apie .role-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    border: 2px solid #EE8D01;
    opacity: 0;
    transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.apie .role-card:hover {
    border-color: transparent;
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.apie .role-card:hover::before {
    opacity: 1
}

.apie .role-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    background: linear-gradient(147deg, #EE8D01 0%, #0A6854 100%);
    margin: 0 auto
}

.apie .role-icon {
    width: 32px;
    height: 32px;
    fill: #fff
}

.apie .role-label {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em
}

.apie .role-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    text-align: center
}

@media (max-width: 960px) {
    .apie .roles-section {
        padding: 40px 24px
    }

    .apie .roles-header {
        margin-bottom: 40px
    }

    .apie .roles-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.apie .contact-band {
    background: url(/blog_images/v013.jpg) center/cover no-repeat;
    position: relative;
    padding: 80px 40px
}

.apie .contact-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffffeb;
    z-index: 1
}

.apie .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.apie .contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.apie .contact-intro {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.apie .contact-h {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.apie .contact-caption {
    font-size: 14px;
    line-height: 2;
    color: #0A6854;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-bottom: 1px solid #0A6854;
    padding-bottom: 6px;
    display: inline-block;
    margin: 0
}

.apie .contact-p {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.apie .team-member {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.apie .member-img-wrap {
    width: 120px;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 3px 0 #ee8d0112;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .member-img-wrap:hover {
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.apie .member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .member-img-wrap:hover .member-img {
    transform: scale(1.08)
}

.apie .member-info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.apie .member-name {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700
}

.apie .member-role {
    font-size: 14px;
    line-height: 1.6;
    color: #0A6854;
    margin: 0
}

.apie .contact-form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 9px 52px 0 #0a685421
}

.apie .form-h {
    font-size: 15px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

.apie .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.apie .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.apie .form-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .03em
}

.apie .form-input {
    padding: 12px;
    border: 1px solid #0A6854;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    background: #fff;
    transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out
}

.apie .form-input::placeholder {
    color: #13121266;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .02em
}

.apie .form-input:focus {
    outline: none;
    border-color: #EE8D01;
    box-shadow: 0 0 0 3px #ee8d011a
}

.apie .form-select {
    padding: 12px;
    border: 1px solid #0A6854;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    background: #fff;
    cursor: pointer;
    transition: border-color .4s ease-in-out, box-shadow .4s ease-in-out
}

.apie .form-select:focus {
    outline: none;
    border-color: #EE8D01;
    box-shadow: 0 0 0 3px #ee8d011a
}

.apie .privacy-check {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: start;
    margin: 24px 0
}

.apie .privacy-check input[type="checkbox"] {
    margin-top: 6px;
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #EE8D01
}

.apie .privacy-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.apie .privacy-label a {
    color: #0A6854;
    text-decoration: underline;
    transition: color .4s ease-in-out
}

.apie .privacy-label a:hover {
    color: #EE8D01
}

.apie .submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: #EE8D01;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .submit-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #0A6854;
    transition: height .5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1
}

.apie .submit-btn:hover::before {
    height: 100%
}

.apie .submit-btn:hover {
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.apie .submit-btn span {
    position: relative;
    z-index: 2
}

@media (max-width: 960px) {
    .apie .contact-band {
        padding: 40px 24px
    }

    .apie .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .apie .form-row {
        grid-template-columns: 1fr
    }

    .apie .contact-form-wrap {
        padding: 24px
    }
}

.apie .metrics-section {
    background: radial-gradient(circle at bottom right, #0a68540f 0%, #fff0 70%);
    padding: 80px 40px
}

.apie .metrics-container {
    max-width: 1200px;
    margin: 0 auto
}

.apie .metrics-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start
}

.apie .metrics-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.apie .metrics-h {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.apie .metrics-caption {
    font-size: 14px;
    line-height: 2;
    color: #EE8D01;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-bottom: 1px solid #EE8D01;
    padding-bottom: 6px;
    display: inline-block;
    margin: 0 0 12px
}

.apie .metrics-p {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.apie .metrics-img-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.apie .metrics-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 3px 0 #0a685412;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .metrics-img-wrap:hover {
    box-shadow: 0 9px 52px 0 #0a685421;
    transform: translateY(-6px)
}

.apie .metrics-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .metrics-img-wrap:hover .metrics-img {
    transform: scale(1.08)
}

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

.apie .stat-card {
    background: #fff;
    border: 1px solid #0a685433;
    border-radius: 10px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.apie .stat-card:hover {
    border-color: #EE8D01;
    box-shadow: 0 4px 20px 0 #ee8d0114
}

.apie .stat-num {
    font-size: 56px;
    line-height: 1.2;
    color: #EE8D01;
    margin: 0;
    font-weight: 700
}

.apie .stat-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .05em
}

@media (max-width: 960px) {
    .apie .metrics-section {
        padding: 40px 24px
    }

    .apie .metrics-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px
    }

    .apie .metrics-img-group {
        grid-template-columns: 1fr
    }

    .apie .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .apie .stat-card {
        padding: 24px 12px
    }

    .apie .stat-num {
        font-size: 30px
    }
}

.apie .divider-svg {
    width: 100%;
    height: 80px;
    display: block;
    margin-left: -40px
}

.apie .divider-svg svg {
    width: 100%;
    height: 100%
}

@media (max-width: 480px) {
    .apie .intro-h1 {
        font-size: 30px
    }

    .apie .intro-h2 {
        font-size: 15px
    }

    .apie .story-h,
    .apie .roles-h,
    .apie .contact-h,
    .apie .metrics-h {
        font-size: 15px
    }

    .apie .stat-num {
        font-size: 30px
    }

    .apie .stats-grid {
        grid-template-columns: 1fr
    }
}

.floristry {
    background: #fff;
    overflow-x: clip
}

.floristry .split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative
}

.floristry .split-intro__left {
    background: linear-gradient(147deg, #EE8D01 0%, #0A6854 100%);
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.floristry .split-intro__right {
    background: #f4f4f4;
    padding: 80px 80px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.floristry .split-intro__deco {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 140px;
    height: 140px;
    border: 2px solid #ffffff26;
    border-radius: 18px;
    transform: rotate(12deg);
    pointer-events: none
}

.floristry .split-intro__h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    opacity: 0;
    animation: reveal-fade .6s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards
}

.floristry .split-intro__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 40px;
    max-width: 480px;
    opacity: 0;
    animation: reveal-fade .6s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards
}

.floristry .split-intro__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #ffffff4d;
    padding-bottom: 6px;
    width: fit-content;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    animation: reveal-fade .6s cubic-bezier(0.22, 1, 0.36, 1) .6s forwards
}

.floristry .split-intro__link:hover {
    border-bottom-color: #fff
}

.floristry .split-intro__link-arrow {
    width: 18px;
    height: 18px;
    background: #fff;
    clip-path: polygon(0 50%, 70% 50%, 70% 0, 100% 50%, 70% 100%, 70% 50%);
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.floristry .split-intro__link:hover .split-intro__link-arrow {
    transform: translateX(6px)
}

.floristry .split-intro__lines {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none
}

.floristry .split-intro__line {
    width: 80px;
    height: 2px;
    background: #fff3
}

.floristry .split-intro__line:nth-child(2) {
    width: 60px
}

.floristry .split-intro__line:nth-child(3) {
    width: 40px
}

@keyframes reveal-fade {
    to {
        opacity: 1
    }
}

@media (max-width: 960px) {
    .floristry .split-intro {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .floristry .split-intro__left {
        padding: 80px 40px
    }

    .floristry .split-intro__right {
        padding: 80px 40px
    }

    .floristry .split-intro__h1 {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .floristry .split-intro__left {
        padding: 40px 24px
    }

    .floristry .split-intro__right {
        padding: 40px 24px
    }

    .floristry .split-intro__deco {
        width: 100px;
        height: 100px;
        top: 12px;
        right: 12px
    }
}

.floristry .proof {
    padding: 80px 24px;
    background: #fff;
    position: relative
}

.floristry .proof__container {
    max-width: 1200px;
    margin: 0 auto
}

.floristry .proof__header {
    margin: 0 0 80px;
    text-align: center
}

.floristry .proof__h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.floristry .proof__intro {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 auto;
    max-width: 720px
}

.floristry .proof__intro span {
    color: #EE8D01;
    text-transform: uppercase;
    font-weight: 600
}

.floristry .proof__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 0 80px
}

.floristry .proof__card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px 0 #ee8d0114;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column
}

.floristry .proof__card:hover {
    box-shadow: 0 9px 52px 0 #ee8d0121;
    transform: translateY(-6px)
}

.floristry .proof__card-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative
}

.floristry .proof__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.floristry .proof__card:hover .proof__card-img {
    transform: scale(1.08);
    filter: sepia(0.3) saturate(1.4)
}

.floristry .proof__card-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.floristry .proof__card-h3 {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 0 12px;
    font-weight: 700
}

.floristry .proof__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.floristry .proof__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto
}

.floristry .proof__stat {
    text-align: center;
    position: relative
}

.floristry .proof__stat::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #EE8D01;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.floristry .proof__stat-num {
    font-size: 56px;
    line-height: 1.2;
    color: #0A6854;
    margin: 0 0 12px;
    font-weight: 700
}

.floristry .proof__stat-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

@media (max-width: 960px) {
    .floristry .proof {
        padding: 40px 24px
    }

    .floristry .proof__header {
        margin: 0 0 40px
    }

    .floristry .proof__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 0 40px
    }

    .floristry .proof__stats {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 480px) {
    .floristry .proof__card-img-wrap {
        height: 200px
    }

    .floristry .proof__card-content {
        padding: 24px
    }

    .floristry .proof__stat-num {
        font-size: 30px
    }
}

.floristry .support {
    padding: 80px 24px;
    background: radial-gradient(circle at bottom right, #0a68540f, transparent 60%);
    position: relative
}

.floristry .support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: radial-gradient(circle at 50% 0%, transparent 49%, #fff 50%);
    background-size: 40px 40px;
    background-repeat: repeat-x;
    background-position: 0 0
}

.floristry .support__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start
}

.floristry .support__main {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.floristry .support__h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0;
    letter-spacing: -.01em
}

.floristry .support__steps {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.floristry .support__step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start
}

.floristry .support__step-num {
    width: 60px;
    height: 60px;
    background: #EE8D01;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0
}

.floristry .support__step-content {
    padding-top: 6px
}

.floristry .support__step-h3 {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 0 12px;
    font-weight: 700
}

.floristry .support__step-text {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.floristry .support__sidebar {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 2px 3px 0 #0a685412;
    position: sticky;
    top: 24px
}

.floristry .support__sidebar-h3 {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 0 24px;
    font-weight: 700
}

.floristry .support__person {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center
}

.floristry .support__person-img-wrap {
    width: 100px;
    height: 140px;
    overflow: hidden;
    border-radius: 10px
}

.floristry .support__person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.floristry .support__person-name {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 0 6px;
    font-weight: 700
}

.floristry .support__person-role {
    font-size: 14px;
    line-height: 1.6;
    color: #0A6854;
    margin: 0
}

@media (max-width: 960px) {
    .floristry .support {
        padding: 40px 24px
    }

    .floristry .support__container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .floristry .support__sidebar {
        position: static
    }
}

@media (max-width: 480px) {
    .floristry .support__step {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .floristry .support__step-num {
        width: 50px;
        height: 50px;
        font-size: 24px
    }

    .floristry .support__sidebar {
        padding: 24px
    }
}

.floristry .reputation {
    padding: 80px 24px;
    background: #fff;
    position: relative
}

.floristry .reputation__container {
    max-width: 1200px;
    margin: 0 auto
}

.floristry .reputation__header {
    text-align: center;
    margin: 0 0 80px
}

.floristry .reputation__h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.floristry .reputation__lead {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 auto;
    max-width: 720px
}

.floristry .reputation__lead span {
    color: #0A6854;
    text-transform: uppercase;
    font-weight: 600
}

.floristry .reputation__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 0 0 80px
}

.floristry .reputation__col {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.floristry .reputation__block {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.floristry .reputation__block-h3 {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0;
    font-weight: 700
}

.floristry .reputation__block-text {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.floristry .reputation__block-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #EE8D01;
    text-decoration: none;
    width: fit-content;
    transition: gap .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.floristry .reputation__block-link:hover {
    gap: 12px
}

.floristry .reputation__block-icon {
    width: 14px;
    height: 14px;
    background: #EE8D01;
    clip-path: polygon(0 50%, 70% 50%, 70% 0, 100% 50%, 70% 100%, 70% 50%)
}

.floristry .reputation__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.floristry .reputation__img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.floristry .reputation__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.floristry .reputation__img-wrap:hover .reputation__img {
    transform: scale(1.06);
    filter: sepia(0.25) saturate(1.3)
}

.floristry .reputation__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center
}

.floristry .reputation__badge {
    background: linear-gradient(135deg, #ee8d0114 0%, #0a685414 100%);
    border-radius: 32px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.floristry .reputation__badge:hover {
    transform: scale(1.05)
}

.floristry .reputation__badge-icon {
    width: 24px;
    height: 24px;
    background: #0A6854;
    border-radius: 6px;
    flex-shrink: 0
}

.floristry .reputation__badge-text {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

@media (max-width: 960px) {
    .floristry .reputation {
        padding: 40px 24px
    }

    .floristry .reputation__header {
        margin: 0 0 40px
    }

    .floristry .reputation__content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 0 40px
    }

    .floristry .reputation__images {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .floristry .reputation__img-wrap {
        height: 180px
    }

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

    .floristry .reputation__badge {
        justify-content: center
    }
}

.reach-us {
    background: #fff;
    color: #131212;
    max-width: 100%;
    overflow-x: clip
}

.reach-us .banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 280px;
    padding: 24px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    overflow: hidden
}

.reach-us .banner__text {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    padding-right: 40px
}

.reach-us .banner__heading {
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0;
    color: #131212
}

.reach-us .banner__img-container {
    position: relative;
    flex: 1;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.reach-us .banner__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px
}

.reach-us .banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .4
}

.reach-us .banner__shape-one {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: #ee8d0126;
    top: 40px;
    right: -30px;
    z-index: 1;
    transform: rotate(25deg)
}

.reach-us .banner__shape-two {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0a68541f;
    bottom: 50px;
    left: 60px;
    z-index: 1
}

.reach-us .form-zone {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative
}

.reach-us .form-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 95%, #0a685414 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.reach-us .form-zone__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start
}

.reach-us .form-zone__info {
    position: relative
}

.reach-us .form-zone__label {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #EE8D01;
    margin-bottom: 12px;
    font-weight: 600
}

.reach-us .form-zone__title {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #131212;
    font-weight: 700
}

.reach-us .form-zone__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 0 40px
}

.reach-us .form-zone__desc span {
    color: #EE8D01;
    text-transform: uppercase;
    font-weight: 600
}

.reach-us .form-zone__contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.reach-us .form-zone__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6
}

.reach-us .form-zone__contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.reach-us .form-zone__contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #0A6854
}

.reach-us .form-zone__contact-text {
    flex: 1;
    color: #131212
}

.reach-us .form-zone__contact-text a {
    color: #0A6854;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .form-zone__contact-text a:hover {
    color: #EE8D01
}

.reach-us .form-zone__form-container {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 4px 20px 0 #ee8d0114;
    position: relative
}

.reach-us .form-zone__form-container::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ee8d0126 0%, #0a685426 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .form-zone__form-container:hover::before {
    opacity: 1
}

.reach-us .form-zone__form-title {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 6px;
    color: #131212;
    font-weight: 700
}

.reach-us .form-zone__form-subtitle {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .08em;
    color: #0A6854;
    margin: 0 0 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ee8d0133
}

.reach-us .form-zone__form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.reach-us .form-zone__field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.reach-us .form-zone__field-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    font-weight: 600
}

.reach-us .form-zone__field-label span {
    color: #EE8D01
}

.reach-us .form-zone__input {
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #0a685433;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    background: #fff;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .form-zone__input::placeholder {
    color: #13121266;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .05em
}

.reach-us .form-zone__input:focus {
    outline: none;
    border-color: #EE8D01;
    box-shadow: 0 0 0 3px #ee8d011a
}

.reach-us .form-zone__input:hover {
    border-color: #ee8d0166
}

.reach-us .form-zone__slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.reach-us .form-zone__slot-option {
    position: relative
}

.reach-us .form-zone__slot-input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.reach-us .form-zone__slot-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    border: 2px solid #0a685433;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .5s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
    min-height: 80px
}

.reach-us .form-zone__slot-time {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #131212;
    margin-bottom: 6px
}

.reach-us .form-zone__slot-period {
    font-size: 14px;
    line-height: 1.2;
    color: #13121299
}

.reach-us .form-zone__slot-input:checked+.form-zone__slot-label {
    border-color: #EE8D01;
    background: #ee8d0114;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px 0 #ee8d0126
}

.reach-us .form-zone__slot-label:hover {
    border-color: #EE8D01;
    transform: translateY(-1px)
}

.reach-us .form-zone__privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px
}

.reach-us .form-zone__privacy-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #EE8D01
}

.reach-us .form-zone__privacy-label {
    font-size: 14px;
    line-height: 1.6;
    color: #131212cc;
    flex: 1
}

.reach-us .form-zone__privacy-label a {
    color: #0A6854;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .form-zone__privacy-label a:hover {
    color: #EE8D01
}

.reach-us .form-zone__submit {
    width: 100%;
    padding: 12px 40px;
    background: #EE8D01;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .form-zone__submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #0A6854;
    transition: height .6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.reach-us .form-zone__submit:hover::before {
    height: 100%
}

.reach-us .form-zone__submit span {
    position: relative;
    z-index: 1
}

.reach-us .form-zone__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 52px 0 #ee8d0140
}

.reach-us .form-zone__submit:active {
    transform: translateY(0)
}

.reach-us .details-strip {
    background: #0A6854;
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.reach-us .details-strip::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ee8d0114;
    bottom: -200px;
    right: -100px;
    pointer-events: none
}

.reach-us .details-strip::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #ee8d010f;
    top: -150px;
    left: -80px;
    pointer-events: none
}

.reach-us .details-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reach-us .details-strip__header {
    text-align: center;
    margin-bottom: 80px
}

.reach-us .details-strip__overtitle {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #EE8D01;
    margin-bottom: 12px;
    font-weight: 600
}

.reach-us .details-strip__heading {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    font-weight: 700
}

.reach-us .details-strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px
}

.reach-us .details-strip__card {
    background: #ffffff0d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #ffffff1a;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), background .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    animation: slide-in-right .7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0
}

.reach-us .details-strip__card:nth-child(1) {
    animation-delay: .1s
}

.reach-us .details-strip__card:nth-child(2) {
    animation-delay: .2s
}

.reach-us .details-strip__card:nth-child(3) {
    animation-delay: .3s
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

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

.reach-us .details-strip__card:hover {
    transform: translateY(-6px);
    background: #ffffff14;
    box-shadow: 0 9px 52px 0 #ee8d0121
}

.reach-us .details-strip__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 32px;
    background: #ee8d0126;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px
}

.reach-us .details-strip__card-icon svg {
    width: 32px;
    height: 32px;
    fill: #EE8D01
}

.reach-us .details-strip__card-title {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase
}

.reach-us .details-strip__card-content {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0
}

.reach-us .details-strip__card-content a {
    color: #EE8D01;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative
}

.reach-us .details-strip__card-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EE8D01;
    transition: width .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-us .details-strip__card:hover .details-strip__card-content a::after {
    width: 100%
}

.reach-us .details-strip__divider {
    width: 80px;
    height: 4px;
    background: #EE8D01;
    margin: 80px auto 0;
    border-radius: 6px
}

@media (max-width: 960px) {
    .reach-us .banner {
        flex-direction: column;
        min-height: auto;
        padding: 40px 24px
    }

    .reach-us .banner__text {
        padding-right: 0;
        margin-bottom: 24px
    }

    .reach-us .banner__heading {
        font-size: 30px
    }

    .reach-us .banner__img-container {
        width: 100%;
        height: 240px
    }

    .reach-us .form-zone {
        padding: 40px 24px
    }

    .reach-us .form-zone__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .reach-us .form-zone__form-container {
        padding: 24px
    }

    .reach-us .form-zone__slots {
        grid-template-columns: repeat(2, 1fr)
    }

    .reach-us .details-strip {
        padding: 40px 24px
    }

    .reach-us .details-strip__header {
        margin-bottom: 40px
    }

    .reach-us .details-strip__grid {
        gap: 24px
    }

    .reach-us .details-strip__card {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .reach-us .banner__heading {
        font-size: 30px
    }

    .reach-us .form-zone__title,
    .reach-us .form-zone__form-title,
    .reach-us .details-strip__heading {
        font-size: 30px
    }

    .reach-us .form-zone__slots {
        grid-template-columns: 1fr
    }

    .reach-us .details-strip__grid {
        grid-template-columns: 1fr
    }
}

.success-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px
}

.success-page .confirmation-block {
    background: linear-gradient(circle at bottom right, #0a68540f 0%, transparent 70%);
    border: 2px solid #0A6854;
    border-radius: 18px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 4px 20px 0 #0a685414
}

.success-page .icon-check {
    width: 88px;
    height: 88px;
    margin: 0 auto 40px;
    background: #0A6854;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.success-page .icon-check::before {
    content: '';
    width: 36px;
    height: 20px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg) translateY(-4px)
}

.success-page .confirmation-block h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 24px
}

.success-page .confirmation-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #131212;
    margin: 0 auto;
    max-width: 600px
}

.success-page .confirmation-block p strong {
    color: #EE8D01
}

.success-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px
}

.success-page .info-card {
    background: #fff;
    border: 1px solid #0a685426;
    border-radius: 10px;
    padding: 40px 24px;
    box-shadow: 0 2px 3px 0 #0a685412;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s ease-in-out
}

.success-page .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 9px 52px 0 #0a685421
}

.success-page .info-card h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 12px
}

.success-page .info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #131212;
    margin: 0
}

.success-page .contact-section {
    background: #0A6854;
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden
}

.success-page .contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ee8d011f 0%, transparent 60%);
    pointer-events: none
}

.success-page .contact-section h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    position: relative
}

.success-page .contact-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0 auto 40px;
    max-width: 560px;
    position: relative
}

.success-page .contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative
}

.success-page .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #fff
}

.success-page .contact-item svg {
    width: 20px;
    height: 20px;
    fill: #EE8D01;
    flex-shrink: 0
}

.success-page .contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-page .contact-item a:hover {
    color: #EE8D01
}

.success-page .action-block {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #ee8d010a 0%, transparent 100%);
    border-radius: 10px
}

.success-page .action-block h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #131212;
    margin: 0 0 24px
}

.success-page .button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-page .button-primary {
    background: #EE8D01;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 40px;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-page .button-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #00000026;
    transition: height .6s ease-in-out;
    z-index: 0
}

.success-page .button-primary:hover::before {
    height: 100%
}

.success-page .button-primary span {
    position: relative;
    z-index: 1
}

.success-page .button-primary:hover {
    transform: translateY(-2px)
}

.success-page .button-secondary {
    background: #fff;
    color: #131212;
    border: 2px solid #0A6854;
    border-radius: 6px;
    padding: 12px 40px;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-page .button-secondary:hover {
    background: #0A6854;
    color: #fff
}

@media (max-width: 960px) {
    .success-page {
        padding: 40px 24px
    }

    .success-page .confirmation-block {
        padding: 40px 24px;
        margin-bottom: 40px
    }

    .success-page .confirmation-block h1 {
        font-size: 30px
    }

    .success-page .info-grid {
        margin-bottom: 40px
    }

    .success-page .contact-section {
        padding: 40px 24px;
        margin-bottom: 40px
    }
}

@media (max-width: 480px) {
    .success-page .button-group {
        flex-direction: column
    }

    .success-page .button-primary,
    .success-page .button-secondary {
        width: 100%
    }
}