:root {
    --ink: #10182b;
    --muted: #64708a;
    --line: #e5eaf3;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --blue: #2563eb;
    --blue-dark: #1647b8;
    --blue-soft: #eaf1ff;
    --coral: #e34335;
    --coral-soft: #fff0ed;
    --green: #15936e;
    --green-soft: #e8f8f1;
    --navy: #111a30;
    --shadow: 0 24px 70px rgba(17, 26, 48, .12);
    --shadow-soft: 0 14px 42px rgba(17, 26, 48, .08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .28);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    transform: translateY(-160%);
    box-shadow: var(--shadow-soft);
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(229, 234, 243, .82);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
}

.nav-wrap,
.section-inner,
.footer-inner {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.nav-wrap {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(37, 99, 235, .22);
}

.brand-copy small {
    display: block;
    margin-top: -5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav > a {
    padding: 10px 13px;
    border-radius: 11px;
    color: #364058;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.site-nav > a:hover {
    color: var(--blue);
    background: var(--blue-soft);
}

.site-nav .nav-cta {
    margin-left: 7px;
    padding: 11px 17px;
    color: #fff;
    background: var(--navy);
}

.site-nav .nav-cta:hover {
    color: #fff;
    background: var(--blue);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 5px;
    background: currentColor;
    content: "";
}

.main-content {
    min-height: 60vh;
    overflow: hidden;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-sm {
    padding: 68px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    color: #fff;
    background: var(--navy);
}

.section-coral {
    background: linear-gradient(145deg, #fff6f4 0%, #fff 70%);
}

.hero {
    padding: 94px 0 88px;
    background:
        radial-gradient(circle at 82% 14%, rgba(37, 99, 235, .14), transparent 31%),
        radial-gradient(circle at 12% 80%, rgba(227, 67, 53, .08), transparent 24%),
        linear-gradient(180deg, #fbfdff, #fff);
}

.hero-grid,
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid #dbe6ff;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(234, 241, 255, .72);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .1);
    content: "";
}

.eyebrow.coral {
    border-color: #ffd6d0;
    color: var(--coral);
    background: var(--coral-soft);
}

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

h1,
h2,
h3 {
    line-height: 1.12;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -.06em;
}

.hero h1 span,
.text-blue {
    color: var(--blue);
}

.hero-lead,
.page-lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
}

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

.store-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}

.store-links-hero,
.store-links-product {
    margin-top: 18px;
}

.store-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 43, .18);
    border-radius: 9px;
    background: #050505;
    box-shadow: 0 8px 22px rgba(16, 24, 43, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.store-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 43, .2);
}

.store-link img {
    display: block;
    width: auto;
    height: 48px;
}

.button,
.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.btn:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}

.button-primary:hover {
    color: #fff;
    background: var(--blue-dark);
}

.button-dark {
    color: #fff;
    background: var(--navy);
}

.button-coral {
    color: #fff;
    background: var(--coral);
    box-shadow: 0 14px 28px rgba(227, 67, 53, .18);
}

.button-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: #fff;
}

.button-ghost:hover {
    border-color: #cbd8f7;
    color: var(--blue);
    box-shadow: var(--shadow-soft);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    color: #4d5870;
    font-size: 13px;
    font-weight: 700;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-row span::before {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    content: "✓";
}

.device-stage {
    position: relative;
    min-height: 610px;
}

.device-glow {
    position: absolute;
    inset: 11% 5% 6%;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(37, 99, 235, .22), rgba(227, 67, 53, .12));
    filter: blur(8px);
}

.phone {
    position: absolute;
    overflow: hidden;
    width: min(272px, 44vw);
    border: 9px solid #11182a;
    border-radius: 38px;
    background: #f4f6fa;
    box-shadow: var(--shadow);
}

.phone::before {
    position: absolute;
    z-index: 2;
    top: 7px;
    left: 50%;
    width: 32%;
    height: 20px;
    border-radius: 0 0 14px 14px;
    background: #11182a;
    transform: translateX(-50%);
    content: "";
}

.phone-client {
    z-index: 3;
    top: 10px;
    left: 0;
    min-height: 540px;
    transform: rotate(-4deg);
}

.phone-pro {
    z-index: 2;
    right: 0;
    bottom: 0;
    transform: rotate(4deg);
}

.phone-pro img {
    display: block;
    width: 100%;
}

