:root {
    --ink: #171421;
    --ink-soft: #5f5b6c;
    --surface: #ffffff;
    --surface-soft: #f7f6fb;
    --surface-violet: #f3efff;
    --line: #e8e4ef;
    --violet: #7c3aed;
    --violet-dark: #5b21b6;
    --magenta: #c637d4;
    --blue: #747ef5;
    --green: #21b64b;
    --dark: #171222;
    --dark-soft: #251d35;
    --gradient: linear-gradient(125deg, var(--magenta), var(--blue));
    --shadow-sm: 0 12px 35px rgba(58, 41, 87, 0.08);
    --shadow-lg: 0 35px 90px rgba(55, 35, 89, 0.2);
    --radius-sm: 16px;
    --radius-md: 28px;
    --radius-lg: 42px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: #fff;
    background: var(--violet);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(124, 58, 237, 0.42);
    outline-offset: 4px;
}

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

h1,
h2,
h3 {
    letter-spacing: -0.035em;
}

h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(3.1rem, 6.1vw, 6rem);
    font-weight: 700;
    line-height: 0.98;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 4.8vw, 4.9rem);
    font-weight: 700;
    line-height: 1.02;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.15;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding-block: clamp(96px, 11vw, 160px);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--violet);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--violet);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: #d8c8ff;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.23);
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.32);
    filter: saturate(1.08);
    transform: translateY(-2px);
}

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

.button-small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: min-height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    min-height: 72px;
    border-color: rgba(36, 27, 52, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 35px rgba(49, 35, 72, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.brand img {
    width: 150px;
}

.primary-navigation,
.nav-links,
.language-switcher {
    display: flex;
    align-items: center;
}

.primary-navigation {
    flex: 1;
    justify-content: flex-end;
    gap: 26px;
}

.nav-links {
    gap: clamp(18px, 2.5vw, 34px);
}

.nav-links a {
    position: relative;
    color: #4f495c;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language-switcher {
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
}

.language-switcher button {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #7a7484;
    background: transparent;
    cursor: pointer;
    font-size: 0.67rem;
    font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
    color: #fff;
    background: var(--violet);
    box-shadow: 0 6px 14px rgba(124, 58, 237, 0.24);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding-top: calc(var(--header-height) + clamp(48px, 6vw, 84px));
    padding-bottom: 0;
    background:
        linear-gradient(180deg, #fcfbff 0%, #fff 73%),
        #fff;
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

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

.hero-glow-one {
    top: -180px;
    right: -120px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(199, 55, 212, 0.14), transparent 68%);
}

.hero-glow-two {
    bottom: 30px;
    left: -220px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(116, 126, 245, 0.12), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    align-items: center;
    gap: clamp(44px, 7vw, 100px);
}

.hero-copy {
    padding-bottom: 52px;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.text-link > span:last-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.text-link:hover > span:last-child {
    border-color: var(--violet);
    transform: rotate(-45deg);
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 34px;
    color: #686172;
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-assurances > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-assurances i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(33, 182, 75, 0.1);
}

.hero-visual {
    min-height: 610px;
    display: grid;
    place-items: center;
}

.phone-stage {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1.06;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 46% 54% 52% 48% / 42% 42% 58% 58%;
    background:
        radial-gradient(circle at 66% 28%, rgba(255, 255, 255, 0.94) 0 7%, transparent 7.5%),
        linear-gradient(145deg, #f6dcff, #e8e5ff 52%, #dfe5ff);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.05), var(--shadow-lg);
}

.phone-stage::before,
.phone-stage::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.phone-stage::before {
    top: 9%;
    left: 7%;
    width: 18px;
    height: 18px;
    border: 5px solid rgba(124, 58, 237, 0.3);
}

.phone-stage::after {
    right: 7%;
    bottom: 13%;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.26);
}

.hero-phone {
    position: relative;
    z-index: 2;
    width: min(108%, 600px);
    max-width: none;
    filter: drop-shadow(0 32px 30px rgba(43, 24, 67, 0.2));
    animation: float-phone 5.8s ease-in-out infinite;
}

.location-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 999px;
    color: #3f364d;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 35px rgba(53, 38, 78, 0.14);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 700;
}

.location-chip-top {
    top: 17%;
    left: -9%;
}

.location-chip-bottom {
    right: -8%;
    bottom: 20%;
}

.location-dot {
    width: 11px;
    height: 11px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(33, 182, 75, 0.14);
}

.chip-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--violet);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(38px, 4vw, 64px);
    border-top: 1px solid var(--line);
}

.hero-stats > div {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 32px;
    border-right: 1px solid var(--line);
    color: #5d5667;
    font-size: 0.92rem;
    line-height: 1.35;
}

.hero-stats > div:first-child {
    padding-left: 0;
}

.hero-stats > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-stats strong {
    color: var(--violet);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0) rotate(-0.35deg); }
    50% { transform: translateY(-12px) rotate(0.35deg); }
}

