:root {
    --bar: 64px;
}


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

html {
    scroll-behavior: smooth;
    zoom: 1.10;
    overflow: hidden;
}

body {
    font-family: 'Pretendard', sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* ---- top slim bar (no GNB menu) ---- */
.bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bar);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 56px);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: .3s
}

.bar.scrolled {
    border-bottom: 1px solid var(--border)
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22.5px;
    font-weight: 700;
    letter-spacing: -.02em;
    cursor: pointer
}

.logo i {
    width: 22px;
    height: 22px;
    background: var(--grad);
    border-radius: 6px;
    display: inline-block;
    transform: rotate(45deg)
}

.btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: 10px;
    transition: .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.btn-pri {
    background: var(--grad);
    color: #fff;
    padding: 11px 20px;
    font-size: 15.5px;
    box-shadow: 0 6px 18px -8px rgba(41, 182, 246, .7)
}

.btn-pri:hover {
    filter: brightness(.96);
    transform: translateY(-1px)
}

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--border);
    padding: 11px 20px;
    font-size: 15.5px
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.bar .btn-pri {
    padding: 9px 16px;
    font-size: 14.5px
}

/* ---- fullpage scroller ---- */
.scroller {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroller::-webkit-scrollbar {
    display: none;
}

section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--bar) + 22px) clamp(20px, 5vw, 56px) 34px;
    position: relative
}

.wrap {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto
}

.surface {
    background: var(--surface)
}

.eyebrow {
    font-size: 15px;
    letter-spacing: .22em;
    color: var(--bright);
    font-weight: 500;
    text-transform: uppercase
}

.s-head {
    text-align: center;
    margin-bottom: 26px
}

.s-head .eyebrow {
    display: block;
    margin-bottom: 10px
}

h2 {
    font-size: clamp(30px, 3.9vw, 46px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.22
}

.s-sub {
    margin-top: 13px;
    color: var(--slate);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65
}

.gtext {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

.rv-left {
    transform: translateX(-46px)
}

.rv-right {
    transform: translateX(46px) scale(.96)
}

.rv-pop {
    transform: scale(.5);
    transition: opacity .5s ease, transform .55s cubic-bezier(.3, 1.5, .5, 1)
}

.chips .chip {
    opacity: 0;
    transform: scale(.4);
    transition: opacity .4s ease, transform .45s cubic-bezier(.3, 1.5, .5, 1)
}

.cov.in .chips .chip {
    opacity: 1;
    transform: none
}

.cov.in .chip:nth-child(1) {
    transition-delay: .05s
}

.cov.in .chip:nth-child(2) {
    transition-delay: .12s
}

.cov.in .chip:nth-child(3) {
    transition-delay: .19s
}

.cov.in .chip:nth-child(4) {
    transition-delay: .26s
}

.cov.in .chip:nth-child(5) {
    transition-delay: .33s
}

.cov.in .chip:nth-child(6) {
    transition-delay: .4s
}

.faq .qa {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease
}

.faq.in .qa {
    opacity: 1;
    transform: none
}

.faq.in .qa:nth-child(1) {
    transition-delay: .05s
}

.faq.in .qa:nth-child(2) {
    transition-delay: .11s
}

.faq.in .qa:nth-child(3) {
    transition-delay: .17s
}

.faq.in .qa:nth-child(4) {
    transition-delay: .23s
}

.faq.in .qa:nth-child(5) {
    transition-delay: .29s
}

.faq.in .qa:nth-child(6) {
    transition-delay: .35s
}

.faq.in .qa:nth-child(7) {
    transition-delay: .41s
}

.faq.in .qa:nth-child(8) {
    transition-delay: .47s
}

.form .field,
.form .interest,
.form>.btn-pri {
    opacity: 0;
    transform: translateY(13px);
    transition: opacity .42s ease, transform .42s ease
}

.form.in .field,
.form.in .interest,
.form.in .btn-pri {
    opacity: 1;
    transform: none
}

.form.in .field:nth-of-type(2) {
    transition-delay: .08s
}

.form.in .field:nth-of-type(3) {
    transition-delay: .16s
}

.form.in .interest {
    transition-delay: .24s
}

.form.in>.btn-pri {
    transition-delay: .32s
}

/* ---- hero ---- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 48px;
    align-items: center
}

.hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-center .lead {
    max-width: none
}

.hero-center .badges {
    justify-content: center
}

.hero-center .hero-cta {
    justify-content: center
}

.hero-center .card-result {
    margin-top: 30px;
    width: 100%;
    max-width: 460px;
    text-align: left
}

.hero h1 {
    font-size: clamp(40px, 5.6vw, 66px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.12;
    margin-bottom: 20px
}

.hero p.lead {
    color: var(--slate);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100ch;
}

.badges {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.badge {
    background: var(--insight);
    border: 1px solid #CFE7F8;
    border-radius: 12px;
    padding: 14px 18px
}

.badge b {
    display: block;
    font-size: 25.5px;
    font-weight: 600;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.badge span {
    font-size: 14px;
    color: var(--slate)
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-center .badges {
    margin-bottom: 22px
}

.hero-trust {
    font-size: 13px;
    letter-spacing: .02em;
    color: var(--muted);
    margin: 14px 0 4px
}

.hero-video {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0
}

.hero .video-wrap {
    max-width: 800px;
    margin: 0 auto
}

.hero .video-cap {
    margin-top: 12px
}

/* demo video */
.video-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0E1419;
    box-shadow: 0 40px 90px -50px rgba(26, 61, 124, .6)
}

.video-wrap iframe,
.video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.video-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    cursor: pointer;
    background: radial-gradient(120% 120% at 50% 35%, rgba(41, 182, 246, .22), rgba(14, 20, 25, .92))
}