.client-screen {
    min-height: 540px;
    padding: 45px 18px 24px;
    background: #f5f7fb;
}

.screen-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
}

.screen-brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.screen-brand strong {
    display: block;
    font-size: 17px;
    line-height: 1.1;
}

.screen-brand small {
    color: var(--muted);
    font-size: 10px;
}

.client-screen h3 {
    margin-bottom: 4px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.client-screen > p {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 12px;
}

.service-tile {
    display: grid;
    min-height: 84px;
    margin-bottom: 10px;
    padding: 15px;
    grid-template-columns: 42px 1fr 24px;
    align-items: center;
    gap: 11px;
    border: 1px solid #e2e7f0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 26, 48, .05);
}

.service-tile .tile-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 20px;
}

.service-tile strong,
.service-tile small {
    display: block;
}

.service-tile strong {
    font-size: 13px;
}

.service-tile small {
    color: var(--muted);
    font-size: 10px;
}

.service-tile b {
    color: var(--blue);
    font-size: 19px;
}

.screen-nav {
    display: flex;
    margin-top: 15px;
    padding-top: 12px;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid #e2e7f0;
    color: #7b8498;
    font-size: 9px;
    font-weight: 700;
}

.screen-nav .active {
    color: var(--blue);
}

.logo-strip {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.logo-strip img {
    width: 116px;
    max-height: 38px;
    object-fit: contain;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(35px, 4.6vw, 56px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card,
.contact-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.product-card {
    min-height: 330px;
}

.product-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--blue-soft);
    content: "";
}

.product-card.coral::after {
    background: var(--coral-soft);
}

.product-icon {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    margin-bottom: 42px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(17, 26, 48, .12);
}

.icon-box {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 42px;
    place-items: center;
    border-radius: 20px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 27px;
}

.product-card h3,
.feature-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.035em;
}

.product-card p,
.feature-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--muted);
}

.card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

.card-link.coral {
    color: var(--coral);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    counter-reset: steps;
}

.step-card {
    padding: 27px 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .055);
    counter-increment: steps;
}

.step-card::before {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    place-items: center;
    border-radius: 14px;
    color: #a9c3ff;
    background: rgba(37, 99, 235, .22);
    font-size: 14px;
    font-weight: 900;
    content: "0" counter(steps);
}

.step-card h3 {
    margin-bottom: 9px;
    font-size: 21px;
}

.step-card p {
    margin-bottom: 0;
    color: #abb5ca;
    font-size: 14px;
}

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

.feature-list li {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 10px;
    color: #3e4961;
}

.feature-list li::before {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 900;
    content: "✓";
}

.pro-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 18px;
}

.screenshot-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.screenshot-card img {
    display: block;
    width: 100%;
}

.screenshot-card:nth-child(2) {
    transform: translateY(-28px);
}

.message-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 64px);
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(87, 139, 255, .35), transparent 32%),
        var(--navy);
}

.message-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 54px;
}

.message-panel h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.message-panel p {
    color: #bdc7da;
    font-size: 18px;
}

.inbox {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}

.inbox-head {
    display: flex;
    padding: 6px 7px 16px;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
}

.inbox-head span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    color: #bdd0ff;
    background: rgba(37, 99, 235, .3);
    font-size: 12px;
}

.message-row {
    display: grid;
    margin-top: 9px;
    padding: 14px;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    border-radius: 17px;
    color: var(--ink);
    background: #fff;
}

.message-logo {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: var(--blue-soft);
    font-weight: 900;
}

.message-row strong,
.message-row small {
    display: block;
}

.message-row strong {
    font-size: 13px;
}

