*,
::before,
::after {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    font-family: 'Fira Code', monospace;
    background: #FDFCFB;
    color: #04020F;
    font-size: 17px;
    line-height: 1.7
}

.hd-float {
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, #F8F7F4 0%, #FFF 100%);
    padding: 24px 36px;
    box-shadow: 2px 4px 18px 0 #04020f17
}

.hd-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px
}

.logo-box {
    flex-shrink: 0;
    background: #FFF;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 2px 1px 4px 0 #04e47e14 2px 4px 18px 0 #04020f17;
    border: 2px solid #04E47E
}

.logo-box img {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: contain
}

.hd-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.value-txt {
    font-size: 14px;
    line-height: 1.2;
    color: #04020F;
    font-weight: 400;
    max-width: 580px;
    text-align: right
}

.nav-prime {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center
}

.nav-prime a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    color: #04020F;
    background: #FFF;
    border-radius: 32px;
    border: 2px solid #04E47E;
    transition: transform .09s linear, box-shadow .11s ease-out;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.nav-prime a:hover {
    transform: translateY(-3px);
    box-shadow: 2px 4px 18px 0 #04e47e17
}

.nav-prime a:focus {
    outline: 2px solid #04020F;
    outline-offset: 3px
}

.nav-prime a:active {
    transform: translateY(-1px)
}

@media (max-width: 960px) {
    .hd-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px
    }

    .hd-right {
        align-items: center;
        width: 100%
    }

    .value-txt {
        text-align: center;
        max-width: 100%
    }

    .nav-prime {
        justify-content: center
    }
}

@media (max-width: 480px) {
    .hd-float {
        padding: 24px
    }

    .logo-box img {
        width: 72px;
        height: 72px
    }

    .nav-prime {
        flex-direction: column;
        width: 100%
    }

    .nav-prime a {
        width: 100%;
        text-align: center
    }
}

.ft-wrap {
    background: linear-gradient(135deg, #F2F1EE 0%, #FDFCFB 100%);
    padding: 72px 36px 36px;
    border-top: 4px solid #04E47E;
    position: relative
}

.ft-wrap::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #04E47E 0%, #FA1C3F 100%)
}

.ft-upper {
    max-width: 1280px;
    margin: 0 auto 72px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px
}

.ft-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ft-logo-box {
    background: #FFF;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 2px 1px 4px 0 #04020f14 2px 4px 18px 0 #04e47e17;
    border: 2px solid #04020F;
    width: fit-content
}

.ft-logo-box img {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain
}

.ft-contact-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #04020F
}

.ft-contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #04E47E;
    border-radius: 7px;
    margin-top: 2px
}

.ft-contact-icon svg {
    width: 14px;
    height: 14px;
    fill: #04020F
}

.ft-contact-txt {
    flex: 1;
    word-break: break-word
}

.ft-contact-txt a {
    color: #04020F;
    text-decoration: none;
    transition: color .08s linear
}

.ft-contact-txt a:hover {
    color: #FA1C3F
}

.ft-contact-txt a:focus {
    outline: 2px solid #04020F;
    outline-offset: 2px
}

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

.ft-nav-list li {
    position: relative;
    padding-left: 24px
}

.ft-nav-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #FA1C3F;
    border-radius: 7px
}

.ft-nav-list a {
    font-size: 14px;
    line-height: 1.7;
    color: #04020F;
    text-decoration: none;
    transition: color .09s linear, transform .09s ease-out;
    display: inline-block
}

.ft-nav-list a:hover {
    color: #04E47E;
    transform: translateX(4px)
}

.ft-nav-list a:focus {
    outline: 2px solid #04020F;
    outline-offset: 2px
}

.ft-lower {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 36px;
    border-top: 2px solid #04E47E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.ft-copy {
    font-size: 14px;
    line-height: 1.2;
    color: #04020F
}

.ft-badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #FFF;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: #04020F;
    border: 2px solid #FA1C3F;
    box-shadow: 2px 1px 4px 0 #fa1c3f14
}

.ft-badge svg {
    width: 16px;
    height: 16px;
    fill: #FA1C3F
}

@media (max-width: 960px) {
    .ft-upper {
        grid-template-columns: 1fr
    }

    .ft-lower {
        flex-direction: column;
        text-align: center
    }

    .ft-badge-group {
        justify-content: center
    }
}

@media (max-width: 480px) {
    .ft-wrap {
        padding: 36px 24px 24px
    }

    .ft-upper {
        margin-bottom: 36px
    }

    .ft-logo-box img {
        width: 72px;
        height: 72px
    }
}

.cookie-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background: linear-gradient(135deg, #FFF 0%, #F8F7F4 100%);
    padding: 24px 36px;
    box-shadow: 2px 8px 60px 0 #04020f1a;
    border-bottom: 4px solid #04E47E;
    display: none
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap
}

.cookie-txt-box {
    flex: 1;
    min-width: 280px
}

.cookie-headline {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #04020F;
    margin: 0 0 8px
}

.cookie-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #04020F;
    margin: 0
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Fira Code', monospace;
    color: #04020F;
    background: #04E47E;
    border: 2px solid #04020F;
    border-radius: 32px;
    cursor: pointer;
    transition: transform .1s linear, box-shadow .12s ease-out, background .09s linear;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 2px 4px 18px 0 #04e47e17;
    background: #FA1C3F;
    color: #FFF
}

.cookie-btn:focus {
    outline: 2px solid #04020F;
    outline-offset: 3px
}