.video-poster .play {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px -8px rgba(41, 182, 246, .8);
    transition: .25s
}

.video-poster:hover .play {
    transform: scale(1.08)
}

.video-poster .play:after {
    content: "";
    border-left: 22px solid #fff;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    margin-left: 6px
}

.video-poster .ptxt {
    color: #fff;
    font-size: 16.5px;
    font-weight: 500;
    letter-spacing: -.01em;
    text-align: center
}

.video-poster .ptxt small {
    display: block;
    color: #9fc7e0;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

/* solution split */
.sol-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: center
}

.sol-left .sol-lead {
    margin-top: 14px;
    color: var(--slate);
    font-size: 19.5px;
    line-height: 1.6
}

.sol-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.sol-points .pt {
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #3399D1, #29B6F6) 1;
    padding-left: 16px
}

.sol-points .pt p {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.6
}

.sol-points .k-label {
    margin-bottom: 6px
}

.video-cap {
    text-align: center;
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--muted)
}

/* result card */
.card-result {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 30px 70px -40px rgba(26, 61, 124, .4)
}

.cr-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 14px
}

.cr-top .mono {
    color: var(--primary);
    font-weight: 500
}

.cr-file {
    font-size: 16.5px;
    font-weight: 600;
    margin-bottom: 14px
}

.wave {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 56px;
    margin-bottom: 16px
}

.wave span {
    flex: 1;
    border-radius: 2px;
    animation: eq 1.4s ease-in-out infinite
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(.6)
    }

    50% {
        transform: scaleY(1)
    }
}

.verdict {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--insight);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px
}

.verdict .lab {
    font-weight: 600;
    color: var(--deep);
    font-size: 15.5px
}

.verdict .lab i {
    color: var(--bright)
}

.verdict .pct {
    font-weight: 600;
    color: var(--deep);
    font-size: 17.5px
}

.meter {
    height: 7px;
    background: #E4EBF1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px
}

.meter>i {
    display: block;
    height: 100%;
    width: 99%;
    background: var(--grad)
}

.cr-foot {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--muted)
}

.cr-foot b {
    color: var(--ink);
    font-weight: 600
}

/* cards generic */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

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

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: .25s
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-3px)
}

.surface .card {
    background: #fff
}

.k-label {
    font-size: 14px;
    letter-spacing: .16em;
    color: var(--deep);
    text-transform: uppercase;
    margin-bottom: 12px
}

.card h3 {
    font-size: 21.5px;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 10px
}

.card p {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.65
}

/* performance */
.metric {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px
}

.metric.bright {
    border-color: #BBE3F9
}

.metric.deep {
    border-color: #C3CEE4
}

.metric .cap {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px
}

.metric.bright .cap {
    color: var(--bright)
}

.metric.deep .cap {
    color: var(--deep)
}

.metric .big {
    font-size: clamp(48px, 6.6vw, 72px);
    font-weight: 600;
    line-height: 1
}

.metric.bright .big {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.metric.deep .big {
    color: var(--deep)
}

.metric .note {
    font-size: 16px;
    color: var(--slate);
    margin-top: 14px
}

.meta3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px
}

.meta {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px
}

.meta b {
    font-size: 16px;
    font-weight: 600
}

.meta p {
    font-size: 15px;
    color: var(--slate);
    margin-top: 5px;
    line-height: 1.6
}

