﻿:root {
    --bg: #030816;
    --bg-soft: #071226;
    --surface: rgba(8, 21, 43, .82);
    --surface-strong: rgba(10, 27, 55, .96);
    --surface-soft: rgba(11, 27, 53, .68);
    --line: rgba(121, 151, 210, .16);
    --line-strong: rgba(88, 138, 246, .34);
    --text: #f7f9ff;
    --muted: #95a5c1;
    --muted-strong: #c8d3e7;
    --primary: #6079ff;
    --primary-strong: #4059e8;
    --cyan: #65d9f2;
    --green: #69dfb8;
    --amber: #ffcf72;
    --danger: #ff8fa2;
    --shell: 1400px;
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 0%, rgba(36, 110, 236, .16), transparent 30%),
        radial-gradient(circle at 90% 12%, rgba(95, 76, 219, .14), transparent 32%),
        linear-gradient(180deg, #030816 0%, #050c1a 52%, #020610 100%);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.landing-page.is-modal-open {
    overflow: hidden;
}

body.landing-page a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

.landing-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 12px 16px;
    border-radius: 10px;
    color: #071226;
    background: #fff;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
}

.landing-skip-link:focus {
    transform: translateY(0);
}

.landing-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.landing-background span {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .7;
}

.landing-background span:nth-child(1) {
    top: -130px;
    left: -80px;
    width: 330px;
    height: 330px;
    background: rgba(48, 130, 255, .18);
}

.landing-background span:nth-child(2) {
    right: -90px;
    top: 140px;
    width: 360px;
    height: 360px;
    background: rgba(104, 70, 255, .18);
}

.landing-background span:nth-child(3) {
    left: 50%;
    bottom: -180px;
    width: 440px;
    height: 440px;
    background: rgba(0, 185, 255, .12);
    transform: translateX(-50%);
}

.landing-shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    border-bottom: 1px solid transparent;
    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.landing-header.is-scrolled {
    border-color: var(--line);
    background: rgba(3, 8, 22, .88);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.landing-header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .14em;
    text-decoration: none;
}

.landing-brand img {
    width: 42px;
    height: 42px;
}

.landing-brand > span {
    font-size: 20px;
}

.landing-brand > span > span {
    color: var(--cyan);
}

.landing-mobile-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
}

.landing-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.landing-navigation a,
.landing-navigation__contact {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    color: #aab9cf;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color .16s ease,
        background .16s ease;
}

.landing-navigation a:hover,
.landing-navigation a:focus-visible,
.landing-navigation__contact:hover,
.landing-navigation__contact:focus-visible {
    color: #fff;
    background: rgba(110, 138, 194, .08);
    outline: none;
}

.landing-header__actions,
.hero__actions,
.cta-band__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button:focus-visible {
    outline: 3px solid rgba(101, 155, 255, .32);
    outline-offset: 3px;
}

.landing-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #6f7fff 0%, #5468f2 52%, #4256e5 100%);
    box-shadow: 0 16px 36px rgba(69, 90, 229, .28);
}

.landing-button--primary:hover {
    box-shadow: 0 20px 46px rgba(69, 90, 229, .38);
}

.landing-button--ghost {
    color: #dce6f6;
    border-color: var(--line);
    background: rgba(7, 18, 38, .58);
}

.landing-button--ghost:hover {
    border-color: rgba(103, 148, 255, .34);
    background: rgba(11, 28, 57, .78);
}

.landing-button--large {
    min-height: 56px;
    padding-inline: 26px;
    border-radius: 16px;
    font-size: 14px;
}

.landing-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    background: rgba(6, 18, 35, .76);
}

.landing-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: currentColor;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 18px currentColor;
    content: "";
}

.eyebrow--center {
    justify-content: center;
}

.hero {
    padding: 156px 0 90px;
}

.hero__grid {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    align-items: center;
    gap: clamp(42px, 6vw, 86px);
}

.hero__content {
    max-width: 610px;
}

.hero__content h1 {
    margin: 24px 0 24px;
    font-size: clamp(50px, 5vw, 78px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hero__content h1 em {
    display: block;
    color: #79aeff;
    font-style: normal;
}

.hero__content > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
}

.hero__actions {
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero__signals {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.hero__signals article {
    padding: 18px 19px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 23, 47, .62);
}

.hero__signals strong,
.hero__signals span {
    display: block;
}

.hero__signals strong {
    font-size: 15px;
}

.hero__signals span {
    margin-top: 7px;
    color: #92a2be;
    font-size: 13px;
    line-height: 1.58;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    position: absolute;
    inset: -38px 24px auto auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(78, 94, 241, .18);
    filter: blur(85px);
    content: "";
}

.hero-visual__surface {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 153, 212, .2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(83, 97, 228, .14), transparent 28%),
        linear-gradient(145deg, rgba(11, 27, 56, .97), rgba(4, 12, 27, .98));
    box-shadow:
        0 45px 110px rgba(0, 0, 0, .42),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

.hero-visual__header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 11, 24, .56);
}