.message-row small {
    overflow: hidden;
    max-width: 210px;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message-row time {
    color: #8c96aa;
    font-size: 10px;
}

.flow {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.flow-node {
    display: grid;
    min-width: 130px;
    min-height: 116px;
    padding: 18px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    font-size: 14px;
    font-weight: 850;
    text-align: center;
}

.flow-node span {
    display: block;
    color: var(--blue);
    font-size: 29px;
}

.flow-arrow {
    color: #a3aec3;
    font-size: 24px;
}

.cta-panel {
    display: grid;
    padding: clamp(36px, 6vw, 72px);
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eaf1ff, #fff4f1);
}

.cta-panel h2 {
    max-width: 700px;
    margin-bottom: 10px;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.cta-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.page-hero {
    padding: 88px 0 70px;
    background:
        radial-gradient(circle at 84% 18%, rgba(37, 99, 235, .14), transparent 28%),
        linear-gradient(180deg, #fbfdff, #fff);
}

.page-hero.coral-hero {
    background:
        radial-gradient(circle at 84% 18%, rgba(227, 67, 53, .14), transparent 28%),
        linear-gradient(180deg, #fffaf9, #fff);
}

.page-hero h1 {
    max-width: 850px;
}

.page-hero .section-inner {
    position: relative;
    z-index: 1;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: clamp(40px, 6vw, 82px);
}

.page-hero-grid .page-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(40px, 4.8vw, 64px);
}

.page-hero-grid .page-lead {
    max-width: 690px;
}

.page-hero-visual,
.story-visual {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(16, 24, 43, .1);
    border-radius: 32px;
    background: #dfe8f8;
    box-shadow: 0 28px 70px rgba(16, 24, 43, .18);
}

.page-hero-visual {
    min-height: clamp(390px, 37vw, 510px);
}

.page-hero-visual::after {
    position: absolute;
    inset: 62% 0 0;
    background: linear-gradient(180deg, transparent, rgba(7, 14, 29, .76));
    content: "";
    pointer-events: none;
}

.page-hero-visual img,
.story-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-visual img {
    position: absolute;
    inset: 0;
}

.visual-caption {
    position: absolute;
    z-index: 1;
    right: 25px;
    bottom: 23px;
    left: 25px;
    color: #fff;
}

.visual-caption strong,
.visual-caption span {
    display: block;
}

.visual-caption strong {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 850;
}

.visual-caption span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.visual-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(42px, 7vw, 94px);
}

.story-visual {
    min-height: 620px;
}

.story-visual img {
    position: absolute;
    inset: 0;
}

.story-copy .section-heading {
    margin-bottom: 30px;
}

.story-points {
    display: grid;
    gap: 13px;
}

.story-point {
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    grid-template-columns: 52px 1fr;
    align-items: start;
    gap: 15px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 34px rgba(16, 24, 43, .07);
}

.story-point .icon-box {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 16px;
    font-size: 22px;
}

.story-point h3 {
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -.025em;
}

.story-point p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.stat {
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    margin-bottom: 3px;
    font-size: 20px;
}

.stat span {
    color: var(--muted);
    font-size: 13px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.gallery img {
    display: block;
    width: 100%;
}

.gallery figcaption {
    padding: 15px 17px;
    color: #4f5a72;
    font-size: 13px;
    font-weight: 800;
}

.legal-shell,
#cookies {
    width: min(calc(100% - 40px), 930px);
    margin: 70px auto;
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

#cookies .col-md-12,
#cookies .col-md-8,
#cookies .col-md-6,
#cookies .row {
    width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}

#cookies .path {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 13px;
}

#cookies h1 {
    margin-bottom: 27px;
    font-size: clamp(34px, 5vw, 50px);
}

#cookies h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    font-size: 26px;
}

#cookies h3 {
    margin-top: 25px;
    font-size: 20px;
}

#cookies p,
#cookies li {
    color: #465169;
}

#cookies a {
    color: var(--blue);
    word-break: break-word;
}

.contact-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 24px;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

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

.contact-list a {
    color: var(--blue);
    font-weight: 750;
}

.formcontacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.formcontacto .form-group {
    margin: 0;
}

.formcontacto .form-group.full,
.formcontacto .captcha,
.formcontacto .form-actions {
    grid-column: 1 / -1;
}

.formcontacto label {
    display: block;
    margin-bottom: 7px;
    color: #424d64;
    font-size: 13px;
    font-weight: 800;
}

.formcontacto .form-control {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d8deea;
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    box-shadow: none;
}

.formcontacto textarea.form-control {
    min-height: 142px;
    resize: vertical;
}

.formcontacto .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.site-footer {
    padding: 70px 0 26px;
    color: #aeb8ca;
    background: #0b1222;
}

.footer-grid {
    display: grid;
    padding-bottom: 46px;
    grid-template-columns: 1.2fr .8fr .8fr .9fr;
    gap: 42px;
}

.footer-brand {
    color: #fff;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 16px;
    color: #95a0b5;
    font-size: 14px;
}