.insightbox {
    background: var(--insight);
    border: 1px solid #CFE7F8;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    color: var(--deep);
    font-size: 17.5px;
    font-weight: 500;
    margin-top: 16px
}

/* speed */
.bars {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 18px
}

.bars .ttl {
    font-size: 16px;
    color: var(--slate);
    margin-bottom: 20px
}

.barrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.barrow .name {
    width: 110px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px
}

.barrow.us .name {
    color: var(--primary)
}

.track {
    flex: 1;
    height: 26px;
    background: #EEF2F6;
    border-radius: 6px;
    overflow: hidden
}

.track>i {
    display: block;
    height: 100%;
    border-radius: 6px
}

.fill-us {
    width: 0;
    background: var(--grad)
}

.fill-comp {
    width: 0;
    background: #C7CDD6
}

.bars.in .fill-us {
    width: 5%;
    transition: width 1s cubic-bezier(.3, .8, .3, 1) .1s
}

.bars.in .fill-comp {
    width: 100%;
    transition: width 1.15s cubic-bezier(.3, .8, .3, 1) .1s
}

.barrow .val {
    font-size: 15px;
    white-space: nowrap;
    color: var(--slate)
}

.barrow.us .val {
    color: var(--ink);
    font-weight: 600
}

.stat4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px
}

.stat {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 8px;
    background: #fff
}

.stat b {
    font-size: 24.5px;
    font-weight: 600
}

.stat.hl b {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.stat.dp b {
    color: var(--deep)
}

.stat span {
    display: block;
    font-size: 14px;
    color: var(--slate);
    margin-top: 6px
}

.closing {
    text-align: center;
    color: var(--deep);
    font-size: 17.5px;
    font-weight: 500
}

/* coverage */
.cov {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px
}

.cov.bright {
    border-color: #BBE3F9
}

.cov.deep {
    border-color: #C3CEE4
}

.cov-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.cov-h .nm {
    font-size: 28.5px;
    font-weight: 800;
    letter-spacing: -.02em
}

.cov.bright .nm {
    color: var(--primary)
}

.cov.deep .nm {
    color: var(--deep)
}

.cov-h .cnt {
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px
}

.cov.bright .cnt {
    background: var(--insight);
    color: var(--primary)
}

.cov.deep .cnt {
    background: #EAEDF5;
    color: var(--deep)
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.chip {
    font-size: 15.5px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--deep)
}

.cov .cap {
    font-size: 16px;
    color: var(--slate)
}

.policy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px
}

.policy .p {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px
}

.policy b {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: var(--deep)
}

.policy p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6
}

/* scenarios */
.tag {
    display: inline-block;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--insight);
    color: var(--primary);
    margin-bottom: 14px
}

.tag.dp {
    background: #EAEDF5;
    color: var(--deep)
}

.scn .eff {
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--primary);
    line-height: 1.65;
    border-top: 1px dashed var(--border);
    padding-top: 14px
}

.subhead {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 18px
}

.subhead .sub-lb {
    font-size: 14.5px;
    letter-spacing: .12em;
    color: var(--deep);
    text-transform: uppercase;
    font-weight: 500
}

.subhead .sub-rule {
    flex: 1;
    height: 1px;
    background: var(--border)
}

.card.intg {
    border-top: 2px solid var(--bright)
}

/* integration */
.intg h3 {
    color: var(--primary)
}

.intg .way {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px
}

.intg .use {
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--deep);
    font-weight: 500
}

/* process timeline */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px
}

.timeline:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #3399D1, #29B6F6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s ease .25s
}

.timeline.in:before {
    transform: scaleX(1)
}

.step {
    text-align: center;
    position: relative
}

.step .num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 17.5px;
    opacity: 0;
    transform: scale(.4);
    transition: opacity .4s ease, transform .5s cubic-bezier(.3, 1.5, .5, 1)
}

.timeline.in .step .num {
    opacity: 1;
    transform: none
}

.timeline.in .step:nth-child(1) .num {
    transition-delay: .35s
}

.timeline.in .step:nth-child(2) .num {
    transition-delay: .5s
}

.timeline.in .step:nth-child(3) .num {
    transition-delay: .65s
}

.timeline.in .step:nth-child(4) .num {
    transition-delay: .8s
}

.step.last .num {
    background: var(--deep)
}

.step .nm {
    font-size: 18.5px;
    font-weight: 700
}

.step .dur {
    font-size: 15px;
    color: var(--primary);
    margin: 3px 0 7px
}

.step .ds {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6
}

/* faq */
.faq {
    max-width: 760px;
    margin: 0 auto;
    width: 100%
}

.qa {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: .2s
}

