:root {
    --bg: #fbfcfb;
    --surface: #ffffff;
    --text: #0b0f0d;
    --muted: #5f6d65;
    --accent: #16a34a;
    --accent-bright: #22c55e;
    --accent-dark: #15803d;
    --accent-soft: rgba(22, 163, 74, 0.12);
    --border: rgba(11, 15, 13, 0.08);
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --header-h: 4.25rem;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 24px 60px rgba(11, 15, 13, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

/* —— Header —— */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--header-h);
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.92);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1;
    text-decoration: none;
    color: var(--text);
}

.logo img {
    display: block;
    height: 2.35rem;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.15s ease;
}

.site-nav a:hover {
    color: var(--text);
}

.site-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
}

.site-nav .nav-cta-icon {
    flex-shrink: 0;
    display: block;
}

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

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0.28rem auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

/* —— Buttons —— */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-icon {
    flex-shrink: 0;
    display: block;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.34);
}

.btn-ghost {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: #fff;
    border-color: rgba(11, 15, 13, 0.16);
    transform: translateY(-1px);
}

/* —— Hero —— */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    align-items: start;
    overflow: hidden;
    padding:
        calc(var(--header-h) + clamp(0.65rem, 1.5vh, 1.25rem))
        clamp(1.25rem, 4vw, 3rem)
        clamp(1.5rem, 3vh, 3rem);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: min(100%, 68rem);
}

.hero-promo {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: min(100%, 54rem);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.9rem;
    line-height: 0;
    flex-shrink: 0;
    overflow: visible;
    margin-left: 0;
    margin-top: 3%;
    padding-bottom: 0;
    z-index: 1;
    opacity: 0;
    animation: hero-promo-fade 1.05s 0.2s ease both;
}

.hero-promo::after {
    display: none;
}

.hero-promo img {
    display: block;
    position: relative;
    z-index: 1;
    width: auto;
    max-width: min(100%, 34rem);
    height: auto;
    max-height: min(72vh, 560px);
    object-fit: contain;
    object-position: center top;
    flex: 0 1 auto;
    transform: none;
    transform-origin: center center;
    mix-blend-mode: normal;
    filter:
        drop-shadow(0 16px 28px rgba(11, 15, 13, 0.1))
        drop-shadow(0 6px 12px rgba(11, 15, 13, 0.05));
    -webkit-mask-image: none;
    mask-image: none;
}

.hero-toasts {
    position: relative;
    top: clamp(2.5rem, 8vh, 5rem);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.65rem;
    width: min(15.5rem, 100%);
    flex: 0 0 min(15.5rem, 36%);
    max-width: 15.5rem;
    pointer-events: none;
    line-height: normal;
}

.hero-toast {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 0.65rem;
    align-items: start;
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 15, 13, 0.08);
    box-shadow:
        0 12px 28px rgba(11, 15, 13, 0.1),
        0 2px 6px rgba(11, 15, 13, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(18px) scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-toast.is-in {
    opacity: 1;
    transform: none;
}

.hero-toast.is-out {
    opacity: 0;
    transform: translateX(14px) scale(0.97);
}

.hero-toast-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    flex-shrink: 0;
}

.hero-toast-icon svg {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
}

.hero-toast-icon.is-alert {
    background: rgba(245, 158, 11, 0.16);
    color: #b45309;
}

.hero-toast-icon.is-ok {
    background: rgba(22, 163, 74, 0.14);
    color: #15803d;
}

.hero-toast-body {
    min-width: 0;
}

.hero-toast-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.25;
}

.hero-toast-meta {
    margin: 0.2rem 0 0;
    font-size: 0.7rem;
    color: var(--muted);
    line-height: 1.35;
}

.hero-copy {
    position: relative;
    max-width: 30rem;
    margin-top: 0;
    animation: fade-up 0.75s 0.15s ease both;
    z-index: 3;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #eef5f1;
}