/* About */
.about {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 650px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.section-heading-centered {
    margin: 0 auto clamp(56px, 7vw, 86px);
    text-align: center;
}

.section-heading-centered .eyebrow {
    justify-content: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    box-shadow: 0 22px 55px rgba(58, 41, 87, 0.13);
    transform: translateY(-6px);
}

.value-card-featured {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(150deg, #8b36df, #6d67ed 60%, #7786f5);
    box-shadow: 0 25px 60px rgba(115, 75, 224, 0.25);
}

.value-card-featured::before {
    position: absolute;
    top: -70px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.04);
    content: "";
}

.value-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.value-card-featured p {
    color: rgba(255, 255, 255, 0.78);
}

.value-icon {
    position: absolute;
    top: 30px;
    left: 32px;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 22px;
    background: var(--surface-violet);
}

.value-icon img {
    width: auto;
    max-width: 42px;
    max-height: 42px;
}

.value-card-featured .value-icon {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.14);
}

.value-card-featured .value-icon img {
    filter: brightness(0) invert(1);
}

.card-number {
    position: absolute;
    top: 34px;
    right: 34px;
    color: #b4acbf;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.value-card-featured .card-number {
    color: rgba(255, 255, 255, 0.62);
}

/* How it works */
.how {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(124, 102, 233, 0.22), transparent 28%),
        radial-gradient(circle at 16% 90%, rgba(197, 55, 212, 0.13), transparent 26%),
        var(--dark);
}

.how::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    content: "";
    opacity: 0.16;
    mask-image: linear-gradient(90deg, transparent 30%, #000);
}

.how-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
    align-items: center;
    gap: clamp(70px, 10vw, 140px);
}

.how .section-heading > p:last-child {
    color: #aaa1b8;
}

.steps-list {
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 0 0 36px;
}

.steps-list li:not(:last-child)::before {
    position: absolute;
    top: 48px;
    bottom: 10px;
    left: 28px;
    width: 1px;
    background: rgba(255, 255, 255, 0.13);
    content: "";
}

