:root {
    --bg: #f5f4f0;
    --sf: #fff;
    --sf2: #f9f8f6;
    --ac: #ff5a00;
    --acd: #d44600;
    --acl: #fff3ee;
    --tx: #1a1a1a;
    --mu: #7a7a7a;
    --li: #b8b6b2;
    --bo: #e2e0dd;
    --bod: #cbc9c5;
    --dk: #1a1a1a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f5f4f0!important;
    color: var(--tx);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

section{
    margin: 0!important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 96px 48px 72px;
    gap: 100px;
    position: relative;
    overflow: hidden;
}

.hblob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hb1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 90, 0, 0.07);
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.hb2 {
    width: 260px;
    height: 260px;
    background: rgba(255, 90, 0, 0.05);
    left: 280px;
    bottom: 0;
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acl);
    border: 1px solid rgba(255, 90, 0, 0.2);
    border-radius: 100px;
    padding: 5px 14px 5px 5px;
    margin-bottom: 26px;
}

.hbdot {
    width: 22px;
    height: 22px;
    background: var(--ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.hbtxt {
    font-size: 11px;
    color: var(--ac);
    font-weight: 500;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -1.5px;
}

h1 em {
    font-style: normal;
    color: var(--ac);
}

h1 .stk {
    -webkit-text-stroke: 1.5px var(--bod);
    color: transparent;
}

.hsub {
    font-size: 15px;
    color: var(--mu);
    line-height: 1.8;
    max-width: 440px;
    margin: 22px 0 34px;
}

.hact {
    display: flex;
    gap: 11px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-calculate {
    display: inline-block;
    background: var(--ac);
    color: #fff;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 90, 0, 0.24);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-calculate:hover {
    background: var(--acd);
    transform: translateY(-2px)!important;
    box-shadow: 0 8px 28px rgba(255, 90, 0, 0.32)!important;
    color: #fff;
}

.btn-o {
    display: inline-block;
    background: transparent;
    color: var(--tx);
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    border: 1.5px solid var(--bod);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-o:hover {
    border-color: var(--ac);
    color: var(--ac)!important;
}

.btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #2AABEE;
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-tg:hover {
    background: #1a8dc7;
    transform: translateY(-1px);
    color: #fff;
}


.btn-max {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #c82aee;
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-max:hover {
    background: #9420b0;
    transform: translateY(-1px);
    color: #fff;
}

.btn-gh {
    font-size: 13px;
    font-weight: 500;
    color: var(--mu);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-gh:hover {
    color: var(--ac)!important;
}

.hero-r {
    display: flex;
    justify-content: center;
}

.cstk {
    position: relative;
    width: 400px;
    height: 470px;
}

.hc {
    position: absolute;
    background: var(--sf);
    border: 1px solid var(--bo);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}

.hc-bk {
    width: 330px;
    top: 14px;
    left: 52px;
    background: var(--ac);
    border: none;
    transform: rotate(3deg);
    z-index: 0;
    height: 185px;
}

.hc-mn {
    width: 370px;
    top: 34px;
    left: 16px;
    background: #1c1c1c;
    border-color: #2a2a2a;
    z-index: 1;
}

.hc-f1 {
    width: 180px;
    bottom: 75px;
    left: -8px;
    z-index: 2;
    animation: hfl 4s ease-in-out infinite;
}

.hc-f2 {
    width: 155px;
    top: 6px;
    right: -4px;
    z-index: 2;
    animation: hfl 5s ease-in-out infinite 1.2s;
}

@keyframes hfl {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.panim {
    width: 100%;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pla {
    animation: pla 2.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pla {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(.87); }
}

.hct {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.hcs {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 12px;
}

.hctags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.to {
    font-size: 9px;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(255, 90, 0, 0.2);
    color: var(--ac);
    font-weight: 500;
}

.tw {
    font-size: 9px;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hcl {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 4px;
}

.hcv {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ac);
}

.hcvs {
    font-size: 11px;
    color: var(--mu);
    margin-top: 2px;
}

.sg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--sf);
    border: 1px solid var(--bo);
    border-radius: 14px;
    overflow: hidden;
}

.si {
    padding: 28px 30px;
    border-right: 1px solid var(--bo);
    transition: background 0.3s;
    cursor: pointer;
}

.si:last-child {
    border-right: none;
}

.si:hover {
    background: var(--acl);
}

.sn {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.sn span {
    color: var(--ac);
}

.sl {
    font-size: 11px;
    color: var(--mu);
    margin-top: 5px;
}

.mq {
    background: var(--ac);
    padding: 15px 0;
    overflow: hidden;
}

.mq-t {
    display: flex;
    animation: mq 25s linear infinite;
    width: max-content;
}

.mi {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    white-space: nowrap;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.ms {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@keyframes mq {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ac);
    font-weight: 600;
    margin-bottom: 12px;
}

.stag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--ac);
    border-radius: 2px;
}

h2 {
    font-family: 'Unbounded', sans-serif!important;
    font-size: clamp(22px, 2.8vw, 40px)!important;
    font-weight: 800!important;
    line-height: 1.15!important;
}

h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.2;
}

.sg4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.sc {
    background: var(--sf2);
    border: 1px solid var(--bo);
    border-radius: 14px;
    padding: 26px 20px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.sc:hover {
    border-color: var(--ac);
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(255, 90, 0, 0.09);
}

.sc-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    color: var(--bod);
    font-weight: 700;
}

.sc-ic {
    width: 46px;
    height: 46px;
    background: var(--acl);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.sc:hover .sc-ic {
    background: var(--ac);
}

.sc-t {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.sc-d {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.6;
    height: 4rem;
}

.sc-p {
    margin-top: 14px;
    padding-top: 11px;
    border-top: 1px solid var(--bo);
    font-size: 11px;
    color: var(--mu);
    display: flex;
    justify-content: space-between;
}

.sc-p strong {
    color: var(--ac);
    font-weight: 600;
}

.sc-l {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 11px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ac);
    cursor: pointer;
    transition: gap 0.2s;
}

.sc-l:hover {
    gap: 8px;
    color: #ff5a0075 !important;
}

.ptable {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ptable th {
    background: var(--dk);
    color: #fff;
    padding: 13px 18px;
    text-align: left;
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ptable th:first-child {
    border-radius: 10px 0 0 0;
}

.ptable th:last-child {
    border-radius: 0 10px 0 0;
}

.ptable td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--bo);
}

.ptable tr:last-child td {
    border-bottom: none;
}

.ptable tr:hover td {
    background: var(--acl);
}

.ptable td:last-child {
    color: var(--ac);
    font-weight: 500;
}

.cls {
    background: var(--sf);
    padding: 48px;
    border-top: 1px solid var(--bo);
    border-bottom: 1px solid var(--bo);
}

.cll {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--li);
    text-align: center;
    margin-bottom: 28px;
}

.clr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}

.cln {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--bod);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
}

.cln:hover {
    color: var(--ac);
}

.desc {
    font-size: 14px!important;
    color: var(--mu)!important;
    line-height: 1.8!important;
    max-width: 500px!important;
    margin-top: 10px!important;
}

.flist {
    border-top: 1px solid var(--bo);
}

.fi {
    border-bottom: 1px solid var(--bo);
}

.fq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    color: var(--tx);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    gap: 12px;
    transition: color 0.2s;
}

.fq:hover {
    color: var(--ac);
}

.ficon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sf);
    border: 1.5px solid var(--bo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
    color: var(--mu);
}

.fi.open .fq {
    color: var(--ac);
}

.fi.open .ficon {
    transform: rotate(45deg);
    background: var(--acl);
    border-color: var(--ac);
    color: var(--ac);
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 13px;
    color: var(--mu);
    line-height: 1.8;
    padding-right: 38px;
}

.fi.open .fa {
    max-height: 300px;
    padding-bottom: 16px;
}

.ctab {
    background: var(--sf);
    position: relative;
    overflow: hidden;
}

.ctabl {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.07), transparent 70%);
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.ctai {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ctapts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding-left: 0;
}

.ctapts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--mu);
}