.hero-glow {
    position: absolute;
    width: 42rem;
    height: 42rem;
    right: -8%;
    top: 4%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.05) 40%, transparent 70%);
    filter: blur(8px);
    animation: glow-breathe 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-map {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    animation: hero-in 1s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.map-base {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(22, 163, 74, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 163, 74, 0.045) 1px, transparent 1px),
        linear-gradient(145deg, #f4f8f5 0%, #e9f2ec 48%, #e2ede6 100%);
    background-size: 48px 48px, 48px 48px, auto;
    animation: grid-drift 28s linear infinite;
}

.map-roads {
    position: absolute;
    inset: 0;
    opacity: 0.55;
}

.road {
    position: absolute;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 1px rgba(11, 15, 13, 0.04);
}

.road-h {
    height: 10px;
    left: 0;
    right: 0;
}

.road-h1 { top: 34%; }
.road-h2 { top: 62%; height: 8px; opacity: 0.8; }

.road-v {
    width: 10px;
    top: 0;
    bottom: 0;
}

.road-v1 { left: 38%; }
.road-v2 { left: 68%; width: 8px; }

.road-d {
    width: 9px;
    height: 120%;
    top: -10%;
    left: 52%;
    transform: rotate(28deg);
    transform-origin: center;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.8) 80%, transparent);
}

.map-trail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.map-city {
    opacity: 0;
    animation: fade-up 0.9s 0.2s ease forwards;
}

.map-building {
    fill: rgba(120, 140, 130, 0.2);
    stroke: rgba(11, 15, 13, 0.06);
    stroke-width: 1;
}

.map-building.is-tall {
    fill: rgba(95, 115, 105, 0.28);
}

.map-building.is-soft {
    fill: rgba(148, 168, 158, 0.14);
}

.map-lot {
    fill: rgba(255, 255, 255, 0.35);
    stroke: rgba(11, 15, 13, 0.05);
    stroke-width: 1;
    stroke-dasharray: 3 2;
}

.map-park {
    fill: rgba(22, 163, 74, 0.12);
    stroke: rgba(22, 163, 74, 0.1);
    stroke-width: 1;
}

.map-park-inner {
    fill: rgba(22, 163, 74, 0.16);
    stroke: none;
}

.map-windows rect {
    fill: rgba(255, 255, 255, 0.55);
    stroke: none;
}

.trail-soft {
    fill: none;
    stroke: rgba(22, 163, 74, 0.14);
    stroke-width: 14;
    stroke-linecap: round;
}

.trail-soft--alt {
    stroke: rgba(22, 163, 74, 0.07);
    stroke-width: 10;
}

.trail-main {
    fill: none;
    stroke: #16a34a;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: trail-draw 2.4s 0.35s ease forwards;
    filter: drop-shadow(0 0 8px rgba(22, 163, 74, 0.35));
}

.trail-node {
    fill: #fff;
    stroke: #16a34a;
    stroke-width: 2;
    opacity: 0;
    animation: fade-up 0.5s 1.6s ease forwards;
}

.trail-car,
.car-label {
    opacity: 0;
    animation: car-appear 0.45s 0.85s ease forwards;
}

.trail-car--b,
.car-label--b {
    animation-delay: 1.1s;
}

.trail-car--c {
    animation-delay: 1.25s;
}

.trail-car--d {
    animation-delay: 1.35s;
}

.trail-car--e {
    animation-delay: 1.45s;
}

.trail-car-img {
    pointer-events: none;
}

.car-label rect {
    fill: rgba(255, 255, 255, 0.94);
    stroke: rgba(11, 15, 13, 0.08);
    stroke-width: 1;
}

.car-label text {
    fill: #0b0f0d;
    font-family: var(--font-display), "DM Sans", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.car-label--b text {
    font-size: 10px;
}

.map-hub {
    position: absolute;
    right: 14%;
    top: 16%;
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    animation: fade-up 0.6s 1.4s ease both;
}

.hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(22, 163, 74, 0.45);
    animation: route-spin 18s linear infinite;
}

.hub-core {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #0b0f0d;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.hero-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 28%, rgba(255, 255, 255, 0.28) 48%, transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 22%, transparent 70%, rgba(247, 250, 248, 0.45) 100%);
    pointer-events: none;
}

.hero-mobile-swiper__viewport {
    position: relative;
    aspect-ratio: 390 / 844;
    overflow: hidden;
    background: transparent;
}