.step-number {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #dfccff;
    background: var(--dark-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.steps-list h3 {
    margin-bottom: 7px;
    color: #fff;
}

.steps-list p {
    max-width: 430px;
    margin-bottom: 0;
    color: #aaa1b8;
}

.store-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.store-badges-left {
    justify-content: flex-start;
    margin-top: 14px;
}

.store-badges a {
    display: block;
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badges a:hover {
    opacity: 0.86;
    transform: translateY(-3px);
}

.store-badges img {
    width: 158px;
}

.app-showcase {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.app-showcase::before {
    position: absolute;
    inset: 9% 2%;
    z-index: -3;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 48% 52% 41% 59% / 46% 38% 62% 54%;
    background: linear-gradient(150deg, rgba(197, 55, 212, 0.17), rgba(116, 126, 245, 0.16));
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.025);
    content: "";
    transform: rotate(-5deg);
}

.app-showcase img {
    position: relative;
    z-index: 2;
    width: min(70%, 330px);
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.4));
}

.showcase-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.orbit-one {
    width: 92%;
    aspect-ratio: 1;
}

.orbit-two {
    width: 68%;
    aspect-ratio: 1;
}

.showcase-label {
    position: absolute;
    z-index: 3;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #e8e0ef;
    background: rgba(39, 29, 55, 0.82);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 700;
}

.showcase-label-top {
    top: 22%;
    left: -4%;
}

.showcase-label-bottom {
    right: -2%;
    bottom: 22%;
}

/* Feature sections */
.features {
    padding-bottom: clamp(100px, 12vw, 180px);
    background: #fff;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(66px, 10vw, 140px);
}

.feature-row + .feature-row {
    margin-top: clamp(110px, 15vw, 210px);
}

.feature-row-reverse .feature-visual {
    order: 2;
}

.feature-row-reverse .feature-copy {
    order: 1;
}

.feature-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.feature-visual-violet {
    background: linear-gradient(145deg, #f4e9ff, #eeeaff 48%, #f9f7ff);
}

.feature-visual-blue {
    background: linear-gradient(145deg, #e9efff, #eeeeff 50%, #f8f5ff);
}

.feature-visual::before {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 32px;
    content: "";
}

.feature-halo {
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.18), 0 0 0 90px rgba(255, 255, 255, 0.1);
}

.feature-visual img {
    position: relative;
    z-index: 2;
    width: min(56%, 280px);
    filter: drop-shadow(0 35px 40px rgba(60, 37, 92, 0.2));
}

.feature-copy {
    max-width: 570px;
}

.feature-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-soft);
}

.feature-icon img {
    width: 42px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #453e4f;
    font-weight: 600;
}

.check-list li::before {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--violet);
    background: var(--surface-violet);
    content: "✓";
    font-size: 0.74rem;
    font-weight: 800;
}

/* Contact */
.contact {
    padding-top: 0;
    background: #fff;
}

.contact-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: clamp(50px, 8vw, 100px);
    overflow: hidden;
    padding: clamp(44px, 7vw, 88px);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 10% 100%, rgba(197, 55, 212, 0.24), transparent 34%),
        radial-gradient(circle at 96% 0%, rgba(116, 126, 245, 0.26), transparent 34%),
        var(--dark);
}

.contact-panel::before {
    position: absolute;
    top: -120px;
    left: 35%;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: inset 0 0 0 55px rgba(255, 255, 255, 0.018);
    content: "";
}

.contact-copy {
    position: relative;
    z-index: 1;
    align-self: center;
}