.hero-visual__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-visual__brand i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 35% 30%, #7ce5f5 0%, #4c72f1 72%);
    box-shadow: 0 12px 28px rgba(77, 99, 241, .26);
}

.hero-visual__brand strong,
.hero-visual__brand span {
    display: block;
}

.hero-visual__brand strong {
    font-size: 13px;
    letter-spacing: .12em;
}

.hero-visual__brand span {
    margin-top: 4px;
    color: #7a8aa5;
    font-size: 10px;
}

.hero-visual__chip {
    padding: 9px 12px;
    border: 1px solid rgba(101, 155, 255, .2);
    border-radius: 999px;
    color: #dfe8f8;
    background: rgba(73, 97, 218, .12);
    font-size: 10px;
    font-weight: 750;
}

.hero-visual__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 24px 24px 0;
}

.hero-visual__stats article {
    min-height: 110px;
    padding: 18px;
    border: 1px solid rgba(126, 155, 214, .14);
    border-radius: 16px;
    background: rgba(11, 27, 53, .66);
}

.hero-visual__stats span,
.hero-visual__stats strong,
.hero-visual__stats small {
    display: block;
}

.hero-visual__stats span {
    color: #8b9bb4;
    font-size: 10px;
}

.hero-visual__stats strong {
    margin-top: 12px;
    font-size: 28px;
    letter-spacing: -.03em;
}

.hero-visual__stats small {
    margin-top: 8px;
    color: #6fe0be;
    font-size: 10px;
}

.hero-visual__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 14px 24px 0;
}

.hero-visual__panel {
    padding: 18px;
    border: 1px solid rgba(126, 155, 214, .14);
    border-radius: 18px;
    background: rgba(7, 18, 37, .7);
}

.panel-heading span,
.panel-heading b {
    display: block;
}

.panel-heading span {
    color: #7f8ea8;
    font-size: 10px;
}

.panel-heading b {
    margin-top: 5px;
    font-size: 15px;
}

.flow-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.flow-list div {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 13px;
    background: rgba(11, 27, 53, .66);
}

.flow-list i {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
}

.flow-list i.is-cyan {
    background: var(--cyan);
}

.flow-list i.is-green {
    background: var(--green);
}

.flow-list i.is-amber {
    background: var(--amber);
}

.flow-list span,
.flow-list small {
    display: block;
}

.flow-list span {
    font-size: 12px;
    line-height: 1.5;
}

.flow-list small {
    margin-top: 4px;
    color: #7d8ca6;
    font-size: 10px;
}

.timeline-mini {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.timeline-mini article {
    min-height: 58px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 13px;
    background: rgba(11, 27, 53, .66);
}

.timeline-mini article b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    background: rgba(87, 109, 161, .15);
    color: #9cb0d0;
    font-size: 11px;
}

.timeline-mini article.done b {
    color: #6ce1bd;
    background: rgba(63, 198, 152, .09);
}

.timeline-mini article.current {
    border: 1px solid rgba(101, 155, 255, .25);
    background: rgba(77, 99, 219, .13);
}

.timeline-mini article.current b {
    color: #fff;
    background: #5169e7;
}

.timeline-mini strong,
.timeline-mini small {
    display: block;
}

.timeline-mini strong {
    font-size: 12px;
}

.timeline-mini small {
    margin-top: 4px;
    color: #7a8aa4;
    font-size: 10px;
}

.hero-visual__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 24px 24px;
}

.hero-visual__footer > div {
    padding: 14px 15px;
    border: 1px solid rgba(126, 155, 214, .12);
    border-radius: 14px;
    background: rgba(10, 24, 46, .62);
}

.hero-visual__footer span,
.hero-visual__footer strong {
    display: block;
}

.hero-visual__footer span {
    color: #7d8da7;
    font-size: 10px;
}

.hero-visual__footer strong {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
}

.impact-strip {
    border-block: 1px solid var(--line);
    background: rgba(6, 15, 31, .68);
}

.impact-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.impact-strip__grid > div {
    min-height: 156px;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
}

.impact-strip__grid > div:last-child {
    border-right: 0;
}

.impact-strip strong,
.impact-strip span {
    display: block;
}

.impact-strip strong {
    font-size: 17px;
}

.impact-strip span {
    margin-top: 10px;
    color: #8f9fb9;
    font-size: 14px;
    line-height: 1.65;
}

.landing-section {
    padding: 128px 0;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading--left {
    max-width: 760px;
    margin-inline: 0;
    text-align: left;
}

.section-heading h2,
.security-copy h2,
.cta-band h2,
.contact-modal__info h2 {
    margin: 20px 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.section-heading p,
.security-copy p,
.contact-modal__info p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-grid article {
    min-height: 255px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(13, 31, 60, .76), rgba(6, 15, 31, .74));
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.feature-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(90, 144, 255, .32);
    background:
        linear-gradient(145deg, rgba(16, 37, 72, .84), rgba(7, 18, 37, .79));
}

.feature-grid article > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: #8de5f6;
    background:
        linear-gradient(135deg, rgba(24, 125, 255, .18), rgba(105, 65, 255, .18));
    font-size: 12px;
    font-weight: 850;
}