.hero-mobile-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(0.985);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    background: transparent;
}

.hero-mobile-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-mobile-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    filter: drop-shadow(0 18px 40px rgba(11, 15, 13, 0.16));
}

.hero-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.hero-mobile-dots button {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 15, 13, 0.18);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-mobile-dots button.is-active {
    width: 1.35rem;
    background: var(--accent, #16a34a);
}

.hero-mobile-dots button:focus-visible {
    outline: 2px solid rgba(22, 163, 74, 0.55);
    outline-offset: 2px;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0 0 1.35rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1;
}

.hero-brand .logo-mark {
    min-width: 2.35rem;
    height: 2.35rem;
    font-size: 1rem;
    padding: 0 0.32rem 0 0.26rem;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.75rem);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--text);
    display: inline-block;
    padding: 0.45rem 0.85rem;
   
}

.hero-accent-text {
    color: var(--accent);
}

.hero-lead {
    margin: 0 0 1.75rem;
    max-width: 28rem;
    color: #1f2937;
    font-size: clamp(1.02rem, 2vw, 1rem);
    line-height: 1.55;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.576);
   
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* —— Sections —— */
.section {
    padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
    max-width: 38rem;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

/* Platform */
.platform {
    background: #fff;
}

.platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.platform-stage {
    min-width: 0;
}

.platform-phone {
    width: 100%;
    max-width: 260px;
    justify-self: center;
}

.hero-mobile-swiper {
    margin: 0;
    width: 100%;
}

.stage-screen {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f7faf8);
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fade-up 0.7s ease both;
}

.stage-bar {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
}

.stage-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d7e0da;
}

.stage-bar span:first-child {
    background: #86efac;
}

.stage-body {
    display: block;
    min-height: 0;
}

.stage-map {
    position: relative;
    background: #0f1412;
    overflow: hidden;
}

.stage-swiper__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 420px;
    max-height: min(68vh, 560px);
    background: #0f1412;
}

.stage-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(0.992);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.stage-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.stage-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.stage-swiper__dots {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    z-index: 2;
    display: flex;
    gap: 0.45rem;
    transform: translateX(-50%);
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(11, 15, 13, 0.45);
    backdrop-filter: blur(8px);
}

.stage-swiper__dots button {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.stage-swiper__dots button.is-active {
    background: #fff;
    transform: scale(1.15);
}

.stage-route {
    display: none;
}

.stage-dot {
    display: none;
}

.stage-list {
    display: none;
}

.stage-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-sm);
    background: #f6f9f7;
    font-size: 0.9rem;
}

.stage-row b {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.stage-row span {
    color: var(--muted);
}

.stage-row.is-live span {
    color: var(--accent-dark);
    font-weight: 700;
}

/* Solutions */
.solution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}

.solution-list li {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.solution-list h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.solution-list p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

/* How */
.how {
    background: #fff;
}

.how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.how-steps li {
    padding-top: 1rem;
    border-top: 2px solid var(--accent);
}

.step-num {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.how-steps h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.how-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

/* Contact */
.contact {
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: 28px;
    background:
        radial-gradient(ellipse 60% 50% at 0% 0%, rgba(22, 163, 74, 0.14), transparent 55%),
        #0b0f0d;
    color: #fff;
    box-shadow: var(--shadow);
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-panel > * {
    min-width: 0;
    max-width: 100%;
}

.contact-copy {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.contact-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.contact-copy > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 28rem;
}

.contact-benefits {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    max-width: 28rem;
}

.contact-benefits li {
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: 0.65rem;
    align-items: start;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-benefits svg {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.12rem;
    color: #4ade80;
    flex-shrink: 0;
}

.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 0.35rem;
    max-width: 28rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(22, 163, 74, 0.08));
    color: #ecfdf5;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transform-origin: top left;
}

.contact-success.is-visible {
    animation: contact-success-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-success-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.22);
    color: #86efac;
    box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.45);
}

.contact-success.is-visible .contact-success-icon {
    animation: contact-success-pulse 1.1s 0.2s ease-out both;
}

.contact-success-check {
    stroke-dasharray: 28;
    stroke-dashoffset: 28;
}