.contact-copy h2 {
    font-size: clamp(2.5rem, 4.3vw, 4.3rem);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 470px;
    color: #aaa1b8;
    font-size: 1.08rem;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-note > span {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.contact-note p {
    margin: 0;
    color: #d4ccdc;
    font-size: 0.9rem;
}

.form-card {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

#contact-form {
    display: grid;
    gap: 20px;
}

.field-group {
    display: grid;
    gap: 8px;
}

.field-group label {
    color: #443d4d;
    font-size: 0.82rem;
    font-weight: 700;
}

.field-group input,
.field-group textarea {
    width: 100%;
    border: 1px solid #e4dfea;
    border-radius: 14px;
    outline: 0;
    color: var(--ink);
    background: #faf9fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-group input {
    min-height: 52px;
    padding: 12px 15px;
}

.field-group textarea {
    min-height: 132px;
    padding: 14px 15px;
    resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
    border-color: rgba(124, 58, 237, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #a29baa;
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

.form-submit:disabled {
    cursor: wait;
    filter: grayscale(0.25);
    opacity: 0.7;
}

.botcheck {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.contact-feedback {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.contact-feedback.is-visible {
    display: block;
}

.contact-feedback.is-success {
    color: #176d32;
    background: #e9f9ed;
}

.contact-feedback.is-error {
    color: #a43030;
    background: #fff0f0;
}

/* Final call to action and footer */
.final-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(100px, 12vw, 170px);
    color: #fff;
    text-align: center;
    background: linear-gradient(120deg, #bd35d2 0%, #8f4ae6 48%, #737ef5 100%);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    content: "";
}

.final-cta::before {
    top: -250px;
    left: -120px;
    width: 530px;
    height: 530px;
    box-shadow: inset 0 0 0 85px rgba(255, 255, 255, 0.035);
}

.final-cta::after {
    right: -100px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    box-shadow: inset 0 0 0 110px rgba(255, 255, 255, 0.035);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
}

.final-cta .eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta h2 {
    max-width: 850px;
    margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.site-footer {
    color: #b1a9ba;
    background: #100c17;
}

.footer-inner {
    min-height: 140px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand-footer img {
    width: 132px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-inner p {
    margin: 0;
    font-size: 0.84rem;
    text-align: center;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
    color: #e6e0eb;
    font-size: 0.88rem;
    font-weight: 700;
}

.back-to-top span:last-child {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.back-to-top:hover span:last-child {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1120px) {
    :root {
        --header-height: 76px;
    }

    .shell {
        width: min(100% - 40px, 1050px);
    }

    .primary-navigation {
        gap: 16px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
        gap: 44px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .how-grid {
        gap: 70px;
    }

    .feature-row {
        gap: 70px;
    }
}

@media (max-width: 860px) {
    .site-header,
    .site-header.is-scrolled {
        min-height: 70px;
        border-color: rgba(36, 27, 52, 0.08);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 10px 35px rgba(49, 35, 72, 0.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    body.menu-open .site-header,
    body.menu-open .site-header.is-scrolled {
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        background: #fff;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .brand img {
        width: 130px;
    }

    .brand {
        z-index: 1002;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        width: 45px;
        height: 45px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
    }

    .menu-toggle span {
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--ink);
        transition: transform 0.25s ease, top 0.25s ease;
    }

    .menu-toggle span:first-child {
        top: 17px;
    }

    .menu-toggle span:last-child {
        top: 25px;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        top: 21px;
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        top: 21px;
        transform: rotate(-45deg);
    }

    .primary-navigation {
        position: absolute;
        inset: 70px 0 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 24px;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: clamp(28px, 5dvh, 48px) 24px max(28px, env(safe-area-inset-bottom));
        visibility: hidden;
        background:
            radial-gradient(circle at 80% 12%, rgba(196, 55, 212, 0.13), transparent 28%),
            #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        text-align: left;
    }

    .nav-links a {
        width: 100%;
        min-height: 64px;
        display: flex;
        align-items: center;
        padding: 12px 4px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-size: clamp(1.75rem, 7.2vw, 2.25rem);
        font-weight: 700;
        letter-spacing: -0.035em;
        line-height: 1.05;
    }

    .nav-links a::after {
        display: none;
    }

    .language-switcher button {
        width: 38px;
        height: 38px;
    }

    .language-switcher {
        align-self: center;
        flex: 0 0 auto;
    }

    .nav-cta {
        width: 100%;
        display: inline-flex;
        flex: 0 0 auto;
        margin-top: auto;
    }

    .hero {
        padding-top: 124px;
    }

    .hero-grid,
    .how-grid,
    .feature-row,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 690px;
        padding-bottom: 0;
    }

    .hero-visual {
        min-height: 570px;
        margin-top: 20px;
    }

    .phone-stage {
        width: min(92%, 540px);
    }

    .hero-phone {
        width: min(105%, 580px);
    }

    .hero-stats {
        margin-top: 42px;
    }

    .hero-stats > div {
        min-height: 100px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 22px;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-card:last-child {
        grid-column: 1 / -1;
        min-height: 290px;
    }

    .how-grid {
        gap: 64px;
    }

    .app-showcase {
        min-height: 660px;
        width: min(100%, 580px);
        margin-inline: auto;
    }

    .feature-row {
        gap: 62px;
    }

    .feature-row + .feature-row {
        margin-top: 120px;
    }

    .feature-row-reverse .feature-visual,
    .feature-row-reverse .feature-copy {
        order: initial;
    }

    .feature-copy {
        max-width: 650px;
    }

    .contact-panel {
        gap: 54px;
    }

    .contact-copy {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    :root {
        --radius-lg: 28px;
    }

    .shell {
        width: min(100% - 32px, 1180px);
    }

    .section {
        padding-block: 88px;
    }

    h1 {
        margin-bottom: 22px;
        font-size: clamp(2.85rem, 14vw, 4.3rem);
    }

    h2 {
        margin-bottom: 20px;
        font-size: clamp(2.25rem, 11vw, 3.35rem);
    }

    .hero {
        padding-top: 112px;
    }

    .hero::before {
        background-size: 44px 44px;
    }

    .hero-lead {
        font-size: 1.02rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .text-link {
        justify-content: center;
    }

    .hero-assurances {
        gap: 10px 18px;
        margin-top: 28px;
    }

    .hero-visual {
        min-height: 420px;
        margin-top: 12px;
    }

    .phone-stage {
        width: 100%;
        border-radius: 40px;
    }

    .hero-phone {
        width: 107%;
    }

    .location-chip {
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .location-chip-top {
        top: 11%;
        left: -2%;
    }

    .location-chip-bottom {
        right: -2%;
        bottom: 12%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 58px;
    }

    .hero-stats > div,
    .hero-stats > div:first-child,
    .hero-stats > div:last-child {
        min-height: 76px;
        flex-direction: row;
        align-items: center;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-stats > div:last-child {
        border-bottom: 0;
    }

    .section-heading-centered {
        margin-bottom: 48px;
        text-align: left;
    }

    .section-heading-centered .eyebrow {
        justify-content: flex-start;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .value-card:last-child {
        min-height: 310px;
        grid-column: auto;
        padding: 28px;
    }

    .value-icon {
        top: 26px;
        left: 26px;
    }

    .card-number {
        top: 30px;
        right: 28px;
    }

    .steps-list {
        margin-top: 38px;
    }

    .steps-list li {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .steps-list li:not(:last-child)::before {
        top: 42px;
        left: 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

    .store-badges-left {
        justify-content: center;
    }

    .store-badges img {
        width: 145px;
    }

    .app-showcase {
        min-height: 540px;
    }

    .app-showcase img {
        width: min(66%, 280px);
    }

    .showcase-label {
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .showcase-label-top {
        left: 0;
    }

    .showcase-label-bottom {
        right: 0;
    }

    .features {
        padding-bottom: 100px;
    }

    .feature-visual {
        min-height: 500px;
        border-radius: 28px;
    }

    .feature-visual::before {
        inset: 14px;
        border-radius: 20px;
    }

    .feature-visual img {
        width: min(58%, 250px);
    }

    .feature-row + .feature-row {
        margin-top: 100px;
    }

    .contact {
        padding-top: 0;
        padding-bottom: 80px;
    }

    .contact-panel {
        width: 100%;
        padding: 70px 16px 16px;
        border-radius: 0;
    }

    .contact-copy {
        padding-inline: 10px;
    }

    .contact-note {
        margin-top: 34px;
    }

    .form-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .final-cta {
        padding-block: 100px;
    }

    .footer-inner {
        min-height: 200px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding-block: 36px;
    }

    .footer-inner p {
        order: 3;
    }

    .back-to-top {
        justify-self: center;
    }
}

@media (max-width: 380px) {
    .shell {
        width: min(100% - 24px, 1180px);
    }

    .hero-assurances {
        flex-direction: column;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
    }

    .location-chip-bottom {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
