:root {
    --blue: #303af3;
    --red: #ff3b3e;
    --ink: #3b3b3b;
    --muted: #7c7c7c;
    --paper: #f8f8f8;
    --line: #d2d2d2;
    --green: #25b56f;
    --radius: 20px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
    mix-blend-mode: multiply
}

a {
    color: inherit
}

.header {
    position: sticky;
    top: 0;
    z-index: 9;
    height: 82px;
    padding: 0 7.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #dce6f3;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 147, .06)
}

.logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .logo img {
      width: 189px;
      height: 30px;
      object-fit: contain;
    }

    .logo-mark {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      background: var(--blue);
      font-size: 15px;
      letter-spacing: .02em;
    }

    .logo-text {
      display: grid;
      gap: 1px;
    }

    .logo-title {
      color: #111827;
      font-size: 18px;
      line-height: 1;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .logo-subtitle {
      color: var(--red);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

.header nav {
    display: flex;
    gap: 24px
}

.header nav a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none
}

.header nav a:hover {
    color: var(--red)
}

.header-cta {
    padding: 11px 17px;
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s
}

.header-cta:hover {
    box-shadow: 0 14px 30px rgba(255, 59, 62, .24);
    transform: translateY(-2px)
}

.header-cta i {
    font-size: 17px;
    font-style: normal
}

.section {
    padding: 105px 7.5vw
}

.eyebrow {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase
}

.eyebrow:before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--green);
    content: ""
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: Unbounded, Arial, sans-serif
}


.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 75px;
    background: radial-gradient(circle at 76% 22%, rgba(48, 58, 243, .11), transparent 30%), radial-gradient(circle at 12% 82%, rgba(255, 59, 62, .07), transparent 24%), #fff
}

.hero:before {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .62;
    background-image: linear-gradient(90deg, transparent 0 37%, rgba(48, 58, 243, .08) 37% 37.16%, transparent 37.16%), linear-gradient(0deg, transparent 0 62%, rgba(48, 58, 243, .06) 62% 62.16%, transparent 62.16%);
    content: ""
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 4vw;
    align-items: end
}

.hero h1 {
    max-width: 750px;
    margin: 25px 0 42px;
    font-size: clamp(38px, 4vw, 66px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero em,
h2 em {
    color: var(--blue);
    font-style: normal
}

.hero-side {
    padding-bottom: 8px
}

.hero-side p,
.intro-row>p,
.section-heading>p {
    max-width: 335px;
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.65
}

.round-link {
    display: flex;
    width: max-content;
    height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 38px;
    padding: 0 24px;
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s
}

.round-link br {
    display: none
}

.round-link b {
    font-size: 17px
}

.round-link:hover {
    box-shadow: 0 14px 30px rgba(255, 59, 62, .24);
    transform: translateY(-2px)
}

.hero-visual {
    position: relative;
    height: 360px;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(48, 58, 243, .16);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f9fcff, #eaf2ff);
    box-shadow: 0 18px 38px rgba(0, 0, 147, .12)
}

.hero-visual:after {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0 28px, rgba(48, 58, 243, .1) 29px 30px, transparent 31px 62px);
    content: ""
}

.arch {
    position: absolute;
    bottom: -95px;
    left: 50%;
    width: 520px;
    height: 460px;
    border: 1px solid rgba(48, 58, 243, .38);
    border-bottom: 0;
    border-radius: 250px 250px 0 0;
    transform: translateX(-50%)
}

.arch-2 {
    bottom: -88px;
    width: 365px;
    height: 350px
}

.arch-3 {
    bottom: -80px;
    width: 230px;
    height: 245px
}

.door {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 136px;
    height: 246px;
    background: linear-gradient(145deg, var(--blue), #202bc3);
    box-shadow: 18px 0 0 rgba(255, 59, 62, .22);
    transform: translateX(-50%)
}

.door-handle {
    position: absolute;
    top: 116px;
    right: 18px;
    width: 24px;
    height: 5px;
    border-radius: 4px;
    background: var(--red)
}

.hero-label {
    position: absolute;
    z-index: 2;
    font-family: Unbounded;
    font-size: 18px;
    line-height: 1.13;
    color: var(--blue)
}

.hero-label span {
    font-family: Manrope;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5d6272
}

.label-one {
    bottom: 44px;
    left: 7%
}

.label-two {
    top: 45px;
    right: 8%
}

.intro {
    background: var(--paper)
}

.intro-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px
}

.intro h2,
.section-heading h2,
.result h2,
.contact h2 {
    margin: 28px 0 0;
    font-size: clamp(32px, 3.1vw, 48px);
    line-height: 1.04;
    letter-spacing: 0;
}

.numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 84px;
    border-top: 1px solid var(--line)
}

.numbers div {
    display: flex;
    align-items: baseline;
    gap: 17px;
    padding: 25px 25px 0 0;
    border-right: 1px solid var(--line)
}

.numbers div+div {
    padding-left: 25px
}