.feature-grid h3 {
    margin: 28px 0 12px;
    font-size: 22px;
    line-height: 1.25;
}

.feature-grid p {
    margin: 0;
    color: #90a0ba;
    font-size: 14px;
    line-height: 1.72;
}

.landing-section--panels {
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 18%, rgba(77, 84, 223, .14), transparent 28%),
        linear-gradient(145deg, rgba(7, 19, 39, .86), rgba(4, 11, 25, .88));
}

.module-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.module-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(9, 23, 47, .68);
}

.module-card--primary {
    grid-row: span 2;
    min-height: 518px;
    background:
        radial-gradient(circle at 100% 0, rgba(76, 91, 221, .16), transparent 28%),
        linear-gradient(145deg, rgba(12, 29, 59, .88), rgba(5, 14, 30, .9));
}

.module-card__tag {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(103, 153, 255, .2);
    border-radius: 999px;
    color: #dbe5f6;
    background: rgba(72, 96, 219, .11);
    font-size: 11px;
    font-weight: 760;
}

.module-card h3 {
    margin: 20px 0 14px;
    font-size: 28px;
    line-height: 1.22;
    letter-spacing: -.03em;
}

.module-card p {
    margin: 0;
    color: #90a0ba;
    font-size: 14px;
    line-height: 1.72;
}

.module-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.module-card li {
    position: relative;
    padding-left: 18px;
    color: #dbe6f6;
    font-size: 14px;
}

.module-card li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    content: "";
}

.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-line article {
    position: relative;
    min-height: 245px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 21, 43, .66);
}

.process-line article::after {
    position: absolute;
    top: 54px;
    right: -17px;
    z-index: 2;
    width: 17px;
    height: 1px;
    background: rgba(106, 144, 218, .3);
    content: "";
}

.process-line article:last-child::after {
    display: none;
}

.process-line b {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: #8de5f6;
    background: rgba(43, 101, 200, .14);
    font-size: 12px;
}

.process-line h3 {
    margin: 26px 0 10px;
    font-size: 18px;
}

.process-line p {
    margin: 0;
    color: #8b9bb3;
    font-size: 13px;
    line-height: 1.65;
}

.landing-section--security {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(8, 19, 38, .84), rgba(4, 10, 22, .84));
}

.security-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.security-stack {
    display: grid;
    gap: 14px;
}

.security-stack article {
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10, 23, 45, .66);
}

.security-stack strong,
.security-stack span {
    display: block;
}

.security-stack strong {
    margin-bottom: 8px;
    font-size: 16px;
}

.security-stack span {
    color: #91a1bb;
    font-size: 13px;
    line-height: 1.62;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
    padding: 38px;
    border: 1px solid rgba(105, 144, 220, .22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(83, 97, 228, .16), transparent 24%),
        linear-gradient(145deg, rgba(12, 29, 59, .86), rgba(5, 14, 30, .9));
    box-shadow: 0 32px 80px rgba(0, 0, 0, .22);
}

.cta-band h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.landing-footer {
    padding: 52px 0 112px;
    border-top: 1px solid var(--line);
    background: #020711;
}

.landing-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.landing-brand--footer img {
    width: 36px;
    height: 36px;
}

.landing-brand--footer > span {
    font-size: 17px;
}

.landing-footer p {
    margin: 0;
    color: #76859f;
    font-size: 13px;
}

.landing-footer__inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #8c9ab2;
    font-size: 12px;
}

.landing-footer__inner > div a {
    text-decoration: none;
}

.footer-contact-link {
    padding: 0;
    border: 0;
    color: #9fdfff;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.landing-footer small {
    grid-column: 1 / -1;
    color: #53627a;
    text-align: center;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 16, .76);
    backdrop-filter: blur(8px);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    max-height: min(92vh, 920px);
    margin: auto;
    overflow: auto;
    border: 1px solid rgba(111, 147, 219, .22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(78, 95, 223, .16), transparent 28%),
        linear-gradient(145deg, rgba(9, 23, 47, .98), rgba(4, 11, 25, .98));
    box-shadow: 0 36px 100px rgba(0, 0, 0, .42);
}

.contact-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    background: rgba(8, 21, 43, .76);
    font-size: 28px;
    line-height: 1;
}

.contact-modal__grid {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 0;
}

.contact-modal__info {
    padding: 48px 42px;
    border-right: 1px solid var(--line);
}

.contact-modal__points {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact-modal__points article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8, 21, 43, .56);
}

.contact-modal__points strong,
.contact-modal__points span {
    display: block;
}