.cookie-btn:active {
    transform: translateY(-1px)
}

.cookie-link {
    font-size: 14px;
    line-height: 1.2;
    color: #04020F;
    text-decoration: underline;
    transition: color .08s linear;
    cursor: pointer
}

.cookie-link:hover {
    color: #FA1C3F
}

.cookie-link:focus {
    outline: 2px solid #04020F;
    outline-offset: 2px
}

@media (max-width: 960px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch
    }

    .cookie-actions {
        justify-content: center
    }
}

@media (max-width: 480px) {
    .cookie-bar {
        padding: 24px
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%
    }

    .cookie-btn {
        width: 100%;
        text-align: center
    }

    .cookie-link {
        text-align: center
    }
}

.legal-info {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    background: #fefefe
}

.legal-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #04020F
}

.legal-info p:last-child {
    margin-bottom: 0
}

.legal-info ul,
.legal-info ol {
    margin: 0 0 24px;
    padding-left: 36px
}

.legal-info ul li,
.legal-info ol li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #04020F
}

.legal-info ul li:last-child,
.legal-info ol li:last-child {
    margin-bottom: 0
}

.legal-info ul li::marker {
    color: #04E47E
}

.legal-info ol li::marker {
    color: #FA1C3F;
    font-weight: 600
}

.legal-info a {
    color: #04E47E;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .1s linear
}

.legal-info a:hover {
    border-bottom-color: #04E47E
}

.legal-info table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 2px 1px 4px 0 #04020f14
}

.legal-info thead {
    background: #f7f7f7
}

.legal-info th {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
    padding: 12px 24px;
    color: #04020F;
    border-bottom: 2px solid #04E47E
}

.legal-info td {
    font-size: 17px;
    line-height: 1.7;
    padding: 12px 24px;
    color: #04020F;
    border-bottom: 1px solid #f0f0f0
}

.legal-info tr:last-child td {
    border-bottom: none
}

.legal-info tbody tr {
    transition: background-color .08s linear
}

.legal-info tbody tr:hover {
    background-color: #fafafa
}

.legal-info hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #04E47E, #FA1C3F);
    margin: 36px 0;
    opacity: .3
}

@media (max-width: 960px) {
    .legal-info {
        padding: 36px 24px
    }

    .legal-info table {
        font-size: 14px
    }

    .legal-info th,
    .legal-info td {
        padding: 8px 12px
    }
}

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

    .legal-info p,
    .legal-info ul li,
    .legal-info ol li {
        font-size: 14px
    }

    .legal-info ul,
    .legal-info ol {
        padding-left: 24px
    }

    .legal-info table {
        display: block;
        overflow-x: auto
    }

    .legal-info th,
    .legal-info td {
        white-space: nowrap
    }
}

.cntct {
    background: linear-gradient(167deg, #f4f4f2 0%, #e8e6e0 100%);
    padding: 72px 0;
    max-width: 100%;
    overflow-x: clip;
    position: relative
}

.cntct::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 15% 20%, #04e47e0f, transparent 45%), radial-gradient(ellipse at 85% 80%, #fa1c3f0d, transparent 50%);
    pointer-events: none;
    z-index: 1
}

.cntct::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 180px #04020f1f;
    pointer-events: none;
    z-index: 2
}

.cntct-bnd {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3
}

.tr-ln {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, #04020f14 50%, transparent 100%);
    height: 1px;
    left: 0;
    right: 0;
    pointer-events: none
}

.tr-ln.top {
    top: 0
}

.tr-ln.btm {
    bottom: 0
}

.tr-ln-vrt {
    position: absolute;
    background: linear-gradient(180deg, transparent 0%, #04020f0f 50%, transparent 100%);
    width: 1px;
    top: 0;
    bottom: 0;
    pointer-events: none
}

.tr-ln-vrt.lft {
    left: 72px
}

.tr-ln-vrt.rgt {
    right: 72px
}

.ttl-zn {
    background: linear-gradient(143deg, #04020F 0%, #1a1825 100%);
    border-radius: 32px;
    padding: 72px 36px;
    margin-bottom: 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 8px 60px 0 #04020f1a
}

.ttl-zn::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #04e47e26 0%, transparent 70%);
    top: -120px;
    left: -80px;
    border-radius: 48px;
    filter: blur(60px);
    pointer-events: none
}

.ttl-zn::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #fa1c3f1f 0%, transparent 70%);
    bottom: -100px;
    right: -60px;
    border-radius: 48px;
    filter: blur(55px);
    pointer-events: none
}

.ttl-ctn {
    position: relative;
    z-index: 2;
    max-width: 920px
}

.ttl-ctn h1 {
    font-size: 70px;
    line-height: 1.2;
    color: #f4f4f2;
    margin: 0 0 24px;
    letter-spacing: -.02em
}

.ttl-ctn .sb-hd {
    font-size: 22px;
    line-height: 1.7;
    color: #f4f4f2c7;
    margin: 0 0 36px;
    max-width: 740px
}

.ttl-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #04E47E;
    font-size: 17px;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #04e47e4d;
    border-radius: 20px;
    transition: border-color .09s linear, transform .11s ease-out, box-shadow .09s linear;
    background: #04e47e0a
}

.ttl-lnk:hover {
    border-color: #04e47e99;
    transform: translateY(-3px);
    box-shadow: 2px 4px 18px 0 #04e47e17
}

.ttl-lnk svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform .1s linear
}

.ttl-lnk:hover svg {
    transform: translateX(4px)
}

.dt-crd-wrp {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start
}