.numbers div:last-child {
    border: 0
}

.numbers strong {
    font-family: Unbounded;
    font-size: 38px;
    letter-spacing: -2px;
    color: var(--blue)
}

.numbers span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4
}

.feature-area {
    background: #fff
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr .7fr;
    gap: 25px;
    align-items: end;
    margin-bottom: 47px
}

.section-heading h2 {
    grid-column: 2;
    margin: 0
}

.section-heading>p {
    grid-column: 3;
    margin-bottom: 5px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px
}

.feature {
    position: relative;
    min-height: 365px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid #dce6f3;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f5f9ff);
    box-shadow: 0 12px 30px rgba(0, 0, 147, .07)
}

.feature:before {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48, 58, 243, .05), transparent 46%);
    content: "";
    pointer-events: none
}

.feature h3 {
    position: relative;
    margin: 38px 0 14px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.27
}

.feature p {
    position: relative;
    max-width: 360px;
    margin: 0;
    color: #606060;
    font-size: 15px;
    line-height: 1.55
}

.card-no {
    position: relative;
    color: var(--red);
    font-size: 11px;
    font-weight: 800
}

.feature-price,
.feature-order,
.feature-pair,
.feature-catalog {
    grid-column: span 3
}

.feature-calc,
.feature-notify {
    display: flex;
    grid-column: span 6;
    min-height: 340px;
    justify-content: space-between;
    gap: 25px
}

.feature-promo,
.feature-claim {
    grid-column: span 6;
    min-height: 335px
}

.feature-price {
    background: linear-gradient(145deg, #fff, #eff3ff)
}

.price-ui {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 17px 19px;
    background: var(--blue);
    color: #fff;
    font-size: 11px
}

.price-ui small {
    display: block;
    color: #d9ddff;
    font-size: 9px
}

.price-ui strong {
    margin-left: auto;
    font-size: 16px
}

.toggle {
    width: 26px;
    height: 16px;
    margin-left: auto;
    padding: 2px;
    border-radius: 20px;
    background: #d9ddff
}

.toggle i {
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-radius: 50%;
    background: #fff
}

.pdf-sheet {
    position: absolute;
    right: 22px;
    bottom: 0;
    z-index: 1;
    width: 142px;
    height: 137px;
    padding: 16px;
    border-radius: 14px 14px 0 0;
    background: var(--red);
    color: #fff;
    transform: rotate(4deg)
}

.pdf-sheet span {
    font-size: 8px;
    font-weight: 800
}

.pdf-sheet b {
    display: block;
    margin-top: 16px;
    font-size: 12px
}

.pdf-sheet i {
    position: absolute;
    bottom: 14px;
    font-size: 10px;
    font-style: normal
}

.pair-ui {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    height: 100px;
    align-items: end;
    justify-content: center;
    gap: 17px;
    background: #edf2ff
}

.mini-door {
    width: 53px;
    height: 83px;
    border: 1px solid #aeb9e9;
    background: #fff
}

.mini-door.dark {
    background: var(--blue)
}

.pair-ui b {
    padding-bottom: 37px
}

.catalog-tags {
    position: absolute;
    bottom: 23px;
    z-index: 1;
    display: flex;
    gap: 7px
}

.catalog-tags span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800
}

.wide h3 {
    margin-top: 38px
}

.calc-ui {
    align-self: flex-end;
    width: 195px;
    padding: 17px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), #5962f4);
    color: #fff
}

.calc-ui span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d9ddff
}

.calc-ui b {
    display: block;
    margin-top: 4px;
    font-size: 17px
}

.calc-ui hr {
    margin: 13px 0;
    border: 0;
    border-top: 1px solid #9197fa
}

.calc-ui strong {
    display: block;
    margin-top: 5px;
    font-family: Unbounded;
    font-size: 25px;
    color: #fff
}

.calc-ui small {
    font-family: Manrope;
    font-size: 10px;
    color: #d9ddff
}

.notification {
    display: flex;
    align-self: flex-end;
    gap: 10px;
    width: 215px;
    padding: 15px;
    border-radius: 15px;
    background: var(--red);
    color: #fff
}

.notification i {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    font-style: normal;
    font-weight: bold
}

.notification p {
    font-size: 10px;
    line-height: 1.45;
    color: #fff
}

