:root {
    --navy: #102a43;
    --navy-dark: #081c2c;
    --blue: #1976a3;
    --blue-light: #eaf6fb;
    --teal: #1b8a8f;
    --ink: #243746;
    --muted: #5f7180;
    --line: #dce6ec;
    --paper: #ffffff;
    --soft: #f4f8fa;
    --shadow: 0 18px 50px rgba(16, 42, 67, .12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: rgba(8, 28, 44, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
}
.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #2ec4b6, #1a82b8);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
    font-size: .82rem;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-weight: 650;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }
.nav .nav-cta { color: var(--navy-dark); background: #fff; }
.menu-button { display: none; }

.hero {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 10%, rgba(46,196,182,.34), transparent 32%),
        radial-gradient(circle at 9% 100%, rgba(25,118,163,.42), transparent 35%),
        linear-gradient(125deg, var(--navy-dark), var(--navy));
}
.hero-inner {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
    padding-block: 84px;
}
.eyebrow {
    margin: 0 0 12px;
    color: #87e8df;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}
.hero-copy {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button-light { color: var(--navy-dark); background: #fff; }
.button-ghost { background: transparent; border: 1px solid rgba(255,255,255,.38); box-shadow: none; }

.hero-panel {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.09);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}
.hero-stat { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; padding: 18px 0; }
.hero-stat + .hero-stat { border-top: 1px solid rgba(255,255,255,.14); }
.hero-stat strong { grid-row: span 2; font-size: 2.35rem; line-height: 1; color: #fff; }
.hero-stat span { font-weight: 750; }
.hero-stat small { color: rgba(255,255,255,.68); }

.section { padding-block: 88px; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading h2, .contact-card h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.intro-aside {
    position: sticky;
    top: 104px;
    padding: 28px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(145deg, var(--blue), var(--teal));
    box-shadow: var(--shadow);
}
.intro-aside strong { display: block; font-size: 3.5rem; line-height: 1; }
.intro-aside span { display: block; margin-top: 10px; font-weight: 800; }
.intro-copy { font-size: 1.09rem; }
.intro-copy p:first-child { margin-top: 0; }

.examples-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.example-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 35px rgba(16,42,67,.07);
}
.example-card::after {
    content: attr(data-number);
    position: absolute;
    right: 18px;
    bottom: -22px;
    color: rgba(25,118,163,.07);
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
}
.example-card h3 { position: relative; z-index: 1; margin: 0 0 12px; color: var(--navy); font-size: 1.35rem; }
.example-card p { position: relative; z-index: 1; margin: 0; }
.metric { color: var(--blue); font-weight: 900; }

.logo-section { padding-block: 76px; background: #fff; }
.logo-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-block: 12px;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.logo-track {
    display: flex;
    width: max-content;
    animation: ticker 92s linear infinite;
    will-change: transform;
}
.logo-group { display: flex; align-items: center; gap: 22px; padding-right: 22px; }
.logo-card {
    width: 190px;
    height: 250px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 18px;
/*    border: 1px solid var(--line);*/
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16,42,67,.06);
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; }
.logo-ticker:hover .logo-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.contact-band { color: #fff; background: linear-gradient(115deg, var(--navy), var(--blue)); }
.contact-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-block: 58px; }
.contact-band h2 { margin: 0; font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1.12; }
.contact-band p { margin: 8px 0 0; color: rgba(255,255,255,.76); }

.contact-page { min-height: calc(100vh - 72px); padding-block: 72px; background: var(--soft); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact-copy { padding: 22px 10px 0 0; }
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.contact-card { padding: clamp(26px,5vw,48px); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 20px; margin-top: 30px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy); font-weight: 800; }
.field input, .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bdccd5;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
.field input:focus, .field textarea:focus { outline: 3px solid rgba(25,118,163,.16); border-color: var(--blue); }
.field textarea { min-height: 180px; resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: #176b4d; font-weight: 750; }

.site-footer { padding-block: 30px; color: rgba(255,255,255,.72); background: var(--navy-dark); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-inner a { color: #fff; }

@media (max-width: 850px) {
    .menu-button {
        display: inline-grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 10px;
        color: #fff;
        background: transparent;
        font-size: 1.25rem;
    }
    .nav {
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 14px;
        background: var(--navy-dark);
        box-shadow: var(--shadow);
    }
    .nav.is-open { display: flex; }
    .nav a { text-align: center; }
    .hero-inner, .intro-grid, .contact-layout { grid-template-columns: 1fr; }
    .hero-inner { gap: 40px; min-height: auto; }
    .intro-aside { position: static; }
    .examples-grid { grid-template-columns: 1fr; }
    .contact-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
    .container { width: min(100% - 26px, 1160px); }
    .section { padding-block: 64px; }
    .hero-inner { padding-block: 62px; }
    .hero-panel { padding: 20px; }
    .hero-stat strong { font-size: 1.85rem; }
    .example-card { min-height: auto; padding: 24px; }
    .logo-card { width: 160px; height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .logo-track { animation-play-state: paused; }
    .button:hover { transform: none; }
}

.website-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-status.is-success { color: #176b4d; }
.form-status.is-error { color: #a12626; }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