.dt-crd {
    background: #fff;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 2px 4px 18px 0 #04020f17;
    position: relative;
    overflow: hidden
}

.dt-crd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #04E47E 0%, #FA1C3F 100%);
    opacity: 0;
    transition: opacity .12s ease-out
}

.dt-crd:hover::before {
    opacity: 1
}

.dt-crd.ofst {
    margin-top: 48px
}

.dt-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.dt-shp {
    width: 8px;
    height: 8px;
    background: #04E47E;
    border-radius: 7px;
    flex-shrink: 0
}

.dt-crd:nth-child(2) .dt-shp {
    background: #FA1C3F
}

.dt-crd h2 {
    font-size: 22px;
    line-height: 1.2;
    color: #04020F;
    margin: 0
}

.dt-rw {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #04020f0f
}

.dt-rw:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.dt-rw:first-child {
    padding-top: 0
}

.dt-icn {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.dt-icn svg {
    width: 100%;
    height: 100%;
    fill: #04020F;
    opacity: .6
}

.dt-txt {
    flex: 1
}

.dt-lbl {
    font-size: 14px;
    color: #04020f94;
    margin: 0 0 4px;
    line-height: 1.2
}

.dt-vl {
    font-size: 17px;
    color: #04020F;
    margin: 0;
    line-height: 1.7
}

.dt-vl a {
    color: inherit;
    text-decoration: none;
    transition: color .09s linear
}

.dt-vl a:hover {
    color: #04E47E
}

.dt-sts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #04e47e14;
    border-radius: 20px;
    margin-top: 24px
}

.dt-sts-ind {
    width: 8px;
    height: 8px;
    background: #04E47E;
    border-radius: 7px;
    animation: pls 2s linear infinite
}

@keyframes pls {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.dt-sts-txt {
    font-size: 14px;
    color: #04020F;
    margin: 0;
    line-height: 1.2
}

.dvdr {
    text-align: center;
    margin: 72px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.dvdr-dt {
    width: 4px;
    height: 4px;
    background: #04020F;
    border-radius: 7px;
    opacity: .3
}

.frm-zn {
    background: #fff;
    border-radius: 32px;
    padding: 72px 36px;
    box-shadow: 2px 8px 60px 0 #04020f1a inset 0 2px 8px #04020f0a;
    position: relative;
    max-width: 920px;
    margin: 0 auto
}

.frm-zn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #04e47e33 50%, transparent 100%);
    pointer-events: none;
    animation: brd-trc 3s linear infinite
}

@keyframes brd-trc {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.frm-zn h2 {
    font-size: 22px;
    line-height: 1.2;
    color: #04020F;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px
}

.frm-zn h2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FA1C3F;
    border-radius: 7px;
    flex-shrink: 0
}

.frm-dsc {
    font-size: 17px;
    line-height: 1.7;
    color: #04020fad;
    margin: 0 0 36px
}

.frm-grd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.frm-fld {
    position: relative
}

.frm-fld.fll {
    grid-column: 1 / -1
}

.frm-lbl {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 17px;
    color: #04020f7a;
    pointer-events: none;
    transition: top .1s ease-out, font-size .1s ease-out, color .1s ease-out;
    background: #fff;
    padding: 0 4px;
    line-height: 1.2
}

.frm-inp {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #04020f1f;
    border-radius: 20px;
    font-size: 17px;
    color: #04020F;
    background: #fff;
    transition: border-color .09s linear, box-shadow .09s linear;
    line-height: 1.7;
    font-family: inherit
}

.frm-inp:focus {
    outline: none;
    border-color: #04E47E;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.frm-inp:focus+.frm-lbl,
.frm-inp:not(:placeholder-shown)+.frm-lbl {
    top: -8px;
    font-size: 14px;
    color: #04E47E
}

.frm-slct-wrp {
    position: relative
}

.frm-slct {
    width: 100%;
    padding: 18px 24px;
    padding-right: 48px;
    border: 1px solid #04020f1f;
    border-radius: 20px;
    font-size: 17px;
    color: #04020F;
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color .09s linear, box-shadow .09s linear;
    line-height: 1.7;
    font-family: inherit
}

.frm-slct:focus {
    outline: none;
    border-color: #04E47E;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.frm-slct-wrp::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #04020F;
    pointer-events: none;
    opacity: .6;
    transition: transform .1s linear
}

.frm-slct:focus+.frm-slct-wrp::after {
    transform: translateY(-50%) rotate(180deg)
}

.frm-slct option {
    padding: 12px
}

.frm-chk-wrp {
    margin-bottom: 36px;
    display: flex;
    align-items: start;
    gap: 12px
}

.frm-chk {
    width: 20px;
    height: 20px;
    border: 1px solid #04020f1f;
    border-radius: 7px;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color .09s linear, background-color .09s linear;
    background: #fff
}

.frm-chk:checked {
    background: #04E47E;
    border-color: #04E47E
}

.frm-chk:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: chk-mrk .15s ease-out
}

@keyframes chk-mrk {
    0% {
        transform: rotate(45deg) scale(0)
    }

    100% {
        transform: rotate(45deg) scale(1)
    }
}

.frm-chk:focus {
    outline: none;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.frm-chk-lbl {
    font-size: 14px;
    line-height: 1.7;
    color: #04020fad;
    cursor: pointer;
    flex: 1
}

.frm-chk-lbl a {
    color: #04E47E;
    text-decoration: none;
    transition: color .09s linear
}

.frm-chk-lbl a:hover {
    color: #FA1C3F
}

.frm-btn {
    width: 100%;
    padding: 18px 36px;
    background: linear-gradient(135deg, #04020F 0%, #1a1825 100%);
    color: #f4f4f2;
    border: none;
    border-radius: 20px;
    font-size: 17px;
    font-family: inherit;
    cursor: pointer;
    transition: transform .11s ease-out, box-shadow .09s linear;
    box-shadow: 2px 4px 18px 0 #04020f17;
    position: relative;
    overflow: hidden
}

.frm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #04e47e33 50%, transparent 100%);
    transition: left .4s linear
}

.frm-btn:hover {
    transform: translateY(-4px);
    box-shadow: 2px 8px 60px 0 #04020f1a
}

.frm-btn:hover::before {
    left: 100%
}

.frm-btn:active {
    transform: translateY(-2px)
}

@media (max-width: 960px) {
    .cntct {
        padding: 36px 0
    }

    .cntct-bnd {
        padding: 0 12px
    }

    .tr-ln-vrt {
        display: none
    }

    .ttl-zn {
        padding: 36px 24px;
        margin-bottom: 36px;
        border-radius: 20px
    }

    .ttl-ctn h1 {
        font-size: 42px
    }

    .ttl-ctn .sb-hd {
        font-size: 17px;
        margin-bottom: 24px
    }

    .dt-crd-wrp {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px
    }

    .dt-crd {
        padding: 24px;
        border-radius: 20px
    }

    .dt-crd.ofst {
        margin-top: 0
    }

    .dvdr {
        margin: 36px 0
    }

    .frm-zn {
        padding: 36px 24px;
        border-radius: 20px
    }

    .frm-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

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

    .ttl-ctn h1 {
        font-size: 32px
    }

    .ttl-ctn .sb-hd {
        font-size: 14px
    }

    .ttl-lnk {
        font-size: 14px;
        padding: 8px 12px
    }

    .dt-crd {
        padding: 12px
    }

    .dt-crd h2 {
        font-size: 17px
    }

    .dt-rw {
        flex-direction: column;
        gap: 4px
    }

    .dt-vl {
        font-size: 14px
    }

    .frm-zn {
        padding: 24px 12px
    }

    .frm-zn h2 {
        font-size: 17px
    }

    .frm-dsc {
        font-size: 14px
    }

    .frm-inp,
    .frm-slct {
        font-size: 14px;
        padding: 12px
    }

    .frm-lbl {
        font-size: 14px;
        top: 14px;
        left: 12px
    }

    .frm-inp:focus+.frm-lbl,
    .frm-inp:not(:placeholder-shown)+.frm-lbl {
        font-size: 12px
    }

    .frm-btn {
        font-size: 14px;
        padding: 12px 24px
    }
}

.frnt {
    margin: 0;
    padding: 0;
    background: #FEFEFE;
    color: #04020F;
    overflow-x: clip
}

.frnt .ttl-blk {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 0 24px;
    gap: 0;
    position: relative
}

.frnt .ttl-blk .img-zn {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 20px
}

.frnt .ttl-blk .img-zn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.frnt .ttl-blk .img-zn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #04e47e4d 0%, #fa1c3f33 100%);
    pointer-events: none
}

.frnt .ttl-blk .txt-zn {
    width: 50%;
    padding: 72px 72px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #FEFEFE
}

.frnt .ttl-blk .txt-zn::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #04e47e26;
    pointer-events: none;
    z-index: 0
}