.contact-modal__points strong {
    font-size: 15px;
}

.contact-modal__points span {
    margin-top: 6px;
    color: #90a0ba;
    font-size: 13px;
    line-height: 1.6;
}

.contact-modal__form-card {
    padding: 42px;
}

.contact-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 20px;
    padding: 15px 17px;
    border: 1px solid;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.55;
}

.contact-alert--success {
    color: #c6f8e7;
    border-color: rgba(69, 211, 161, .25);
    background: rgba(48, 184, 136, .09);
}

.contact-alert--error {
    color: #ffd2d7;
    border-color: rgba(255, 111, 129, .25);
    background: rgba(209, 65, 83, .09);
}

.contact-alert--error:empty {
    display: none;
}

.contact-alert ul {
    margin: 0;
    padding-left: 18px;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 18px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field label {
    color: #cad6e9;
    font-size: 12px;
    font-weight: 760;
}

.contact-field label small {
    color: #6d7d95;
    font-size: 9px;
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(129, 156, 210, .18);
    border-radius: 14px;
    color: var(--text);
    background: rgba(3, 11, 25, .76);
    outline: none;
    transition:
        border-color .16s ease,
        box-shadow .16s ease,
        background .16s ease;
}

.contact-field input {
    min-height: 52px;
    padding: 0 16px;
}

.contact-field textarea {
    min-height: 150px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #53637c;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(96, 145, 255, .55);
    background: rgba(4, 14, 31, .92);
    box-shadow: 0 0 0 4px rgba(77, 105, 231, .11);
}

.contact-field span,
.contact-consent__validation {
    min-height: 15px;
    color: var(--danger);
    font-size: 10px;
    line-height: 1.45;
}

.contact-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #596ff1;
}

.contact-consent label {
    color: #91a0b7;
    font-size: 11px;
    line-height: 1.55;
}

.contact-consent__validation:empty {
    display: none;
}

.contact-submit {
    width: 100%;
    border: 0;
}

.contact-submit.is-loading {
    cursor: wait;
    opacity: .74;
    pointer-events: none;
}

.contact-submit i {
    font-style: normal;
}

.contact-form__note {
    margin: -2px 0 0;
    color: #687790;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1260px) {
    .landing-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .landing-menu-button {
        display: block;
    }

    .landing-mobile-panel {
        position: fixed;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(5, 13, 27, .98);
        box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
    }

    .landing-mobile-panel.is-open {
        display: block;
    }

    .landing-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-navigation a,
    .landing-navigation__contact {
        justify-content: flex-start;
        padding: 14px;
        border-bottom: 1px solid var(--line);
    }

    .landing-header__actions {
        margin-top: 18px;
    }

    .hero__grid,
    .security-grid,
    .contact-modal__grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 800px;
    }

    .hero-visual {
        width: min(100%, 930px);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-layout {
        grid-template-columns: 1fr;
    }

    .module-card--primary {
        grid-row: auto;
        min-height: auto;
    }

    .process-line {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line article::after {
        display: none;
    }

    .contact-modal__info {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 960px) {
    .landing-shell {
        width: min(calc(100% - 30px), var(--shell));
    }

    .hero {
        padding-top: 138px;
    }

    .hero__content h1 {
        font-size: clamp(42px, 10vw, 66px);
    }

    .impact-strip__grid {
        grid-template-columns: 1fr;
    }

    .impact-strip__grid > div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .impact-strip__grid > div:last-child {
        border-bottom: 0;
    }

    .landing-section {
        padding: 96px 0;
    }

    .feature-grid,
    .process-line {
        grid-template-columns: 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }

    .landing-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .landing-footer small {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .landing-header__inner {
        min-height: 76px;
    }

    .landing-brand img {
        width: 40px;
        height: 40px;
    }

    .landing-brand > span {
        font-size: 18px;
    }

    .landing-mobile-panel {
        top: 70px;
    }

    .landing-header__actions,
    .hero__actions,
    .cta-band__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-button {
        width: 100%;
    }

    .hero {
        padding: 120px 0 64px;
    }

    .hero__content > p,
    .section-heading p,
    .security-copy p,
    .contact-modal__info p {
        font-size: 16px;
    }

    .hero-visual__header {
        min-height: 74px;
        padding-inline: 18px;
    }

    .hero-visual__stats,
    .hero-visual__columns,
    .hero-visual__footer {
        grid-template-columns: 1fr;
        padding-inline: 18px;
    }

    .hero-visual__stats {
        padding-top: 18px;
    }

    .hero-visual__columns {
        padding-top: 12px;
    }

    .hero-visual__footer {
        padding-top: 12px;
        padding-bottom: 18px;
    }

    .feature-grid article,
    .module-card,
    .process-line article,
    .security-stack article {
        min-height: auto;
    }

    .contact-modal {
        padding: 14px 9px;
    }

    .contact-modal__dialog {
        width: min(100%, 1180px);
        max-height: min(95vh, 920px);
        border-radius: 22px;
    }

    .contact-modal__info,
    .contact-modal__form-card {
        padding: 26px 18px;
    }

    .contact-modal__close {
        top: 12px;
        right: 12px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Landing hotfix v5 - real carousel + footer normalization */
.hero-carousel {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.hero-carousel__header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 11, 24, .56);
}

.hero-carousel__title span,
.hero-carousel__title strong {
    display: block;
}

.hero-carousel__title span {
    color: #8ea7cb;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-carousel__title strong {
    margin-top: 6px;
    font-size: 18px;
    letter-spacing: -.02em;
}

.hero-carousel__badge {
    padding: 10px 14px;
    border: 1px solid rgba(101, 155, 255, .2);
    border-radius: 999px;
    color: #dfe8f8;
    background: rgba(73, 97, 218, .12);
    font-size: 11px;
    font-weight: 750;
}

.hero-carousel__viewport {
    position: relative;
    min-height: 640px;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity .45s ease, transform .45s ease;
}

.hero-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-carousel__shot {
    position: relative;
    padding: 24px 24px 18px;
}

.hero-carousel__shot::after {
    position: absolute;
    inset: auto 24px 18px;
    height: 120px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, rgba(3, 8, 18, 0), rgba(3, 8, 18, .92));
    pointer-events: none;
    content: "";
}

.hero-carousel__shot img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
    border: 1px solid rgba(130, 154, 210, .16);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .26);
}

.hero-carousel__caption {
    min-height: 156px;
    padding: 0 28px 28px;
}

.hero-carousel__caption span,
.hero-carousel__caption strong,
.hero-carousel__caption p {
    display: block;
}

.hero-carousel__caption span {
    color: #6fcff2;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-carousel__caption strong {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.26;
}

.hero-carousel__caption p {
    margin: 12px 0 0;
    color: #8a9ab4;
    font-size: 14px;
    line-height: 1.7;
}

.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(123, 153, 219, .26);
    border-radius: 16px;
    color: #f7fbff;
    background: rgba(7, 17, 36, .8);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .32);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-carousel__nav span {
    font-size: 28px;
    line-height: 1;
    transform: translateY(-1px);
}