.ctapts li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--acl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac);
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 86px 18px 56px;
    }
    .hero-r {
        display: none;
    }
    h1 {
        font-size: 32px;
    }
    .sg {
        grid-template-columns: 1fr 1fr;
    }
    .si:nth-child(2), .si:nth-child(4) {
        border-right: none;
    }
    .si:nth-child(3), .si:nth-child(4) {
        border-top: 1px solid var(--bo);
    }
    .sg4 {
        grid-template-columns: 1fr 1fr;
    }
    .cls {
        padding: 36px 18px;
    }
    .ctai {
        grid-template-columns: 1fr;
    }
}

.slider-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 470px;
}

.slider-nav {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--li);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--ac);
    transform: scale(1.4);
    box-shadow: 0 0 0 2px rgba(255, 90, 0, 0.2);
}

.slider-dot:hover {
    background: var(--ac);
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    pointer-events: all;
}

.slider-slide .cstk {
    position: relative;
    width: 400px;
    height: 470px;
}

@keyframes plaFlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.35; }
}

.pla rect {
    animation: plaFlow 1.8s ease-in-out infinite;
}

.pla rect:nth-child(2) { animation-delay: 0.15s; }
.pla rect:nth-child(3) { animation-delay: 0.3s; }
.pla rect:nth-child(4) { animation-delay: 0.45s; }

@keyframes scanPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-2px); }
}

.scan-lines line {
    animation: scanPulse 2s ease-in-out infinite;
}

.scan-lines line:nth-child(2) { animation-delay: 0.2s; }
.scan-lines line:nth-child(3) { animation-delay: 0.4s; }
.scan-lines line:nth-child(4) { animation-delay: 0.6s; }
.scan-lines line:nth-child(5) { animation-delay: 0.8s; }

@media (max-width: 960px) {
    .slider-container {
        display: none;
    }
}

@media (max-width: 562px) {
    .sn { font-size: 24px; }
}
@media (max-width: 435px) {
    .sn { font-size: 20px;}
    .block_services{padding:80px 30px!important;}
}

@media (max-width: 489px) {
    .sc-t { height: 2rem; }
}
@media (max-width: 505px) {
    .sc-d { height: 7rem; }
}

.block_services{
    background:var(--sf);
    padding:80px 48px;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.about-block {
    background: var(--sf2);
    border: 1px solid var(--bo);
    border-radius: 14px;
    padding: 26px 20px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.about-block:hover {
    border-color: var(--ac);
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(255, 90, 0, 0.09);
}

.about-block h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--tx);
}

.about-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-block ul li {
    font-size: 12px;
    color: var(--mu);
    line-height: 1.6;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.about-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--ac);
    border-radius: 1px;
    transform: rotate(45deg);
}

.about-block.full-width {
    grid-column: 1 / -1;
}

.about-block.price-block {
    background: var(--dk);
    border-color: var(--dk);
    color: #fff;
}

.about-block.price-block h3 {
    color: #fff;
}

.about-block.price-block ul li {
    color: rgba(255, 255, 255, 0.7);
}

.about-block.price-block ul li::before {
    background: var(--ac);
}

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