.frnt .ttl-blk .txt-zn::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 204px;
    height: 204px;
    border-radius: 50%;
    border: 1px solid #04e47e14;
    pointer-events: none;
    z-index: 0
}

.frnt .ttl-blk h1 {
    font-size: 70px;
    line-height: 1.2;
    margin: 0 0 24px;
    position: relative;
    z-index: 1
}

.frnt .ttl-blk .sttmnt {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1
}

@media (max-width: 960px) {
    .frnt .ttl-blk {
        flex-direction: column;
        padding: 36px 24px 24px
    }

    .frnt .ttl-blk .img-zn,
    .frnt .ttl-blk .txt-zn {
        width: 100%
    }

    .frnt .ttl-blk .txt-zn {
        padding: 36px 24px 24px
    }

    .frnt .ttl-blk h1 {
        font-size: 22px
    }
}

.frnt .sprt-sct {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    position: relative;
    background: linear-gradient(145deg, #F8F9FA 0%, #FEFEFE 100%);
    border-radius: 32px;
    margin-top: 72px;
    box-shadow: 2px 4px 18px 0 #04020f17;
    animation: sld-lft .12s linear
}

@keyframes sld-lft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

.frnt .sprt-sct::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 24px;
    width: 60px;
    height: 24px;
    background: #F8F9FA;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%)
}

.frnt .sprt-sct::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 36px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #fa1c3f1a;
    pointer-events: none
}

.frnt .sprt-sct .shp-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.frnt .sprt-sct .shp-hdr::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #04E47E;
    border-radius: 50%;
    flex-shrink: 0
}

.frnt .sprt-sct h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0
}

.frnt .sprt-sct .cntnt-grd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 36px
}

.frnt .sprt-sct .crd {
    background: #FFF;
    padding: 24px;
    border-radius: 20px;
    box-shadow: inset 2px 1px 4px 0 #04020f14;
    transition: box-shadow .1s ease-out
}

.frnt .sprt-sct .crd:hover {
    box-shadow: inset 2px 1px 4px 0 #04020f14 2px 4px 18px 0 #04020f17;
    transform: translateY(-4px)
}