.hero-carousel__nav:hover {
    background: rgba(22, 42, 87, .92);
    border-color: rgba(123, 153, 219, .38);
}

.hero-carousel__nav--prev {
    left: 38px;
}

.hero-carousel__nav--next {
    right: 38px;
}

.hero-carousel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px 28px;
}

.hero-carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-carousel__dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(122, 141, 167, .42);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hero-carousel__dots button.is-active {
    width: 34px;
    background: linear-gradient(90deg, #27b7f6, #6c67ff);
}

.hero-carousel__meta {
    color: #6d7d98;
    font-size: 12px;
}

.landing-footer {
    padding: 34px 0 84px;
}

.landing-footer__inner {
    grid-template-columns: auto 1fr auto;
    gap: 22px 28px;
}

.landing-footer__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    color: #8c9ab2;
    font-size: 12px;
}

.landing-footer__contact a,
.landing-footer__contact button {
    line-height: 1.4;
}

.contact-modal__points article strong {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: rgba(81, 105, 231, .18);
    color: #dfe9ff;
    font-size: 14px;
}

.contact-modal__points article span b {
    color: #eef5ff;
    font-weight: 700;
}

@media (max-width: 1260px) {
    .hero-carousel__viewport {
        min-height: 620px;
    }
}

@media (max-width: 960px) {
    .landing-footer__contact {
        justify-content: center;
    }

    .hero-carousel__viewport {
        min-height: 560px;
    }

    .hero-carousel__caption strong {
        font-size: 21px;
    }
}