.contact-success.is-visible .contact-success-check {
    animation: contact-success-draw 0.45s 0.18s ease forwards;
}

.contact-success-copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.contact-success-copy strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-success-copy p {
    margin: 0;
    color: rgba(220, 252, 231, 0.82);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

@keyframes contact-success-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes contact-success-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes contact-success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.45);
        transform: scale(0.86);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(134, 239, 172, 0);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(134, 239, 172, 0);
        transform: scale(1);
    }
}

.contact-form {
    display: grid;
    gap: 0.9rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
    max-width: 100%;
}

.contact-form span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 5.5rem;
    font: inherit;
    line-height: 1.45;
}

.contact-form .optional-tag {
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form select option {
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(34, 197, 94, 0.55);
    background: rgba(255, 255, 255, 0.09);
}

.phone-input {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.phone-input:focus-within {
    border-color: rgba(34, 197, 94, 0.55);
    background: rgba(255, 255, 255, 0.09);
}

.phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0 0.85rem 0 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    user-select: none;
}

.phone-flag {
    display: block;
    width: 1.35rem;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-code {
    line-height: 1;
}

.contact-form .phone-input input {
    flex: 1 1 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding-left: 0.85rem;
    min-width: 0;
}

.contact-form .phone-input input:focus {
    background: transparent;
    border-color: transparent;
}

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

.contact-turnstile {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    container-type: inline-size;
    container-name: turnstile;
}

.contact-turnstile.is-active {
    min-height: 65px;
    margin-bottom: 0.15rem;
}

.contact-turnstile .cf-turnstile,
.contact-turnstile iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.35rem;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-submit,
.contact-form .contact-submit span,
.contact-form .contact-submit #contact-submit-label {
    color: #ffffff;
}

.contact-form .contact-submit span,
.contact-form .contact-submit #contact-submit-label {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.contact-submit:hover {
    background: var(--accent-bright);
    color: #ffffff;
}

.contact-submit:hover span,
.contact-submit:hover #contact-submit-label {
    color: #ffffff;
}

.contact-submit:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 3px;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.7;
    color: #ffffff;
}

.contact-submit:disabled span,
.contact-submit:disabled #contact-submit-label {
    color: #ffffff;
}

.form-note-error {
    margin: 0;
    color: #fca5a5;
    font-size: 0.92rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 2rem;
    padding: 0;
    color: var(--muted);
    background:
        radial-gradient(ellipse 70% 80% at 0% 100%, rgba(22, 163, 74, 0.07), transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(34, 197, 94, 0.05), transparent 50%),
        linear-gradient(180deg, #f4f7f5 0%, #eef3f0 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-bright), transparent);
    opacity: 0.55;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 2rem 3rem;
    align-items: end;
    padding: 2.75rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.footer-brand {
    display: grid;
    gap: 0.85rem;
    max-width: 28rem;
}

.site-footer .logo {
    color: var(--text);
}

.footer-tagline {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1.35rem;
}

.footer-nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0.72;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-dark);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
    border-top: 1px solid rgba(11, 15, 13, 0.06);
}

.footer-meta {
    margin: 0;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
}