.frnt .sprt-sct .crd h3 {
    font-size: 17px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #04020F
}

.frnt .sprt-sct .crd p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: justify
}

@media (max-width: 960px) {
    .frnt .sprt-sct .cntnt-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.frnt .vlue-sct {
    max-width: 1280px;
    margin: 72px auto 0;
    padding: 72px 24px;
    position: relative;
    animation: sld-rght .11s linear
}

@keyframes sld-rght {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.frnt .vlue-sct::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url(./campaign_images/draft_0002.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: .15;
    z-index: 0;
    border-radius: 48px
}

.frnt .vlue-sct::after {
    content: '';
    position: absolute;
    top: 72px;
    right: 72px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #04e47e33;
    pointer-events: none
}

.frnt .vlue-sct .cntnr {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto
}

.frnt .vlue-sct .shp-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.frnt .vlue-sct .shp-hdr::before {
    content: '';
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #04E47E 0%, #FA1C3F 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0
}

.frnt .vlue-sct h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0
}

.frnt .vlue-sct .txt-blk {
    margin-top: 36px
}

.frnt .vlue-sct .txt-blk p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
    text-align: justify
}

.frnt .vlue-sct .txt-blk p:last-child {
    margin-bottom: 0
}

.frnt .vlue-sct .pnts-lst {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.frnt .vlue-sct .pnts-lst li {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative
}

.frnt .vlue-sct .pnts-lst li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #FA1C3F;
    border-radius: 50%
}

.frnt .vlue-sct .pnts-lst li:nth-child(2)::before {
    background: #04E47E
}

.frnt .vlue-sct .pnts-lst li:nth-child(3)::before {
    background: #04020F
}

.frnt .exprnc-sct {
    max-width: 1280px;
    margin: 72px auto 0;
    padding: 72px 24px;
    position: relative;
    background: #F4F5F6;
    border-radius: 7px;
    animation: sld-lft .09s linear
}

.frnt .exprnc-sct::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 24px;
    width: 60px;
    height: 24px;
    background: #F4F5F6;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%)
}

.frnt .exprnc-sct::after {
    content: '';
    position: absolute;
    bottom: 36px;
    right: 36px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #04e47e26;
    pointer-events: none
}

.frnt .exprnc-sct .lyt {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: center
}

.frnt .exprnc-sct .shp-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.frnt .exprnc-sct .shp-hdr::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #FA1C3F;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    flex-shrink: 0
}

.frnt .exprnc-sct h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0
}

.frnt .exprnc-sct .stry-txt {
    margin-top: 24px
}

.frnt .exprnc-sct .stry-txt p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
    text-align: justify
}

.frnt .exprnc-sct .stry-txt p:last-child {
    margin-bottom: 0
}

.frnt .exprnc-sct .tstmnl-nm {
    font-size: 14px;
    line-height: 1.7;
    margin: 24px 0 0;
    font-style: italic;
    color: #04020fb3
}

.frnt .exprnc-sct .img-wrp {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 2px 8px 60px 0 #04020f1a
}

.frnt .exprnc-sct .img-wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .12s linear
}

.frnt .exprnc-sct .img-wrp:hover img {
    transform: scale(1.05)
}

@media (max-width: 960px) {
    .frnt .exprnc-sct .lyt {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .frnt .exprnc-sct .img-wrp {
        order: -1
    }
}

@media (max-width: 480px) {
    .frnt .ttl-blk h1 {
        font-size: 22px
    }

    .frnt .sprt-sct,
    .frnt .vlue-sct,
    .frnt .exprnc-sct {
        padding: 36px 12px;
        margin-top: 36px
    }
}

.abt-us {
    max-width: 1280px;
    margin: 0 auto;
    background: #FDFCFB;
    color: #04020F
}

.abt-us .manifesto {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    background: linear-gradient(127deg, #F8F7F5 0%, #FFF 100%);
    position: relative;
    overflow: hidden
}

.abt-us .manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 24px, #04020f05 24px, #04020f05 48px);
    pointer-events: none;
    z-index: 1
}

.abt-us .manifesto-txt {
    flex: 1;
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.abt-us .manifesto-hd {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -.02em
}

.abt-us .manifesto-p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 520px
}

.abt-us .manifesto-p:last-child {
    margin-bottom: 0
}

.abt-us .manifesto-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden
}

.abt-us .manifesto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.3);
    transition: transform .12s linear
}

.abt-us .manifesto-img-wrap:hover .manifesto-img {
    transform: scale(1.04)
}

.abt-us .circles-deco {
    position: absolute;
    top: 36px;
    right: 72px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0
}

.abt-us .circles-deco::before,
.abt-us .circles-deco::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #04e47e26
}

.abt-us .circles-deco::before {
    width: 140px;
    height: 140px;
    top: 0;
    left: 0
}

.abt-us .circles-deco::after {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    border-color: #fa1c3f26
}

.abt-us .contact-sec {
    padding: 72px 24px;
    background: #FFF;
    position: relative
}

.abt-us .contact-inner {
    max-width: 840px;
    margin: 0 auto;
    background: linear-gradient(157deg, #F9F8F7 0%, #FDFCFB 100%);
    padding: 72px;
    border-radius: 32px;
    box-shadow: 2px 4px 18px 0 #04020f17;
    position: relative;
    overflow: hidden
}

.abt-us .contact-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 40%, #04e47e14 0%, transparent 70%);
    pointer-events: none
}

.abt-us .contact-hd {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -.02em
}

