/* Base */
:root{
    --bg: #060B1F;
    --bg2: #07112e;
    --card: rgba(255,255,255,.06);
    --card2: rgba(255,255,255,.09);
    --stroke: rgba(255,255,255,.14);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.72);
    --muted2: rgba(255,255,255,.55);
    --accent: #5EE7FF;
    --accent2: #7C5CFF;
    --shadow: 0 18px 50px rgba(0,0,0,.35);
    --radius: 20px;
    --radius2: 28px;
    --container: 1180px;
}

*{
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg);
    position: relative;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(94,231,255,.15), transparent 55%),
        radial-gradient(900px 600px at 80% 20%, rgba(124,92,255,.14), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2));
}

a, button{
    font-family: inherit;
}

button{
    cursor: pointer;
}

.container{
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.app{
    min-height: 100vh;
}

/* Light theme */
.theme_light{
    --bg: #D6E6F3;
    --bg2: #F4FAFF;
    --card: rgba(255,255,255,.75);
    --card2: rgba(255,255,255,.9);
    --stroke: rgba(0,0,0,.08);
    --text: #0B1C2D;
    --muted: rgba(11,28,45,.65);
    --muted2: rgba(11,28,45,.45);
    --accent: #0F52BA;
    --accent2: #A6C5D7;
    --shadow: 0 18px 50px rgba(15,82,186,.18);
}

body.theme_light::before{
    background:
        radial-gradient(1200px 700px at 20% 0%, rgba(166,197,215,.55), transparent 60%),
        radial-gradient(900px 600px at 80% 20%, rgba(214,230,243,.65), transparent 60%),
        linear-gradient(180deg, var(--bg), var(--bg2));
}

/* NAV */
.nav{
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(6,11,31,.88);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

body.theme_light .nav{
    background: rgba(255,255,255,.82);
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(18px);
}

.nav__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.nav__overlay{
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(2px);
    z-index: 60;
}

.brand{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    user-select: none;
}

.brand[role="button"]{
    cursor: pointer;
}

.brand__logo{
    height: 28px;
    width: auto;
    display: block;
}

.brand__name{
    font-weight: 750;
    letter-spacing: .2px;
}

.brand__tag{
    font-size: 12px;
    color: var(--muted2);
    border: 1px solid rgba(255,255,255,.12);
    padding: 4px 8px;
    border-radius: 999px;
}

body.theme_light .brand__tag{
    border-color: rgba(0,0,0,.12);
}

.nav__links{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__link{
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted);
    padding: 10px 10px;
    border-radius: 12px;
    transition: .2s ease;
}

.nav__link:hover{
    color: var(--text);
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

body.theme_light .nav__link:hover{
    border-color: rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
}

.nav__link.is-active{
    color: var(--text);
    background: rgba(94,231,255,.08);
    border-color: rgba(94,231,255,.22);
}

body.theme_light .nav__link.is-active{
    color: var(--accent);
    background: rgba(15,82,186,.08);
    border-color: rgba(15,82,186,.22);
}

.nav__cta{
    margin-left: 4px;
}

.navCtaSm{
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 12px;
}

.themeToggle{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(94,231,255,.22);
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: .2s ease;
}

.themeToggle:hover{
    transform: translateY(-1px);
    border-color: rgba(94,231,255,.38);
    background: rgba(255,255,255,.10);
}

.themeToggle:active{
    transform: translateY(0);
}

.themeToggle__icon{
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

body.theme_light .themeToggle{
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
}

body.theme_light .themeToggle:hover{
    border-color: rgba(15,82,186,.25);
    background: rgba(255,255,255,.85);
}

.burger{
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}

.burger span{
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 4px;
    transition: .2s ease;
}

body.theme_light .burger{
    border-color: rgba(0,0,0,.12);
    background: rgba(255,255,255,.65);
}

body.theme_light .burger span{
    background: rgba(11,28,45,.75);
}

.burger.is-open span:nth-child(1){
    transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2){
    opacity: 0;
}

.burger.is-open span:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
}

/* HERO */
.hero{
    position: relative;
    padding: 70px 0 46px;
    scroll-margin-top: 96px;
}

.hero__bg{
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid{
    position: absolute;
    inset: -40px -40px;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .18;
    transform: perspective(900px) rotateX(60deg) translateY(-140px);
}

.blob{
    position: absolute;
    filter: blur(30px);
    opacity: .35;
    border-radius: 999px;
}

.blob_a{
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(94,231,255,.9), rgba(94,231,255,0) 60%);
    left: -120px;
    top: -140px;
}

.blob_b{
    width: 540px;
    height: 540px;
    background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.95), rgba(124,92,255,0) 60%);
    right: -160px;
    top: -120px;
}

.hero__inner{
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
}

.pill{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-size: 13px;
}

body.theme_light .pill{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.55);
}