@media (max-width: 720px) {
    .hero-carousel__header,
    .hero-carousel__footer,
    .hero-carousel__caption {
        padding-inline: 18px;
    }

    .hero-carousel__header {
        min-height: 76px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .hero-carousel__viewport {
        min-height: 420px;
    }

    .hero-carousel__shot {
        padding: 18px 18px 14px;
    }

    .hero-carousel__shot::after {
        left: 18px;
        right: 18px;
        bottom: 14px;
    }

    .hero-carousel__shot img {
        height: 250px;
        border-radius: 18px;
    }

    .hero-carousel__caption {
        min-height: 150px;
        padding-bottom: 22px;
    }

    .hero-carousel__caption strong {
        font-size: 18px;
    }

    .hero-carousel__caption p {
        font-size: 13px;
    }

    .hero-carousel__nav {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .hero-carousel__nav--prev {
        left: 26px;
    }

    .hero-carousel__nav--next {
        right: 26px;
    }

    .hero-carousel__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* Landing hotfix v6 - top content/features + full-width carousel below */
.hero-showcase {
    display: grid;
    gap: clamp(34px, 4vw, 58px);
}

.hero-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    align-items: end;
    gap: clamp(36px, 7vw, 104px);
}

.hero-showcase .hero__content {
    max-width: 790px;
}

.hero-showcase .hero__content h1 {
    max-width: 830px;
}

.hero-showcase__features {
    align-self: end;
    margin-top: 0;
}

.hero-showcase__features article {
    min-height: 98px;
    display: grid;
    align-content: center;
    padding: 21px 22px;
}

.hero-showcase__carousel {
    width: 100%;
    min-width: 0;
}

.hero-showcase__carousel::before {
    inset: -52px 7% auto auto;
    width: 440px;
    height: 440px;
}

.hero-showcase__carousel .hero-carousel__viewport {
    min-height: 770px;
}

.hero-showcase__carousel .hero-carousel__shot {
    padding: 30px 30px 20px;
}

.hero-showcase__carousel .hero-carousel__shot::after {
    right: 30px;
    bottom: 20px;
    left: 30px;
    height: 150px;
}

.hero-showcase__carousel .hero-carousel__shot img {
    height: 565px;
    object-fit: cover;
    object-position: center top;
}

.hero-showcase__carousel .hero-carousel__caption {
    min-height: 160px;
    padding: 0 32px 30px;
}

.hero-showcase__carousel .hero-carousel__caption strong {
    max-width: 960px;
    font-size: clamp(24px, 2.4vw, 34px);
}

.hero-showcase__carousel .hero-carousel__caption p {
    max-width: 900px;
    font-size: 15px;
}

.hero-showcase__carousel .hero-carousel__nav--prev {
    left: 46px;
}

.hero-showcase__carousel .hero-carousel__nav--next {
    right: 46px;
}

@media (max-width: 1260px) {
    .hero-showcase__top {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
        gap: 46px;
    }

    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 690px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        height: 490px;
    }
}

@media (max-width: 960px) {
    .hero-showcase__top {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }

    .hero-showcase .hero__content {
        max-width: 800px;
    }

    .hero-showcase__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-showcase__features article {
        min-height: 126px;
    }

    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 600px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        height: 400px;
    }
}

@media (max-width: 720px) {
    .hero-showcase {
        gap: 28px;
    }

    .hero-showcase__top {
        gap: 24px;
    }

    .hero-showcase__features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-showcase__features article {
        min-height: auto;
        padding: 17px 18px;
    }

    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 430px;
    }

    .hero-showcase__carousel .hero-carousel__shot {
        padding: 16px 16px 12px;
    }

    .hero-showcase__carousel .hero-carousel__shot::after {
        right: 16px;
        bottom: 12px;
        left: 16px;
        height: 94px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        height: 245px;
    }

    .hero-showcase__carousel .hero-carousel__caption {
        min-height: 152px;
        padding: 0 18px 22px;
    }

    .hero-showcase__carousel .hero-carousel__caption strong {
        font-size: 18px;
    }

    .hero-showcase__carousel .hero-carousel__nav--prev {
        left: 24px;
    }

    .hero-showcase__carousel .hero-carousel__nav--next {
        right: 24px;
    }
}


/* Landing hotfix v7 - compact normalized footer */
.landing-footer {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    background: #020711;
}