.abt-us .contact-sub {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 36px;
    color: #04020fbf
}

.abt-us .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .form-lbl {
    font-size: 14px;
    font-weight: 600;
    color: #04020F;
    letter-spacing: .01em
}

.abt-us .form-input {
    padding: 12px 24px;
    border: 2px solid #04020f1f;
    border-radius: 7px;
    font-size: 17px;
    line-height: 1.7;
    background: #FFF;
    transition: border-color .09s ease-out, box-shadow .09s ease-out;
    outline: none
}

.abt-us .form-input:focus {
    border-color: #04E47E;
    box-shadow: 2px 1px 4px 0 #04e47e14
}

.abt-us .form-input::placeholder {
    color: #04020f66;
    transition: opacity .08s linear
}

.abt-us .form-input:focus::placeholder {
    opacity: 0
}

.abt-us .interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.abt-us .check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #FFF;
    border-radius: 7px;
    border: 2px solid #04020f14;
    cursor: pointer;
    transition: border-color .08s linear, background-color .08s linear
}

.abt-us .check-item:hover {
    border-color: #04e47e4d;
    background: #04e47e05
}

.abt-us .check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #04E47E
}

.abt-us .check-lbl {
    font-size: 14px;
    line-height: 1.7;
    cursor: pointer;
    flex: 1
}

.abt-us .privacy-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #04020f05;
    border-radius: 7px
}

.abt-us .privacy-check {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #04020F;
    flex-shrink: 0
}

.abt-us .privacy-txt {
    font-size: 14px;
    line-height: 1.7;
    color: #04020fcc
}

.abt-us .privacy-link {
    color: #04E47E;
    text-decoration: none;
    font-weight: 600;
    transition: color .08s linear
}

.abt-us .privacy-link:hover {
    color: #FA1C3F
}

.abt-us .submit-btn {
    padding: 12px 36px;
    background: #04020F;
    color: #FFF;
    border: none;
    border-radius: 7px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .09s ease-out, transform .09s ease-out, box-shadow .09s ease-out;
    box-shadow: 2px 1px 4px 0 #04020f14;
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.abt-us .submit-btn:hover {
    background: #04E47E;
    color: #04020F;
    transform: translateY(-2px);
    box-shadow: 2px 4px 18px 0 #04e47e17
}

.abt-us .submit-btn:active {
    transform: translateY(0)
}

.abt-us .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff4d;
    transform: translate(-50%, -50%);
    transition: width .15s ease-out, height .15s ease-out
}

.abt-us .submit-btn:active::after {
    width: 200px;
    height: 200px
}

.abt-us .divider-tri {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0
}

.abt-us .tri-left,
.abt-us .tri-right {
    width: 0;
    height: 0;
    border-style: solid
}

.abt-us .tri-left {
    border-width: 8px 12px 8px 0;
    border-color: transparent #04E47E transparent transparent
}

.abt-us .tri-right {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #FA1C3F
}

@media (max-width: 960px) {
    .abt-us .manifesto {
        flex-direction: column;
        min-height: auto
    }

    .abt-us .manifesto-txt {
        padding: 36px 24px
    }

    .abt-us .manifesto-hd {
        font-size: 22px
    }

    .abt-us .manifesto-img-wrap {
        min-height: 320px
    }

    .abt-us .circles-deco {
        top: 12px;
        right: 24px;
        width: 120px;
        height: 120px
    }

    .abt-us .circles-deco::before {
        width: 90px;
        height: 90px
    }

    .abt-us .circles-deco::after {
        width: 60px;
        height: 60px
    }

    .abt-us .contact-sec {
        padding: 36px 24px
    }

    .abt-us .contact-inner {
        padding: 36px 24px
    }

    .abt-us .contact-hd {
        font-size: 22px
    }

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

@media (max-width: 480px) {
    .abt-us .manifesto-txt {
        padding: 24px
    }

    .abt-us .manifesto-hd {
        font-size: 22px
    }

    .abt-us .manifesto-p {
        font-size: 14px
    }

    .abt-us .contact-inner {
        padding: 24px;
        border-radius: 20px
    }

    .abt-us .contact-hd {
        font-size: 22px
    }

    .abt-us .contact-sub {
        font-size: 14px
    }

    .abt-us .form-input {
        padding: 8px 12px;
        font-size: 14px
    }

    .abt-us .submit-btn {
        width: 100%;
        padding: 12px 24px
    }
}

.svc {
    background: #FEFEFE;
    color: #04020F;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0
}

.svc .ld-zone {
    padding: 72px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    position: relative;
    overflow: hidden
}

.svc .ld-zone::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #04e47e1f, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: ld-float-1 4s linear infinite
}

.svc .ld-zone::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #fa1c3f17, transparent 70%);
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    animation: ld-float-2 5s linear infinite
}

@keyframes ld-float-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1
    }

    50% {
        transform: translate(20px, -15px) rotate(2deg);
        opacity: .85
    }
}

@keyframes ld-float-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1
    }

    50% {
        transform: translate(-25px, 20px) rotate(-3deg);
        opacity: .9
    }
}

.svc .ld-txt {
    flex: 1;
    position: relative;
    z-index: 1
}

.svc .ld-num {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #04E47E;
    margin: 0 0 12px;
    animation: ld-rot .8s ease-out
}

@keyframes ld-rot {
    0% {
        transform: rotate(-8deg);
        opacity: 0
    }

    100% {
        transform: rotate(0deg);
        opacity: 1
    }
}

.svc .ld-h {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px;
    color: #04020F
}