.pill__dot{
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 0 0 5px rgba(94,231,255,.08);
}

.h1{
    font-size: clamp(30px, 3.6vw, 52px);
    line-height: 1.05;
    margin: 14px 0 12px;
    letter-spacing: -.6px;
}

.lead{
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 56ch;
}

.hero__actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn{
    border-radius: 14px;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: var(--text);
    transition: .2s ease;
}

.btn:hover{
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.07);
}

.btn:active{
    transform: translateY(0);
}

.btn_primary{
    border-color: rgba(94,231,255,.35);
    background: linear-gradient(135deg, rgba(94,231,255,.22), rgba(124,92,255,.22));
    box-shadow: 0 12px 40px rgba(94,231,255,.10);
}

body.theme_light .btn_primary{
    background: linear-gradient(135deg, #0F52BA, #A6C5D7);
    border: none;
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(15,82,186,.35);
}

.btn_ghost{
    background: rgba(255,255,255,.03);
}

.hero__stats{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat{
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    min-width: 140px;
}

body.theme_light .stat{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.55);
}

.stat__num{
    font-weight: 800;
    letter-spacing: -.2px;
    font-size: 18px;
}

.stat__txt{
    margin-top: 2px;
    color: var(--muted2);
    font-size: 12px;
}

/* Visual mock */
.hero__visual{
    position: relative;
}

.mock{
    border-radius: var(--radius2);
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    box-shadow: var(--shadow);
    overflow: hidden;
}

body.theme_light .mock{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
}

.mock__top{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.12);
}

body.theme_light .mock__top{
    background: rgba(0,0,0,.04);
    border-bottom-color: rgba(0,0,0,.10);
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 99px;
    opacity: .9;
}

.dot_r{ background: #FF5A6A; }
.dot_y{ background: #FFC14A; }
.dot_g{ background: #5DFFB3; }

.mock__title{
    margin-left: 10px;
    color: var(--muted);
    font-size: 12px;
}

.mock__body{
    padding: 14px;
    display: grid;
    gap: 12px;
}

.ph{
    border-radius: 16px;
    border: 1px dashed rgba(255,255,255,.18);
    background: rgba(255,255,255,.03);
    position: relative;
    overflow: hidden;
}

body.theme_light .ph{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.55);
}

.ph_photo{
    border-style: solid;
}

.ph_wide{
    aspect-ratio: var(--ar, 16 / 9);
    height: auto;
    background: rgba(0,0,0,.10);
}

.ph__img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 0% 50%;
}


.ph_wide .ph__img{
    object-fit: contain;
    object-position: center;
    background: rgba(0,0,0,.08);
}

.ph_heroChart .ph__img{ object-position: 7% 9%; }

.ph_kpi{}
.ph_chart{ height: 160px; }
.ph_table{ height: 190px; }

.floating{
    position: absolute;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    animation: float 6s ease-in-out infinite;
}

.floating_a{
    left: -15px;
    bottom: -25px;
    background: rgba(228,247,254,.20);
}

.floating_b{
    right: -15px;
    top: 42px;
    animation-delay: -2s;
    background: rgba(228,247,254,.20);
}

body.theme_light .floating{
    background: rgba(255,255,255,.85);
    color: #0B1C2D;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 12px 30px rgba(15,82,186,.25);
}

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

/* SECTIONS */
.section{
    padding: 54px 0;
    scroll-margin-top: 96px;
}

.section__head{
    max-width: 70ch;
}

.eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted2);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.h2{
    margin: 10px 0 10px;
    font-size: clamp(22px, 2.3vw, 34px);
    letter-spacing: -.4px;
}