.qa.open {
    border-color: var(--primary)
}

.qa button {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink)
}

.qa .ic {
    color: var(--primary);
    font-size: 21.5px;
    flex: none
}

.qa .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.qa .ans p {
    padding: 0 20px 18px;
    font-size: 16.5px;
    color: var(--slate);
    line-height: 1.7
}

/* contact */
.form {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.field label {
    display: block;
    font-size: 13.5px;
    color: var(--slate);
    margin-bottom: 6px
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 13px;
    font-family: inherit;
    font-size: 15.5px;
    background: #fff;
    transition: .2s
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--bright);
    box-shadow: 0 0 0 3px rgba(41, 182, 246, .15)
}

.interest {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.opt {
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 14px;
    cursor: pointer;
    user-select: none;
    transition: .2s
}

.opt.on {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

.form .btn-pri {
    width: 100%;
    justify-content: center;
    padding: 14px
}

.contact-mail {
    text-align: center;
    font-size: 14.5px;
    color: var(--muted);
    margin-top: 18px
}

.contact-mail a {
    color: var(--primary);
    text-decoration: none
}

.contact-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
}

.contact-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-sns img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: opacity .2s ease;
}

.contact-sns a[href*="youtube"] img {
    width: 35px;
    height: 35px;
}

.contact-sns a[href*="x.com"] img {
    width: 24px;
    height: 24px;
}

.contact-sns a:hover img {
    opacity: .7;
}

/* footer */
.foot {
    scroll-snap-align: end;
    min-height: auto;
    background: var(--ink);
    color: #9aa3ad;
    padding: 26px clamp(20px, 5vw, 56px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px
}

.foot .logo {
    color: #fff;
    font-size: 18.5px
}

.foot small {
    font-size: 13.5px
}

/* nav dots */
.dots {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dots a {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #CBD3DC;
    transition: .25s;
    position: relative
}

.dots a.active {
    background: var(--bright);
    transform: scale(1.35)
}

.dots a span {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 12.5px;
    color: var(--slate);
    background: #fff;
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: .2s
}

.dots a:hover span {
    opacity: 1
}

@media (max-width:880px) {

    .hero-grid,
    .sol-grid,
    .grid3,
    .grid2,
    .meta3,
    .stat4,
    .timeline,
    .policy,
    .frow {
        grid-template-columns: 1fr
    }

    .timeline:before {
        display: none
    }

    .scroller {
        scroll-snap-type: none
    }

    section {
        min-height: auto;
        padding: calc(var(--bar) + 36px) 20px 44px
    }

    .dots {
        display: none
    }

    .frow {
        display: grid;
        gap: 14px
    }
}

/* ---- language switcher in bar ---- */
.bar-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.lang-flags{display:flex;align-items:center;gap:9px}
.flag-btn{width:30px;height:30px;padding:0;border:0;background:none;border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
    opacity:.45;transition:opacity .2s, transform .2s}
.flag-btn svg,
.flag-btn img{width:26px;height:26px;display:block;border-radius:50%;
    box-shadow:0 0 0 1px rgba(0,0,0,.10)}
.flag-btn:hover{opacity:.85;transform:translateY(-1px)}
.flag-btn:focus-visible{outline:none}
.flag-btn:focus-visible svg,
.flag-btn:focus-visible img
{box-shadow:0 0 0 3px rgba(41,182,246,.35)}
.flag-btn.active{opacity:1}
.flag-btn.active svg,
.flag-btn.active img
{box-shadow:0 0 0 2px var(--bright),0 2px 7px rgba(41,182,246,.40)}

/* ---- phone field with country code ---- */
.phone-row {
    display: flex;
    gap: 8px
}

.phone-row .cc-select {
    flex: none;
    width: 124px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 24px 11px 11px;
    font-family: inherit;
    font-size: 15.5px;
    color: var(--ink);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6571' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 7px center;
    background-size: 10px;
    cursor: pointer;
    transition: .2s
}

.phone-row .cc-select:focus {
    outline: none;
    border-color: var(--bright);
    box-shadow: 0 0 0 3px rgba(41, 182, 246, .15)
}

.phone-row input {
    flex: 1;
    min-width: 0
}

.s-sub.sub-form {
    margin-top: 10px;
    font-weight: 500;
    color: var(--primary)
}

@media (max-width:480px) {

    .flag-btn{width:26px;height:26px}
    .flag-btn svg{width:22px;height:22px}
    .lang-flags{gap:6px}

    .bar-right {
        gap: 8px
    }

    .bar .btn-pri {
        padding: 8px 12px;
        font-size: 13.5px
    }
}