.svc .ld-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    color: #04020F
}

.svc .ld-img-wrap {
    width: 380px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.svc .ld-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(100%);
    display: block
}

.svc .appr {
    padding: 72px 24px;
    background: #04020F;
    position: relative
}

.svc .appr-inner {
    max-width: 740px;
    margin: 0 auto
}

.svc .appr-h {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #FEFEFE;
    margin: 0 0 36px;
    text-align: center
}

.svc .appr-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.svc .appr-item {
    background: #fefefe0a;
    border-radius: 20px;
    padding: 24px;
    margin: 0 0 12px;
    cursor: pointer;
    transition: background .1s linear;
    position: relative
}

.svc .appr-item:hover {
    background: #fefefe12
}

.svc .appr-item-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.svc .appr-shape {
    width: 12px;
    height: 12px;
    border-radius: 7px;
    flex-shrink: 0
}

.svc .appr-item:nth-child(1) .appr-shape {
    background: #04E47E
}

.svc .appr-item:nth-child(2) .appr-shape {
    background: #FA1C3F
}

.svc .appr-item:nth-child(3) .appr-shape {
    background: #04E47E
}

.svc .appr-item:nth-child(4) .appr-shape {
    background: #FA1C3F
}

.svc .appr-item-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    color: #FEFEFE;
    margin: 0;
    flex: 1
}

.svc .appr-item-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform .12s ease-out
}

.svc .appr-item:hover .appr-item-toggle {
    transform: rotate(90deg)
}

.svc .appr-item-toggle::before,
.svc .appr-item-toggle::after {
    content: '';
    position: absolute;
    background: #04E47E;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.svc .appr-item-toggle::before {
    width: 12px;
    height: 2px
}

.svc .appr-item-toggle::after {
    width: 2px;
    height: 12px
}

.svc .appr-item-det {
    max-height: 0;
    overflow: hidden;
    transition: max-height .15s ease-out, opacity .1s linear;
    opacity: 0
}

.svc .appr-item:hover .appr-item-det {
    max-height: 500px;
    opacity: 1;
    padding-top: 12px
}

.svc .appr-item-det p {
    font-size: 17px;
    line-height: 1.7;
    color: #fefefed9;
    margin: 0
}

.svc .frm-sec {
    padding: 72px 24px;
    background: linear-gradient(135deg, #F8F9FA 0%, #EEF1F4 100%);
    position: relative
}

.svc .frm-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, #04e47e05 40px, #04e47e05 80px);
    pointer-events: none
}

.svc .frm-wrap {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.svc .frm-h {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #04020F;
    margin: 0 0 12px;
    text-align: left
}

.svc .frm-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #04020F;
    margin: 0 0 36px
}

.svc .frm {
    background: #FEFEFE;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 2px 4px 18px 0 #04020f17
}

.svc .frm-group {
    margin: 0 0 24px;
    position: relative
}

.svc .frm-label {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #04020F;
    margin: 0 0 8px
}

.svc .frm-input {
    width: 100%;
    padding: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #04020F;
    background: #F8F9FA;
    border: 2px solid transparent;
    border-radius: 7px;
    transition: border-color .1s linear, background .1s linear;
    outline: none
}

.svc .frm-input:focus {
    background: #FEFEFE;
    border-color: #04E47E
}

.svc .frm-input::placeholder {
    color: #04020f66
}

.svc .frm-budget-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #04020F;
    margin: 0 0 12px
}

.svc .frm-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.svc .frm-radio-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.svc .frm-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #04020f33;
    border-radius: 48px;
    position: relative;
    cursor: pointer;
    transition: border-color .1s linear;
    flex-shrink: 0
}

.svc .frm-radio:checked {
    border-color: #04E47E
}

.svc .frm-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #04E47E;
    border-radius: 48px
}

.svc .frm-radio-label {
    font-size: 17px;
    line-height: 1.7;
    color: #04020F;
    cursor: pointer
}

.svc .frm-privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin: 24px 0
}

.svc .frm-check {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #04020f33;
    border-radius: 7px;
    position: relative;
    cursor: pointer;
    transition: border-color .1s linear, background .1s linear;
    flex-shrink: 0;
    margin-top: 2px
}

.svc .frm-check:checked {
    border-color: #04E47E;
    background: #04E47E
}

.svc .frm-check:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #FEFEFE;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.svc .frm-privacy-text {
    font-size: 14px;
    line-height: 1.7;
    color: #04020fb3;
    flex: 1
}

.svc .frm-privacy-link {
    color: #04E47E;
    text-decoration: none;
    transition: color .1s linear
}

.svc .frm-privacy-link:hover {
    color: #FA1C3F
}

.svc .frm-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
    color: #FEFEFE;
    background: #04E47E;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background .1s linear, transform .08s ease-out, box-shadow .1s linear;
    box-shadow: 2px 1px 4px 0 #04e47e14;
    position: relative;
    overflow: hidden
}

.svc .frm-btn:hover {
    background: #03C66D;
    transform: translateY(-2px);
    box-shadow: 2px 4px 18px 0 #04e47e17
}

.svc .frm-btn:active {
    transform: translateY(0)
}

.svc .frm-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    background: #FEFEFE;
    border-radius: 48px;
    opacity: 0;
    transition: transform .15s ease-out, opacity .1s linear
}

.svc .frm-btn:active::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: .3
}

.svc .dvd-1 {
    height: 72px;
    position: relative;
    overflow: hidden
}

.svc .dvd-1::before,
.svc .dvd-1::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #04020f14
}