.sub{
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Cards */
.cards{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.card{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

body.theme_light .card{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

.card__icon{ font-size: 22px; }
.card__title{ margin-top: 8px; font-weight: 750; }
.card__text{ margin-top: 6px; color: var(--muted); line-height: 1.55; }

/* Glass */
.glass{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    padding: 16px;
}

body.theme_light .glass{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

.glass__title{ font-weight: 800; }
.glass__text{ margin: 8px 0 12px; color: var(--muted); line-height: 1.55; }

/* Features slider */
.features_slider{
    position: relative;
    margin-top: 18px;
}

.features_slider_track{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features_slider_track.is-dragging{
    cursor: grabbing;
}

.features_slider_track::-webkit-scrollbar{
    width: 0;
    height: 0;
}

.features_slider_track .glass{
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
}

.features_slider_arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
    transition: .2s ease;
}

.features_slider_arrow:hover{
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
}

.features_slider_arrow:disabled{
    opacity: .35;
    pointer-events: none;
}

.features_slider_arrow_icon{
    display: block;
    line-height: 1;
    font-size: 28px;
    transform: translateY(-1px);
}

.features_slider_arrow_left{
    left: -14px;
}

.features_slider_arrow_right{
    right: -14px;
}

body.theme_light .features_slider_arrow{
    border-color: rgba(0,0,0,.14);
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 26px rgba(0,0,0,.14);
}

body.theme_light .features_slider_arrow:hover{
    background: rgba(255,255,255,.92);
    border-color: rgba(0,0,0,.20);
}

.features_slider_dots{
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.features_slider_dot{
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.22);
}

.features_slider_dot.is-active{
    width: 22px;
    background: linear-gradient(135deg, rgba(94,231,255,.85), rgba(124,92,255,.85));
    border-color: rgba(94,231,255,.35);
}

body.theme_light .features_slider_dot{
    border-color: rgba(0,0,0,.16);
    background: rgba(0,0,0,.14);
}

body.theme_light .features_slider_dot.is-active{
    background: linear-gradient(135deg, rgba(15,82,186,.95), rgba(166,197,215,.95));
    border-color: rgba(15,82,186,.30);
}

/* KPIs */
.kpis{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.kpi{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
}

body.theme_light .kpi{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

.kpi__num{
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.6px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kpi__txt{ margin-top: 6px; color: var(--muted); }

/* Pricing */
.pricing{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.priceCard{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

.priceCard:hover{
    transform: translateY(-4px);
    border-color: rgba(94,231,255,.22);
}

body.theme_light .priceCard{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

.priceCard_featured{
    background: linear-gradient(180deg, rgba(94,231,255,.10), rgba(124,92,255,.08));
    border-color: rgba(94,231,255,.22);
    box-shadow: 0 18px 50px rgba(94,231,255,.10);
}

.priceCard__badge{
    display: inline-flex;
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--muted);
    font-size: 12px;
    background: rgba(255,255,255,.03);
}

.priceCard__title{ font-weight: 900; font-size: 18px; }
.priceCard__text{ margin: 0; color: var(--muted); line-height: 1.55; }

.priceCard__hint{
    margin-top: 6px;
    color: var(--muted2);
    font-size: 12px;
}

.list{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

/* Contact */
.contact{
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 14px;
    align-items: start;
}

.contact__card{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
}

body.theme_light .contact__card{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

.contact__title{ font-weight: 900; font-size: 18px; }
.contact__text{ margin: 10px 0 14px; color: var(--muted); line-height: 1.6; }
.contact__meta{ display: grid; gap: 10px; }

.metaRow{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

body.theme_light .metaRow{
    border-color: rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
}

.metaKey{ color: var(--muted2); font-size: 12px; }
.metaVal{ color: var(--text); font-size: 13px; }
.contact__note{ margin-top: 12px; color: var(--muted2); font-size: 12px; line-height: 1.5; }

.form{
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
}

body.theme_light .form{
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
    border-color: var(--stroke);
    box-shadow: var(--shadow);
}

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

.field{
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.field > span{
    color: var(--muted2);
    font-size: 12px;
}

input, select, textarea{
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.16);
    color: var(--text);
    outline: none;
}

body.theme_light input,
body.theme_light select,
body.theme_light textarea{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
}

input::placeholder, textarea::placeholder{
    color: rgba(255,255,255,.38);
}

body.theme_light input::placeholder,
body.theme_light textarea::placeholder{
    color: rgba(11,28,45,.45);
}

input:focus, select:focus, textarea:focus{
    border-color: rgba(94,231,255,.35);
    box-shadow: 0 0 0 4px rgba(94,231,255,.10);
}

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

.status{
    opacity: 0;
    transform: translateY(2px);
    transition: .2s ease;
    font-size: 13px;
    color: var(--muted);
}

.status.is-show{
    opacity: 1;
    transform: translateY(0);
}

.status.ok{ color: rgba(93,255,179,.95); }

.fineprint{
    margin-top: 10px;
    color: var(--muted2);
    font-size: 12px;
    line-height: 1.5;
}

/* Footer */
.footer{
    padding: 26px 0 40px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: transparent;
}

body.theme_light .footer{
    border-top: 1px solid var(--stroke);
    background: linear-gradient(180deg, transparent, rgba(15,82,186,.08));
}

.footer__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.brand_small{ height: 32px; }
.brand_small .brand__logo{ height: 24px; }
.brand_small .brand__tag{ display: none; }

.footer__muted{ color: var(--muted2); font-size: 12px; }
.footer__right{ display: flex; gap: 10px; flex-wrap: wrap; }

.link{
    background: transparent;
    border: 1px solid rgba(255,255,255,.10);
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 14px;
}

body.theme_light .link{
    border-color: rgba(0,0,0,.12);
}

.link:hover{
    color: var(--text);
    background: rgba(255,255,255,.05);
}

/* Cookie */
.cookie{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 0;
    z-index: 120;
}

.cookie__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,31,.92);
    box-shadow: var(--shadow);
    padding: 12px 14px;
}

body.theme_light .cookie__inner{
    border-color: rgba(0,0,0,.10);
    background: rgba(255,255,255,.92);
}

.cookie__text{
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    max-width: 70ch;
}

.cookie__actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie__link{
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.35);
}

body.theme_light .cookie__link{
    border-bottom-color: rgba(0,0,0,.25);
}

.cookie__btn{
    padding: 10px 14px;
}

/* Modal */
.modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 18px;
}

.modal__inner{
    width: min(560px, 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(6,11,31,.92);
    box-shadow: var(--shadow);
}

body.theme_light .modal__inner{
    background: rgba(255,255,255,.92);
    border-color: rgba(0,0,0,.12);
}

.modal__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

body.theme_light .modal__head{
    border-bottom-color: rgba(0,0,0,.10);
}

.modal__title{
    font-weight: 900;
    font-size: 16px;
}

.modal__close{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--text);
}

body.theme_light .modal__close{
    border-color: rgba(0,0,0,.12);
    background: rgba(0,0,0,.04);
}

.modal__body{
    padding: 14px 16px 16px;
}

.modal__text{
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.55;
}

.modal__actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 920px){
    .hero__inner{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cards{ grid-template-columns: 1fr; }
    .kpis{ grid-template-columns: 1fr; }
    .pricing{ grid-template-columns: 1fr; }
    .contact{ grid-template-columns: 1fr; }
    .form__row{ grid-template-columns: 1fr; }

    .nav__links{
        position: fixed;
        top: 76px;
        right: 16px;
        left: 16px;
        max-height: calc(100vh - 92px);
        overflow: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,.14);
        background: #0b1226;
        color: #ffffff;
        box-shadow: var(--shadow);
        z-index: 70;
    }

    body.theme_light .nav__links{
        background: #ffffff;
        color: #0b1c2d;
        border-color: rgba(0,0,0,.12);
    }

    .nav__links.is-open{
        display: flex;
    }

    .nav__link{
        color: inherit;
        text-align: left;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav__link:hover{
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.18);
    }

    body.theme_light .nav__link:hover{
        background: rgba(0,0,0,.04);
        border-color: rgba(0,0,0,.12);
    }

    .nav__cta{
        width: 100%;
    }

    .nav__themeToggle{
        width: 100%;
        height: 44px;
        justify-content: center;
    }

    .burger{
        display: flex;
        z-index: 90;
    }
    .features_slider_track .glass{
        flex: 0 0 100%;
    }

    .features_slider_arrow{
        display: none;
    }
}

@media (max-width: 768px){
    .brand__logo{ height: 26px; }
    .brand__name{ font-size: 16px; }
    .brand__tag{ display: none; }
}