.feature-promo {
    background: linear-gradient(135deg, var(--blue) 0%, #5962f4 58%, #ff7779 125%);
    color: #fff
}

.feature-promo h3,
.feature-promo p,
.feature-promo a {
    color: #fff
}

.feature-promo a {
    position: absolute;
    bottom: 24px;
    z-index: 1;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none
}

.feature-promo a b {
    margin-left: 9px;
    font-size: 18px
}

.chat {
    position: absolute;
    right: 25px;
    bottom: 20px;
    z-index: 1;
    width: 205px
}

.chat span {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 6px 0 0 auto;
    padding: 9px 10px;
    border-radius: 10px 10px 2px 10px;
    background: #e8edff;
    color: var(--blue);
    font-size: 10px
}

.chat span+span {
    margin-left: 0;
    border-radius: 10px 10px 10px 2px;
    background: var(--blue);
    color: #fff
}

.process {
    color: #fff;
    background: linear-gradient(115deg, #171b85, var(--blue) 54%, #ff6264 130%)
}

.dark-heading .eyebrow,
.dark-heading>p {
    color: #fff
}

.dark-heading .eyebrow:before {
    background: #fff
}

.dark-heading h2,
.dark-heading h2 em {
    color: #fff
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, .32)
}

.process-list article {
    display: grid;
    grid-template-columns: 70px 1fr 150px;
    gap: 25px;
    align-items: start;
    padding: 29px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .32)
}

.process-list article>span,
.process-list b {
    font-size: 11px;
    font-weight: 800;
    color: #fff
}

.process-list h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px
}

.process-list p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.6
}

.process-list b {
    text-align: right;
    letter-spacing: .7px;
    text-transform: uppercase
}

.result {
    background: var(--paper)
}

.result h2 {
    margin-bottom: 66px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line)
}

.result-grid div {
    padding: 25px 30px 10px 0;
    border-right: 1px solid var(--line)
}

.result-grid div+div {
    padding-left: 30px
}

.result-grid div:last-child {
    border: 0
}

.result-grid span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase
}

.result-grid p {
    margin: 15px 0;
    color: #4e4e4e;
    font-size: 15px;
    line-height: 1.55
}

.contact {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    padding-top: 76px;
    background: linear-gradient(115deg, #171b85, var(--blue) 58%, var(--red) 145%);
    color: #fff
}

.contact:after {
    position: absolute;
    right: 4vw;
    bottom: -6vw;
    color: rgba(255, 255, 255, .09);
    font-family: Unbounded;
    font-size: 29vw;
    font-weight: 800;
    line-height: .7;
    content: "SV";
    pointer-events: none
}

.contact h2,
.contact .eyebrow,
.contact>a {
    position: relative;
    z-index: 1;
    color: #fff
}

.contact .eyebrow:before {
    background: #fff
}

.contact em {
    color: #fff
}

.contact>a {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none
}

.contact>a span {
    margin-left: 14px;
    font-size: 20px
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 7.5vw;
    border-top: 1px solid #dce6f3;
    background: #fff;
    color: var(--ink);
    font-size: 10px
}

footer p {
    margin: 0;
    color: var(--muted)
}

@media(max-width:800px) {
    .header {
        height: 67px;
        padding: 0 5vw
    }

    .header nav {
        display: none
    }

    .header-cta {
        font-size: 10px
    }

    .section {
        padding: 75px 5vw
    }

    .hero {
        padding-top: 55px
    }

    .hero-grid,
    .intro-row {
        display: block
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.04;
        letter-spacing: -2.1px
    }

    .hero-side {
        margin-top: 18px
    }

    .hero-visual {
        height: 280px;
        margin-top: 45px;
        border-radius: 16px
    }

    .arch {
        transform: translateX(-50%) scale(.75);
        transform-origin: bottom
    }

    .label-one {
        bottom: 26px;
        left: 5%
    }

    .label-two {
        top: 25px;
        right: 5%
    }

    .intro {
        padding-top: 82px
    }

    .numbers {
        margin-top: 50px
    }

    .numbers div,
    .numbers div+div {
        padding: 17px 10px 0
    }

    .numbers strong {
        font-size: 31px
    }

    .numbers span {
        font-size: 9px
    }

    .section-heading {
        display: block
    }

    .section-heading h2 {
        margin: 22px 0
    }

    .section-heading>p {
        margin-top: 14px
    }

    .feature-grid {
        display: block
    }

    .feature {
        margin-bottom: 12px;
        border-radius: 16px
    }

    .feature-price,
    .feature-order,
    .feature-pair,
    .feature-catalog {
        min-height: 315px
    }

    .feature-calc,
    .feature-notify {
        position: relative;
        display: block;
        min-height: 360px
    }

    .calc-ui,
    .notification {
        position: absolute;
        right: 20px;
        bottom: 20px
    }

    .feature-promo,
    .feature-claim {
        min-height: 330px
    }

    .process-list article {
        grid-template-columns: 35px 1fr;
        padding: 24px 0
    }

    .process-list article>b {
        grid-column: 2;
        margin-top: 3px;
        text-align: left
    }

    .process-list h3 {
        font-size: 17px
    }

    .result h2 {
        margin-bottom: 42px
    }

    .result-grid {
        display: block
    }

    .result-grid div,
    .result-grid div+div {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .result-grid div:last-child {
        border: 0
    }

    .contact {
        min-height: 370px
    }

    .contact:after {
        bottom: -3vw;
        font-size: 42vw
    }

    footer {
        padding: 20px 5vw
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 30px;
        letter-spacing: -1.5px
    }

    .header-cta {
        padding: 9px 11px
    }
}