.svc .dvd-1::before {
    top: 36%;
    clip-path: path('M 0 0 Q 25 -8,50 0 T 100 0 L 100 2 Q 75 10,50 2 T 0 2 Z');
    transform: scaleX(12)
}

.svc .dvd-1::after {
    top: 42%;
    clip-path: path('M 0 0 Q 25 -6,50 0 T 100 0 L 100 2 Q 75 8,50 2 T 0 2 Z');
    transform: scaleX(12)
}

.svc .dvd-2 {
    height: 72px;
    position: relative;
    overflow: hidden
}

.svc .dvd-2::before,
.svc .dvd-2::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fefefe1f
}

.svc .dvd-2::before {
    top: 36%;
    clip-path: path('M 0 0 Q 25 8,50 0 T 100 0 L 100 2 Q 75 -10,50 2 T 0 2 Z');
    transform: scaleX(12)
}

.svc .dvd-2::after {
    top: 42%;
    clip-path: path('M 0 0 Q 25 6,50 0 T 100 0 L 100 2 Q 75 -8,50 2 T 0 2 Z');
    transform: scaleX(12)
}

@media (max-width: 960px) {
    .svc .ld-zone {
        flex-direction: column;
        gap: 36px;
        padding: 36px 24px
    }

    .svc .ld-img-wrap {
        width: 100%
    }

    .svc .ld-img {
        height: 400px
    }

    .svc .ld-h,
    .svc .ld-num {
        font-size: 56px
    }

    .svc .appr {
        padding: 36px 24px
    }

    .svc .appr-h {
        font-size: 56px
    }

    .svc .frm-sec {
        padding: 36px 24px
    }

    .svc .frm-h {
        font-size: 56px
    }

    .svc .frm {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .svc .ld-zone {
        padding: 24px 12px
    }

    .svc .ld-h,
    .svc .ld-num {
        font-size: 42px
    }

    .svc .ld-desc {
        font-size: 17px
    }

    .svc .ld-img {
        height: 320px
    }

    .svc .appr {
        padding: 24px 12px
    }

    .svc .appr-h {
        font-size: 42px
    }

    .svc .appr-item {
        padding: 12px
    }

    .svc .appr-item-title {
        font-size: 17px
    }

    .svc .frm-sec {
        padding: 24px 12px
    }

    .svc .frm-h {
        font-size: 42px
    }

    .svc .frm {
        padding: 24px;
        border-radius: 20px
    }

    .svc .frm-btn {
        font-size: 17px
    }
}

.success-pg {
    background: linear-gradient(167deg, #f4f5f2 0%, #fdfdfb 100%);
    padding: 72px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-pg .wrap {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.success-pg .icon-zone {
    width: 140px;
    height: 140px;
    margin: 0 auto 36px;
    position: relative;
    background: linear-gradient(134deg, #04E47E 0%, #02b864 100%);
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 18px 0 #04e47e17
}

.success-pg .icon-zone svg {
    width: 76px;
    height: 76px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success-pg .main-head {
    font-size: 70px;
    line-height: 1.2;
    color: #04020F;
    margin: 0 0 24px;
    font-weight: 700;
    letter-spacing: -.02em
}

.success-pg .msg-txt {
    font-size: 22px;
    line-height: 1.7;
    color: #04020F;
    margin: 0 0 36px;
    opacity: .82
}

.success-pg .detail-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    margin: 0 0 36px;
    box-shadow: 2px 1px 4px 0 #04020f14;
    text-align: left
}

.success-pg .detail-box .label {
    font-size: 14px;
    line-height: 1.2;
    color: #04020F;
    opacity: .6;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.success-pg .detail-box .val {
    font-size: 17px;
    line-height: 1.7;
    color: #04020F;
    margin: 0 0 24px
}

.success-pg .detail-box .val:last-child {
    margin-bottom: 0
}

.success-pg .detail-box .val strong {
    font-weight: 600
}

.success-pg .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-pg .btn-home {
    background: #04020F;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    padding: 16px 36px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .09s linear, box-shadow .11s ease-out;
    box-shadow: 2px 1px 4px 0 #04020f14;
    border: none;
    cursor: pointer;
    font-weight: 500
}

.success-pg .btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 2px 4px 18px 0 #04020f17
}

.success-pg .btn-contact {
    background: transparent;
    color: #04020F;
    font-size: 17px;
    line-height: 1.2;
    padding: 16px 36px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .1s ease-out;
    border: 2px solid #04020F;
    cursor: pointer;
    font-weight: 500
}

.success-pg .btn-contact:hover {
    background: #04020f0a
}

.success-pg .footnote {
    font-size: 14px;
    line-height: 1.7;
    color: #04020F;
    opacity: .6;
    margin: 36px 0 0
}

@media (max-width: 480px) {
    .success-pg {
        padding: 36px 24px
    }

    .success-pg .icon-zone {
        width: 110px;
        height: 110px;
        margin-bottom: 24px
    }

    .success-pg .icon-zone svg {
        width: 60px;
        height: 60px
    }

    .success-pg .main-head {
        font-size: 42px;
        margin-bottom: 12px
    }

    .success-pg .msg-txt {
        font-size: 17px;
        margin-bottom: 24px
    }

    .success-pg .detail-box {
        padding: 24px;
        margin-bottom: 24px
    }

    .success-pg .actions {
        flex-direction: column
    }

    .success-pg .btn-home,
    .success-pg .btn-contact {
        width: 100%;
        justify-content: center
    }
}