.footer-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-downloads {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 6px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-app {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.footer-app > div:first-child {
    display: flex;
    min-width: 150px;
    flex-direction: column;
}

.footer-app strong {
    color: #fff;
    font-size: 15px;
}

.footer-app span {
    color: #aeb8ca;
    font-size: 12px;
}

.footer-app .store-links {
    flex: 0 0 auto;
}

.footer-app .store-link,
.footer-app .store-link img {
    height: 42px;
    min-height: 42px;
}

.footer-bottom {
    display: flex;
    padding-top: 25px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.footer-bottom img {
    max-width: 210px;
    max-height: 42px;
    filter: grayscale(1) brightness(2);
    opacity: .75;
}

.cookie-note {
    position: fixed;
    z-index: 1500;
    right: 18px;
    bottom: 18px;
    display: none;
    width: min(430px, calc(100% - 36px));
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.cookie-note.show {
    display: block;
}

.cookie-note p {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 13px;
}

.cookie-note .button {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
}

@media (max-width: 1050px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .flow-arrow {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 69px 14px auto;
        display: none;
        padding: 15px;
        border: 1px solid var(--line);
        border-radius: 20px;
        align-items: stretch;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: grid;
    }

    .site-nav > a {
        padding: 13px 14px;
    }

    .site-nav .nav-cta {
        margin: 5px 0 0;
        text-align: center;
    }

    .hero,
    .section,
    .page-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-grid,
    .split-grid,
    .message-grid,
    .page-hero-grid,
    .visual-story-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-hero-visual {
        min-height: 440px;
    }

    .story-visual {
        min-height: 520px;
    }

    .device-stage {
        width: min(100%, 570px);
        min-height: 580px;
        margin: 0 auto;
    }

    .phone {
        width: min(260px, 46vw);
    }

    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid > :last-child {
        grid-column: auto;
    }

    .footer-downloads {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-wrap,
    .section-inner,
    .footer-inner {
        width: min(calc(100% - 28px), var(--max));
    }

    .brand-copy small {
        display: none;
    }

    h1 {
        font-size: 43px;
    }

    .hero {
        padding-top: 54px;
    }

    .page-hero-grid {
        gap: 36px;
    }

    .page-hero-grid .page-hero-copy h1 {
        font-size: 41px;
    }

    .page-hero-visual {
        min-height: 330px;
        border-radius: 24px;
    }

    .story-visual {
        min-height: 390px;
        border-radius: 24px;
    }

    .visual-caption {
        right: 18px;
        bottom: 17px;
        left: 18px;
    }

    .visual-caption strong {
        font-size: 16px;
    }

    .story-point {
        padding: 15px;
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .story-point .icon-box {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        font-size: 19px;
    }

    .hero-lead,
    .page-lead {
        font-size: 17px;
    }

    .actions .button {
        width: 100%;
    }

    .store-links-hero,
    .store-links-product {
        justify-content: center;
    }

    .store-link {
        min-height: 46px;
    }

    .store-link img {
        height: 46px;
    }

    .device-stage {
        min-height: 510px;
    }

    .phone {
        width: 225px;
        border-width: 7px;
        border-radius: 31px;
    }

    .phone-client {
        min-height: 470px;
    }

    .client-screen {
        min-height: 470px;
        padding: 38px 13px 18px;
    }

    .client-screen h3 {
        font-size: 20px;
    }

    .service-tile {
        min-height: 70px;
        padding: 10px;
        grid-template-columns: 36px 1fr 18px;
    }

    .service-tile .tile-icon {
        width: 36px;
        height: 36px;
    }

    .phone-pro {
        right: 2px;
    }

    .card-grid,
    .steps-grid,
    .stat-grid,
    .gallery,
    .flow,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 285px;
    }

    .pro-showcase {
        overflow-x: auto;
        margin-right: -14px;
        margin-left: -14px;
        padding: 24px 14px 30px;
        grid-template-columns: repeat(3, 72vw);
        scroll-snap-type: x mandatory;
    }

    .screenshot-card {
        scroll-snap-align: center;
    }

    .screenshot-card:nth-child(2) {
        transform: none;
    }

    .message-panel {
        border-radius: 24px;
    }

    .message-row small {
        max-width: 145px;
    }

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

    .formcontacto .form-group.full,
    .formcontacto .captcha,
    .formcontacto .form-actions {
        grid-column: 1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-app {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