.footer-meta-brand {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.06em;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

/* Motion */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hero-promo-fade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateX(24px) scale(1.02);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes grid-drift {
    to {
        background-position: 48px 48px, 48px 48px, 0 0;
    }
}

@keyframes trail-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes car-appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glow-breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes route-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-promo {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-toast {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .map-trail animateMotion {
        display: none;
    }

    .trail-car,
    .car-label {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .map-city,
    .trail-node,
    .map-hub {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .trail-main {
        stroke-dashoffset: 0;
        animation: none;
    }
}

/* —— Responsive —— */
@media (max-height: 860px) and (min-width: 761px) {
    .hero-promo {
        max-width: min(100%, 50rem);
    }

    .hero-promo img {
        max-width: min(100%, 30rem);
        max-height: min(66vh, 500px);
        object-position: center top;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    }

    .hero-copy {
        margin-top: 0;
    }

    .hero-lead {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        max-width: 42rem;
    }

    .hero-promo {
        max-width: min(100%, 42rem);
        margin-left: 0;
    }

    .hero-promo img {
        max-width: min(100%, 22rem);
        max-height: min(58vh, 460px);
        object-position: center top;
    }

    .hero-toasts {
        flex-basis: min(13rem, 34%);
        max-width: 13rem;
        top: 1.5rem;
    }

    .hero-copy {
        max-width: 100%;
        margin-top: 0;
    }

    .platform-layout {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .platform-stage {
        width: 100%;
        max-width: 920px;
    }

    .platform-phone {
        max-width: 220px;
        order: -1;
    }

    .stage-body {
        display: block;
    }

    .stage-swiper__viewport {
        min-height: 360px;
        max-height: min(58vh, 480px);
    }

    .solution-list li {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.25rem;
        border-radius: 22px;
        gap: 1.5rem;
    }

    .contact-copy h2 {
        font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    }

    .contact-copy > p,
    .contact-benefits {
        max-width: none;
    }

    .contact-benefits li {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 0.8rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        padding: 0.85rem 0.9rem;
    }

    .contact-form textarea {
        min-height: 4.75rem;
    }

    .phone-prefix {
        padding: 0 0.55rem 0 0.7rem;
        gap: 0.35rem;
        font-size: 0.85rem;
    }

    .phone-flag {
        width: 1.2rem;
    }

    .contact-form .phone-input input {
        padding-left: 0.7rem;
    }

    /* Keep Turnstile inside the form column (widget min width is ~300px) */
    .contact-turnstile.is-active {
        width: 100%;
        max-width: 100%;
        height: 65px;
        min-height: 65px;
        overflow: hidden;
    }

    .contact-turnstile .cf-turnstile {
        width: 300px !important;
        max-width: none;
        transform: scale(0.92);
        transform-origin: left top;
    }

    .contact-submit {
        min-height: 3.1rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-map {
        inset: 0;
        border-radius: 0;
        border: 0;
        opacity: 1;
    }

    .hero-fade {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 35%, rgba(255, 255, 255, 0.15) 60%, transparent 80%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.35) 40%, transparent 70%);
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.25rem;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid var(--border);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border);
    }

    .site-nav .nav-cta {
        margin-top: 0.75rem;
        justify-content: center;
        border-bottom: 0;
    }

    .hero {
        align-items: center;
        padding-top: calc(var(--header-h) + 3rem);
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-promo {
        max-width: min(100%, 22rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-left: 0;
        margin-top: 0;
    }

    .hero-promo img {
        max-width: 100%;
        max-height: min(50vh, 420px);
        object-position: center top;
    }

    .hero-toasts {
        position: relative;
        top: 0;
        width: 100%;
        max-width: none;
        flex: none;
        align-items: stretch;
    }

    .hero-toast {
        padding: 0.55rem 0.65rem;
        border-radius: 12px;
    }

    .hero-toast-title {
        font-size: 0.72rem;
    }

    .hero-toast-meta {
        font-size: 0.65rem;
    }

    .hero-copy {
        margin-top: 0;
    }

    .platform-phone {
        max-width: min(58vw, 200px);
    }

    .hero-map {
        inset: 0;
        height: auto;
        border-radius: 0;
        opacity: 1;
    }

    .hero-fade {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255, 255, 255, 0.2) 65%, transparent 100%);
    }

    .map-hub,
    .car-label {
        display: none;
    }

    .site-footer {
        margin-top: 1.25rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-top: 2.25rem;
        padding-bottom: 1.5rem;
    }

    .footer-nav {
        justify-content: flex-start;
    }

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

@media (max-width: 420px) {
    .section.contact {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 3.5rem;
    }

    .contact-panel {
        padding: 1.25rem 1rem;
        border-radius: 18px;
        gap: 1.25rem;
    }

    .contact-form {
        gap: 0.75rem;
    }

    .phone-prefix {
        padding: 0 0.45rem 0 0.55rem;
    }

    .contact-turnstile.is-active {
        height: 58px;
        min-height: 58px;
    }

    .contact-turnstile .cf-turnstile {
        transform: scale(0.82);
        transform-origin: left top;
    }
}