.landing-footer__inner {
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.landing-brand--footer img {
    width: 34px;
    height: 34px;
}

.landing-brand--footer > span {
    font-size: 17px;
}

.landing-footer__meta {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #76859f;
}

.landing-footer__meta p,
.landing-footer__meta small {
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.landing-footer__meta p {
    min-width: 0;
    overflow: hidden;
    color: #76859f;
    font-size: 12px;
    text-overflow: ellipsis;
}

.landing-footer__meta small {
    grid-column: auto;
    color: #53627a;
    font-size: 11px;
    text-align: left;
}

.landing-footer__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 9px;
    color: #72829d;
    font-size: 12px;
    white-space: nowrap;
}

.landing-footer__contact a {
    color: #91a0b8;
    text-decoration: none;
}

.landing-footer__contact a:hover {
    color: #c7f4ff;
    text-decoration: underline;
}

.landing-footer__consent-host {
    display: inline-flex;
    align-items: center;
}

.landing-footer__consent-host .yoxion-consent-settings {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #7ddfff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: none;
}

.landing-footer__consent-host .yoxion-consent-settings:hover {
    color: #c7f4ff;
    text-decoration: underline;
    transform: none;
}

@media (max-width: 1120px) {
    .landing-footer__inner {
        grid-template-columns: auto 1fr;
        gap: 12px 20px;
    }

    .landing-footer__meta {
        justify-content: flex-start;
    }

    .landing-footer__contact {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .landing-footer {
        padding: 20px 0 24px;
    }

    .landing-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        text-align: center;
    }

    .landing-footer__meta {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .landing-footer__meta p,
    .landing-footer__meta small {
        white-space: normal;
        text-align: center;
    }

    .landing-footer__contact {
        grid-column: auto;
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* Landing hotfix v8 - real screen carousel and uncropped image sizing */
.hero-showcase__carousel .hero-carousel__viewport {
    min-height: 690px;
}

.hero-showcase__carousel .hero-carousel__shot {
    display: grid;
    place-items: center;
    padding: 34px 64px 18px;
}

.hero-showcase__carousel .hero-carousel__shot::after {
    display: none;
}

.hero-showcase__carousel .hero-carousel__shot img {
    width: min(100%, 1320px);
    height: auto;
    max-height: 500px;
    aspect-ratio: 1659 / 948;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: #050b17;
}

.hero-showcase__carousel .hero-carousel__caption {
    min-height: 138px;
    padding: 0 64px 26px;
}

.hero-showcase__carousel .hero-carousel__caption strong {
    font-size: clamp(22px, 2vw, 30px);
}

.hero-showcase__carousel .hero-carousel__caption p {
    margin-top: 9px;
}

.hero-showcase__carousel .hero-carousel__nav {
    top: 43%;
}

.hero-carousel__dots {
    flex-wrap: wrap;
}

@media (max-width: 1260px) {
    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 620px;
    }

    .hero-showcase__carousel .hero-carousel__shot {
        padding-inline: 46px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        max-height: 430px;
    }

    .hero-showcase__carousel .hero-carousel__caption {
        padding-inline: 48px;
    }
}

@media (max-width: 960px) {
    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 540px;
    }

    .hero-showcase__carousel .hero-carousel__shot {
        padding: 26px 34px 16px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        max-height: 350px;
    }

    .hero-showcase__carousel .hero-carousel__caption {
        min-height: 148px;
        padding: 0 36px 24px;
    }
}

@media (max-width: 720px) {
    .hero-showcase__carousel .hero-carousel__viewport {
        min-height: 390px;
    }

    .hero-showcase__carousel .hero-carousel__shot {
        padding: 16px 24px 12px;
    }

    .hero-showcase__carousel .hero-carousel__shot img {
        max-height: 220px;
        border-radius: 13px;
    }

    .hero-showcase__carousel .hero-carousel__caption {
        min-height: 150px;
        padding: 0 22px 20px;
    }

    .hero-showcase__carousel .hero-carousel__nav {
        top: 35%;
    }

    .hero-carousel__dots {
        gap: 7px;
    }

    .hero-carousel__dots button {
        width: 9px;
        height: 9px;
    }

    .hero-carousel__dots button.is-active {
        width: 24px;
    }
}

/* YOXION v22 - iletişim modalı denge ve bayraklı telefon alanı */
@media (min-width: 1261px) {
    .contact-modal {
        padding: 18px;
    }

    .contact-modal__dialog {
        width: min(96vw, 1320px);
        max-height: 94vh;
        overflow: hidden;
    }

    .contact-modal__grid {
        grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr);
        align-items: stretch;
    }

    .contact-modal__info {
        display: flex;
        flex-direction: column;
        padding: 36px 40px 34px;
    }

    .contact-modal__info h2 {
        margin: 17px 0 14px;
        font-size: clamp(40px, 3.7vw, 56px);
    }

    .contact-modal__info > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-modal__points {
        gap: 10px;
        margin-top: 24px;
    }

    .contact-modal__points article {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
        gap: 13px;
        padding: 14px 15px;
    }

    .contact-modal__points article span {
        margin-top: 0;
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-modal__form-card {
        display: flex;
        flex-direction: column;
        padding: 34px 40px 28px;
    }

    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .contact-field {
        gap: 6px;
    }

    .contact-field input {
        min-height: 50px;
    }

    .contact-field textarea {
        min-height: 136px;
        max-height: 190px;
    }

    .contact-submit {
        margin-top: auto;
    }
}

.contact-field--phone .iti {
    width: 100%;
}

.contact-field--phone .iti input {
    width: 100%;
    min-height: 52px;
    color: var(--text);
    background: rgba(3, 11, 25, .76);
}

.contact-field--phone .iti__selected-country-primary {
    border-radius: 13px 0 0 13px;
}

.contact-modal .iti__dropdown-content {
    border-color: rgba(129, 156, 210, .24);
    color: #eef5ff;
    background: #071329;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
}

.contact-modal .iti__country.iti__highlight,
.contact-modal .iti__country:hover {
    background: rgba(86, 108, 231, .18);
}

.contact-modal .iti__search-input {
    border-color: rgba(129, 156, 210, .22);
    color: #eef5ff;
    background: #061126;
}

.contact-modal .iti__dial-code {
    color: #9aaccc;
}

@media (max-width: 1260px) {
    .contact-modal__dialog {
        overflow: auto;
    }

    .contact-modal__info {
        padding: 34px 32px 28px;
    }

    .contact-modal__points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .contact-modal__points article {
        padding: 14px;
    }

    .contact-modal__form-card {
        padding: 30px 32px;
    }
}

@media (max-width: 720px) {
    .contact-modal__points {
        grid-template-columns: 1fr;
    }

    .contact-modal__info h2 {
        padding-right: 42px;
    }

    .contact-modal__form-card {
        padding-top: 24px;
    }
}

@media (min-width: 1261px) and (max-height: 760px) {
    .contact-modal__dialog {
        overflow: auto;
    }

    .contact-modal__info,
    .contact-modal__form-card {
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .contact-modal__points {
        margin-top: 18px;
    }

    .contact-field textarea {
        min-height: 120px;
    }
}

/* YOXION v26 - Stabil iletişim telefonu ve bağımsız ülke seçici */
.landing-page {
    --iti-border-color: rgba(117, 142, 204, 0.30);
    --iti-country-selector-bg: #08152d;
    --iti-icon-color: #b9c8e8;
    --iti-hover-color: rgba(87, 105, 229, 0.20);
    --iti-spacer-horizontal: 9px;
    --iti-arrow-padding: 5px;
    --iti-flag-width: 18px;
    --iti-mobile-popup-margin: 18px;
    color-scheme: dark;
}

.contact-modal__dialog,
.contact-modal__form-card,
.contact-form-grid,
.contact-field--phone {
    min-width: 0;
}

.contact-modal__dialog {
    overflow-x: hidden !important;
}

.contact-field--phone .contact-phone-iti {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.contact-field--phone .contact-phone-iti input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.contact-field--phone .iti__selected-country {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    display: inline-flex;
    align-items: stretch;
    white-space: nowrap;
    background: rgba(10, 23, 51, 0.72);
}

.contact-field--phone .iti__selected-country-primary {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 0 0 auto;
    padding-inline: 9px !important;
    border-radius: 13px 0 0 13px;
    background: transparent !important;
}

.contact-field--phone .iti__selected-country-primary:hover {
    background: rgba(20, 38, 79, 0.82) !important;
}

.contact-field--phone .iti__selected-country-primary:focus,
.contact-field--phone .iti__selected-country-primary:focus-visible {
    outline: 2px solid rgba(125, 145, 255, 0.82);
    outline-offset: -2px;
    box-shadow: none !important;
}

.contact-field--phone .iti__selected-dial-code {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0 10px 0 0 !important;
    display: inline-flex;
    align-items: center;
    color: #edf4ff;
    font-weight: 750;
    line-height: 1;
}

.landing-page .iti--detached-country-selector {
    z-index: 100000 !important;
}

.landing-page .iti__country-selector {
    max-width: calc(100vw - 32px) !important;
    max-height: min(390px, calc(100vh - 80px)) !important;
    overflow: hidden !important;
    box-sizing: border-box;
    border: 1px solid rgba(117, 142, 204, 0.30) !important;
    border-radius: 15px !important;
    color: #eef5ff !important;
    background: #08152d !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(116, 138, 255, 0.06) !important;
}

.landing-page .iti__search-input {
    width: calc(100% - 20px) !important;
    min-height: 44px !important;
    margin: 10px !important;
    padding: 0 40px 0 38px !important;
    box-sizing: border-box;
    border: 1px solid rgba(117, 142, 204, 0.32) !important;
    border-radius: 10px !important;
    outline: 0 !important;
    color: #f4f7ff !important;
    background: #0d1d3b !important;
    box-shadow: none !important;
}

.landing-page .iti__search-input::placeholder {
    color: #8394b6 !important;
    opacity: 1;
}

.landing-page .iti__search-input:focus {
    border-color: rgba(104, 124, 255, 0.88) !important;
    box-shadow: 0 0 0 3px rgba(90, 110, 247, 0.15) !important;
}

.landing-page .iti__country-list {
    max-height: 292px !important;
    padding: 5px 7px 9px !important;
    color: #edf4ff !important;
    background: #08152d !important;
    scrollbar-width: thin;
    scrollbar-color: #596a99 #0b1832;
}

.landing-page .iti__country {
    min-height: 42px;
    margin: 2px 0;
    padding: 8px 11px !important;
    border-radius: 9px;
    color: #edf4ff !important;
    background: transparent !important;
}

.landing-page .iti__country:hover,
.landing-page .iti__country.iti__highlight {
    color: #ffffff !important;
    background: rgba(87, 105, 229, 0.22) !important;
}

.landing-page .iti__country[aria-selected="true"] {
    background: rgba(51, 190, 157, 0.13) !important;
}

.landing-page .iti__country-name {
    color: #eef4ff !important;
    font-weight: 650;
}

.landing-page .iti__dial-code {
    color: #94a9d1 !important;
}

@media (max-width: 640px) {
    .landing-page .iti__country-selector {
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 36px) !important;
        border-radius: 17px !important;
    }

    .landing-page .iti__country-list {
        max-height: calc(100vh - 145px) !important;
    }
}
