﻿:root {
    --brand: #fbbf24;
    --brand-dark: #f59e0b;
    --brand-50: #fffbeb;
    --ink: #0f172a;
    --muted: #64748b;
    --soft-muted: #94a3b8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --line: #e2e8f0;
    --dark: #090d16;
    --shadow: 0 4px 20px -2px rgba(15, 23, 42, .06);
    --glow: 0 0 25px rgba(0, 0, 0, .12);
    --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.dark {
    --ink: #f8fafc;
    --muted: #cbd5e1;
    --soft-muted: #94a3b8;
    --surface: #0f172a;
    --surface-soft: #111827;
    --line: #1e293b;
    --brand-50: rgba(0, 0, 0, .11);
}

* {
    box-sizing: border-box;
    transition: background-color .2s ease, border-color .2s ease, color .15s ease, box-shadow .2s ease;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
}

body {
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font-body);
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0;
    margin: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.landing-brand strong,
.section-heading h2,
.landing-hero h1,
.merchant-callout h2 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

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

.landing-container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 64px;
    width: 100%;
}

.landing-animation-ready .landing-animate {
    filter: blur(9px);
    opacity: 0;
    transition:
        opacity .76s cubic-bezier(.22, 1, .36, 1),
        transform .76s cubic-bezier(.22, 1, .36, 1),
        filter .76s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--landing-stagger, 0ms);
    will-change: opacity, transform, filter;
}

.landing-animation-ready .landing-reveal-up {
    transform: translate3d(0, 34px, 0);
}

.landing-animation-ready .landing-reveal-left {
    transform: translate3d(-38px, 0, 0);
}

.landing-animation-ready .landing-reveal-right {
    transform: translate3d(38px, 0, 0);
}

.landing-animation-ready .landing-reveal-scale,
.landing-animation-ready .landing-reveal-pop {
    transform: scale(.94);
}

.landing-animation-ready .landing-reveal-pop {
    filter: blur(4px);
}

.landing-animation-ready .landing-animate.is-visible {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.landing-header {
    animation: landing-header-drop .62s cubic-bezier(.22, 1, .36, 1) both;
}

.landing-primary-btn,
.tracking-form button,
.merchant-callout button {
    overflow: hidden;
    position: relative;
}

.landing-primary-btn::after,
.tracking-form button::after,
.merchant-callout button::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    content: "";
    height: 160%;
    left: -90%;
    pointer-events: none;
    position: absolute;
    top: -30%;
    transform: rotate(18deg);
    width: 42%;
}

.landing-primary-btn:hover::after,
.tracking-form button:hover::after,
.merchant-callout button:hover::after {
    animation: landing-button-shine .8s ease;
}

.landing-eyebrow,
.section-heading span,
.section-label {
    position: relative;
}

.landing-eyebrow::after,
.section-heading span::after,
.section-label::after {
    background: var(--brand);
    border-radius: 999px;
    bottom: -7px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
}

.landing-eyebrow.is-visible::after,
.section-heading.is-visible span::after,
.about-copy.is-visible .section-label::after {
    animation: landing-label-swipe .72s cubic-bezier(.22, 1, .36, 1) .22s both;
}

.landing-contact-strip {
    align-items: center;
    background: var(--dark);
    color: #cbd5e1;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    gap: 24px;
    height: 40px;
    justify-content: flex-end;
    padding: 0 64px;
}

.landing-contact-strip a {
    align-items: center;
    display: inline-flex;
    gap: 7px;
}

.landing-contact-strip a:hover {
    transform: translateY(-1px);
}

.landing-contact-strip a:hover,
.landing-contact-strip i {
    color: var(--brand);
}

.landing-live-dot {
    animation: pulse-active 1.8s infinite;
    background: var(--brand);
    border-radius: 999px;
    display: inline-flex;
    height: 10px;
    width: 10px;
}

.landing-header {
    align-items: center;
    background: rgba(9, 13, 22, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 41, 55, .9);
    display: flex;
    height: 80px;
    justify-content: space-between;
    padding: 0 64px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.dark .landing-header {
    background: rgba(5, 8, 22, .96);
    border-bottom-color: rgba(31, 41, 55, .9);
}

.landing-brand {
    align-items: center;
    display: inline-flex;
    gap: 0;
    max-width: min(230px, calc(100vw - 150px));
    min-width: 0;
}

.landing-brand > span {
    align-items: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 25px;
    height: 54px;
    justify-content: center;
    max-width: 230px;
    min-width: 0;
    width: auto;
}

.landing-brand > span.landing-brand-logo {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex: 0 0 auto;
    max-width: 230px;
    min-width: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.landing-brand-logo img {
    display: block;
    height: 54px;
    max-height: 54px;
    max-width: 230px;
    object-fit: contain;
    width: auto;
}

.landing-brand:hover .landing-brand-logo img {
    animation: landing-logo-nudge .72s ease;
}

.landing-brand strong {
    color: var(--ink);
    display: none;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-brand b {
    font-weight: inherit;
}

.landing-brand small {
    color: var(--soft-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin-top: 3px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-nav,
.landing-header-actions,
.landing-mobile-actions {
    align-items: center;
    display: flex;
}

.landing-nav {
    gap: 32px;
}

.landing-nav a {
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 900;
}

.landing-nav a:hover {
    color: var(--brand);
}

.landing-header-actions {
    gap: 14px;
}

.landing-mobile-actions {
    display: none;
    gap: 8px;
}

.landing-icon-btn {
    align-items: center;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 999px;
    color: #e5e7eb;
    display: inline-flex;
    font-size: 19px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.landing-language {
    align-items: center;
    background: transparent;
    border: 0;
    color: #e5e7eb;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    min-height: 42px;
    padding: 0 2px;
}

.landing-language:hover,
.landing-icon-btn:hover {
    color: var(--brand);
}

.landing-primary-btn {
    align-items: center;
    background: var(--brand);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    color: #0f172a;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
}

.landing-primary-btn:hover {
    background: var(--brand-dark);
}

.landing-mobile-drawer {
    background: var(--surface);
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: -24px 0 60px rgba(15, 23, 42, .18);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .24s ease;
    width: min(288px, 100vw);
    z-index: 80;
}

.landing-mobile-drawer.open {
    transform: translateX(0);
}

.landing-mobile-head {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.landing-mobile-head button {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 20px;
}

.landing-mobile-drawer nav {
    display: grid;
    gap: 18px;
}

.landing-mobile-drawer nav a {
    color: var(--muted);
    font-weight: 800;
}

.landing-hero {
    background: linear-gradient(180deg, #f9fafb 0%, var(--surface) 62%);
    overflow: hidden;
    padding: 72px 0 96px;
}

.dark .landing-hero {
    background: linear-gradient(180deg, #020617 0%, var(--surface) 62%);
}

.landing-hero-grid {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
}

.landing-hero-copy {
    display: grid;
    gap: 24px;
}

.landing-eyebrow,
.section-label,
.section-heading > span {
    align-items: center;
    color: var(--brand);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-eyebrow {
    background: var(--brand-50);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    padding: 8px 14px;
    width: fit-content;
}

.dark .landing-eyebrow {
    background: rgba(30, 41, 59, .9);
    border-color: #334155;
}

.landing-eyebrow i {
    animation: pulse-active 1.8s infinite;
    background: var(--brand);
    border-radius: 999px;
    height: 8px;
    width: 8px;
}

.landing-hero h1 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.03;
    margin: 0;
    max-width: 760px;
}

.landing-hero-copy > p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    max-width: 560px;
}

.tracking-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    max-width: 560px;
    padding: 16px;
}

.tracking-panel > strong {
    color: var(--soft-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tracking-form {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    gap: 8px;
    padding: 6px;
}

.tracking-form input,
.contact-card input,
.contact-card textarea,
.calculator-card input,
.calculator-card select {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    outline: none;
    padding: 13px 15px;
    width: 100%;
}

.tracking-form input {
    background: transparent;
    border: 0;
    border-radius: 999px;
    padding-left: 18px;
}

.tracking-form input:focus,
.contact-card input:focus,
.contact-card textarea:focus,
.calculator-card input:focus,
.calculator-card select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .12);
}

.tracking-form button {
    align-items: center;
    background: var(--brand);
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    white-space: nowrap;
}

.tracking-form button:hover {
    background: var(--brand-dark);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.landing-hero-visual {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
    overflow: hidden;
    position: relative;
}

.landing-hero-visual.is-visible {
    animation: landing-card-float 7s ease-in-out infinite;
}

.landing-hero-visual img,
.about-image img,
.map-card img,
.map-card iframe {
    border: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.landing-hero-visual::before {
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, .24), transparent 82%);
    content: "";
    height: 160%;
    left: -70%;
    opacity: .64;
    position: absolute;
    top: -30%;
    transform: rotate(12deg);
    width: 38%;
    z-index: 2;
    animation: landing-image-sheen 6.6s ease-in-out infinite;
}

.landing-hero-visual::after {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .42));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-stat-card {
    align-items: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    bottom: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 12px;
    left: 24px;
    padding: 14px 18px;
    position: absolute;
    z-index: 3;
}

.landing-hero-visual.is-visible .hero-stat-card {
    animation: landing-mini-float 3.4s ease-in-out infinite;
}

.hero-stat-card span {
    align-items: center;
    background: rgba(0, 0, 0, .1);
    border-radius: 999px;
    color: var(--brand);
    display: flex;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.hero-stat-card strong {
    color: #0f172a;
    display: block;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}

.hero-stat-card small {
    color: #94a3b8;
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    margin-top: 4px;
    text-transform: uppercase;
}

.partner-section,
.services-section,
.calculator-section,
.contact-section {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    padding: 56px 0;
}

.section-kicker,
.section-heading {
    text-align: center;
}

.section-kicker {
    color: var(--soft-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 34px;
    text-transform: uppercase;
}

.partner-logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 58px;
    justify-content: center;
    opacity: .58;
}

.partner-logos strong {
    align-items: center;
    color: var(--muted);
    display: inline-flex;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0;
    min-height: 44px;
}

.partner-logos img {
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
}

.highlight-grid,
.service-grid,
.feature-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 44px;
}

.highlight-grid article,
.service-grid article,
.stats-grid article,
.contact-card,
.calculator-card,
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.highlight-grid article {
    padding: 22px;
}

.news-section {
    background: var(--surface);
    padding: 56px 0;
}

.news-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.news-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    display: block;
    margin-bottom: 18px;
    object-fit: cover;
    width: 100%;
}

.news-grid small {
    color: var(--accent);
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news-grid h3 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.news-grid p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

.highlight-grid h3,
.service-grid h3,
.about-list h3 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    margin: 0;
}

.highlight-grid p,
.service-grid p,
.about-list p {
    color: var(--soft-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
    margin: 8px 0 0;
}

.about-section,
.stats-section,
.testimonial-section {
    background: var(--surface);
    padding: 88px 0;
}

.about-grid,
.contact-grid,
.calculator-grid {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.about-image,
.map-card {
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.about-image::after,
.map-card::after {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .64));
    content: "";
    inset: 0;
    position: absolute;
}

.about-image > div,
.map-card > div {
    bottom: 0;
    color: #fff;
    display: grid;
    gap: 6px;
    left: 0;
    padding: 28px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.about-image small {
    color: #111827;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-image strong {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
}

.about-copy,
.about-list {
    display: grid;
    gap: 22px;
}

.about-copy h2,
.section-heading h2,
.contact-card h2,
.merchant-callout h2 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
    margin: 0;
}

.about-copy > p,
.section-heading p,
.contact-card p {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

.about-list article {
    align-items: flex-start;
    display: flex;
    gap: 16px;
}

.about-list article > span,
.service-grid article > span {
    align-items: center;
    background: var(--brand-50);
    border-radius: 14px;
    color: var(--brand);
    display: flex;
    flex: 0 0 auto;
    font-size: 24px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.about-list article > span img {
    display: block;
    max-height: 30px;
    max-width: 30px;
    object-fit: contain;
}

.service-grid article > span img,
.feature-grid span img {
    border-radius: 10px;
    display: block;
    max-height: 30px;
    max-width: 30px;
    object-fit: contain;
}

.dark .about-list article > span,
.dark .service-grid article > span {
    background: #1e293b;
}

.section-heading {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    max-width: 660px;
    text-align: center;
}

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

.service-grid article {
    display: grid;
    gap: 16px;
    padding: 26px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-grid article:hover {
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.feature-section {
    background: #090d16;
    color: #fff;
    overflow: hidden;
    padding: 88px 0;
    position: relative;
}

.feature-section .landing-container {
    position: relative;
    z-index: 1;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light span {
    color: var(--brand);
}

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

.feature-grid article {
    align-items: center;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    display: flex;
    gap: 15px;
    padding: 20px;
    transition: background .2s ease, transform .2s ease;
}

.feature-grid article:hover {
    background: rgba(255, 255, 255, .1);
    transform: scale(1.02);
}

.feature-grid span,
.stats-grid span {
    align-items: center;
    background: var(--brand);
    border-radius: 13px;
    color: #0f172a;
    display: flex;
    flex: 0 0 auto;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.feature-grid strong {
    font-size: 14px;
    line-height: 1.35;
}

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

.stats-grid article {
    align-items: center;
    display: grid;
    gap: 13px;
    justify-items: center;
    padding: 32px 20px;
    text-align: center;
}

.stats-grid span {
    border-radius: 999px;
    height: 50px;
    width: 50px;
}

.stats-grid strong {
    font-size: 31px;
    font-weight: 900;
}

.stats-grid small {
    color: var(--soft-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.partner-logos strong.is-visible {
    animation: landing-logo-float 4.2s ease-in-out infinite;
    animation-delay: var(--landing-stagger, 0ms);
}

.highlight-grid article.is-visible:hover,
.service-grid article.is-visible:hover,
.feature-grid article.is-visible:hover,
.stats-grid article.is-visible:hover,
.news-grid article.is-visible:hover,
.testimonial-card.is-visible:hover,
.contact-card.is-visible:hover,
.calculator-card.is-visible:hover {
    box-shadow: 0 28px 54px rgba(15, 23, 42, .14);
    transform: translateY(-8px);
}

.about-list article.is-visible:hover {
    transform: translateX(6px);
}

.about-image.is-visible,
.map-card.is-visible {
    animation: landing-card-float 7.4s ease-in-out infinite;
}

.about-image.is-visible img,
.map-card.is-visible img {
    animation: landing-slow-zoom 13s ease-in-out infinite alternate;
}

.about-list article.is-visible > span,
.service-grid article.is-visible > span,
.feature-grid article.is-visible span,
.stats-grid article.is-visible span {
    animation: landing-icon-pop .74s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: calc(var(--landing-stagger, 0ms) + 120ms);
}

.stats-grid article.is-visible strong {
    animation: landing-number-rise .82s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: calc(var(--landing-stagger, 0ms) + 140ms);
}

.news-grid article.is-visible img {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.news-grid article.is-visible:hover img {
    filter: saturate(1.06);
    transform: scale(1.045);
}

.testimonial-card.is-visible .quote-icon,
.contact-card.is-visible .landing-primary-btn {
    animation: landing-soft-pulse 3.8s ease-in-out infinite;
}

.merchant-callout.is-visible,
.merchant-callout .landing-container > *.is-visible {
    animation-delay: var(--landing-stagger, 0ms);
}

.social-links a:hover,
.store-badges span:hover {
    transform: translateY(-3px);
}

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

.calculator-card {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.calculator-card h3 {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 4px;
    padding-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.calculator-card label {
    display: grid;
    gap: 7px;
}

.calculator-card label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.calculator-location-grid,
.calculator-row,
.contact-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-card select:disabled,
.calculator-card input:disabled {
    cursor: not-allowed;
    opacity: .62;
}

.calculator-card .landing-primary-btn {
    border: 0;
    justify-content: center;
    min-height: 48px;
    width: 100%;
}

.calculator-card .landing-primary-btn:disabled {
    cursor: not-allowed;
    filter: grayscale(.35);
    opacity: .58;
}

.is-hidden {
    display: none !important;
}

.pricing-result {
    align-items: center;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    line-height: 1.5;
    min-height: 58px;
    padding: 16px;
    text-align: center;
}

.pricing-result strong {
    color: #059669;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 24px;
    line-height: 1;
}

.pricing-result small {
    color: var(--soft-muted);
    font-size: 12px;
    font-weight: 800;
}

.pricing-result.loading {
    color: var(--muted);
}

.pricing-result.success {
    background: rgba(5, 150, 105, .1);
    border-color: rgba(5, 150, 105, .3);
}

.pricing-result.error {
    background: rgba(239, 68, 68, .1);
    border-color: rgba(239, 68, 68, .32);
    color: #ef4444;
}

.pricing-breakdown {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

.pricing-breakdown span {
    align-items: center;
    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: space-between;
    min-height: 36px;
    padding: 8px 10px;
}

.pricing-breakdown b {
    color: var(--ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pricing-rules-panel {
    align-content: start;
    display: grid;
    gap: 18px;
}

.pricing-motion-card {
    background:
        linear-gradient(135deg, rgba(255, 193, 7, .12), transparent 34%),
        linear-gradient(160deg, rgba(16, 185, 129, .1), transparent 58%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .16);
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

.pricing-motion-card::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    content: "";
    height: 100%;
    left: -60%;
    opacity: .7;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    width: 42%;
    z-index: 1;
    animation: pricing-card-sheen 5.8s ease-in-out infinite;
}

.pricing-motion-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 42px 42px;
    inset: 0;
    opacity: .45;
    position: absolute;
}

.pricing-motion-svg {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.pricing-motion-path {
    fill: none;
    stroke-linecap: round;
    stroke-width: 7;
}

.pricing-motion-path-base {
    stroke: rgba(255, 255, 255, .16);
}

.pricing-motion-path-active {
    stroke: var(--brand);
    stroke-dasharray: 42 26;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 10px 18px rgba(255, 193, 7, .24));
    animation: pricing-route-flow 2.2s linear infinite;
}

.pricing-pin {
    align-items: center;
    background: var(--surface);
    border: 1px solid rgba(255, 193, 7, .38);
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
    color: var(--ink);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    min-height: 40px;
    padding: 8px 13px;
    position: absolute;
    z-index: 4;
}

.pricing-pin i {
    align-items: center;
    background: var(--brand);
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    font-size: 17px;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.pricing-pin-from {
    bottom: 42px;
    left: 28px;
    animation: pricing-pin-pulse 3.4s ease-in-out infinite;
}

.pricing-pin-to {
    right: 30px;
    top: 52px;
    animation: pricing-pin-pulse 3.4s ease-in-out 1.1s infinite;
}

.pricing-moving-unit {
    align-items: center;
    background: var(--brand);
    border: 3px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(255, 193, 7, .26);
    color: #0f172a;
    display: inline-flex;
    font-size: 22px;
    height: 54px;
    justify-content: center;
    left: 0;
    offset-path: path("M42 188 C112 52 220 46 288 112 C356 178 432 202 520 72");
    offset-rotate: auto;
    position: absolute;
    top: 0;
    width: 54px;
    z-index: 5;
    animation: pricing-unit-drive 5.8s cubic-bezier(.42, 0, .16, 1) infinite;
}

.pricing-motion-chip {
    align-items: center;
    backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, .58);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 9px;
    min-height: 42px;
    padding: 10px 13px;
    position: absolute;
    z-index: 4;
}

.pricing-motion-chip i {
    color: var(--brand);
    font-size: 19px;
}

.pricing-motion-chip-top {
    left: 28px;
    top: 24px;
}

.pricing-motion-chip-bottom {
    bottom: 26px;
    right: 28px;
}

.pricing-rules {
    color: var(--muted);
    display: grid;
    font-size: 14px;
    font-weight: 700;
    gap: 14px;
    line-height: 1.7;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-rules-note {
    align-items: center;
    background: rgba(255, 193, 7, .12);
    border: 1px solid rgba(255, 193, 7, .3);
    border-radius: 14px;
    color: var(--ink);
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
    line-height: 1.5;
    padding: 14px 16px;
}

.pricing-rules-note i {
    color: var(--brand);
    font-size: 22px;
}

@keyframes pricing-route-flow {
    to {
        stroke-dashoffset: -68;
    }
}

@keyframes pricing-unit-drive {
    0% {
        opacity: 0;
        offset-distance: 0%;
        transform: scale(.78);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    84% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        offset-distance: 100%;
        transform: scale(.78);
    }
}

@keyframes pricing-pin-pulse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes pricing-card-sheen {
    0%,
    45% {
        left: -60%;
    }
    100% {
        left: 125%;
    }
}

@keyframes pricing-unit-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@supports not (offset-path: path("M0 0 L1 1")) {
    .pricing-moving-unit {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: pricing-unit-float 3.2s ease-in-out infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-animation-ready .landing-animate {
        filter: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .landing-header,
    .landing-hero-visual.is-visible,
    .landing-hero-visual::before,
    .landing-hero-visual.is-visible .hero-stat-card,
    .partner-logos strong.is-visible,
    .about-image.is-visible,
    .about-image.is-visible img,
    .map-card.is-visible,
    .map-card.is-visible img,
    .about-list article.is-visible > span,
    .service-grid article.is-visible > span,
    .feature-grid article.is-visible span,
    .stats-grid article.is-visible span,
    .stats-grid article.is-visible strong,
    .testimonial-card.is-visible .quote-icon,
    .contact-card.is-visible .landing-primary-btn,
    .landing-eyebrow.is-visible::after,
    .section-heading.is-visible span::after,
    .about-copy.is-visible .section-label::after {
        animation: none;
    }

    .pricing-motion-card::before,
    .pricing-motion-path-active,
    .pricing-pin,
    .pricing-moving-unit {
        animation: none;
    }

    .pricing-moving-unit {
        opacity: 1;
        offset-distance: 52%;
    }
}

.pricing-rules li {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.pricing-rules li::before {
    background: var(--brand);
    border-radius: 999px;
    content: "";
    flex: 0 0 auto;
    height: 8px;
    margin-top: 8px;
    width: 8px;
}

.testimonial-card {
    display: grid;
    gap: 20px;
    justify-items: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 42px;
    text-align: center;
}

.quote-icon {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand);
    display: flex;
    font-size: 32px;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.testimonial-card blockquote {
    color: var(--muted);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    max-width: 640px;
}

.testimonial-rating {
    color: #d7dee9;
    display: flex;
    font-size: 20px;
    gap: 3px;
}

.testimonial-rating .active {
    color: #ff9800;
}

.testimonial-person {
    align-items: center;
    display: grid;
    gap: 6px;
    justify-items: center;
}

.testimonial-person span {
    align-items: center;
    background: var(--surface-soft);
    border: 2px solid var(--brand);
    border-radius: 999px;
    color: var(--soft-muted);
    display: flex;
    font-size: 28px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.testimonial-person span img {
    border-radius: 999px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.testimonial-person strong {
    font-size: 14px;
    font-weight: 900;
}

.testimonial-person small {
    color: var(--soft-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    gap: 7px;
}

.testimonial-dots button {
    background: var(--line);
    border: 0;
    border-radius: 999px;
    height: 10px;
    padding: 0;
    width: 10px;
}

.testimonial-dots button.active {
    background: var(--brand);
}

.map-card {
    aspect-ratio: 16 / 10;
}

.map-card strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.map-card p {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.contact-card {
    display: grid;
    gap: 16px;
    padding: 32px;
}

.contact-card textarea {
    min-height: 104px;
    resize: vertical;
}

.contact-card .landing-primary-btn {
    border-radius: 13px;
    min-height: 48px;
    text-transform: uppercase;
    width: 100%;
}

.merchant-callout {
    background: #090d16;
    color: #fff;
    padding: 68px 0;
    text-align: center;
}

.dark .merchant-callout {
    background: #4c0519;
}

.merchant-callout .landing-container {
    align-items: center;
    display: grid;
    gap: 26px;
    justify-items: center;
}

.merchant-callout h2 {
    color: #fff;
    max-width: 820px;
}

.merchant-callout button {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    min-height: 48px;
    padding: 0 30px;
}

.merchant-callout button:hover {
    background: #fff;
    color: #0f172a;
}

.landing-footer {
    background: #090d16;
    color: #fff;
    padding: 62px 0 28px;
}

.footer-grid {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    gap: 50px;
    grid-template-columns: 1.4fr .8fr .8fr;
    padding-bottom: 44px;
}

.footer-brand strong {
    color: #fff;
    display: none;
    font-size: 22px;
}

.landing-footer p,
.landing-footer a {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.7;
}

.landing-footer h3 {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.footer-grid > div {
    display: grid;
    gap: 10px;
    align-content: start;
}

.social-links,
.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 18px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.social-links a:hover {
    background: var(--brand);
    color: #0f172a;
}

.store-badges span {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    color: #fff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    gap: 7px;
    letter-spacing: 0;
    padding: 7px 11px;
    text-transform: uppercase;
}

.copyright {
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0;
    margin: 28px 0 0;
    text-align: center;
    text-transform: uppercase;
}

.toast-stack {
    bottom: 24px;
    display: grid;
    gap: 10px;
    left: 24px;
    pointer-events: none;
    position: fixed;
    z-index: 90;
}

.landing-toast {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: var(--ink);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    gap: 10px;
    max-width: min(340px, calc(100vw - 48px));
    opacity: 0;
    padding: 14px 16px;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.landing-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.landing-toast i {
    color: #10b981;
    font-size: 18px;
}

.landing-toast.error i,
.landing-toast.warning i {
    color: #f59e0b;
}

@keyframes landing-header-drop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landing-button-shine {
    from {
        left: -90%;
    }
    to {
        left: 125%;
    }
}

@keyframes landing-logo-nudge {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    40% {
        transform: translateY(-3px) rotate(-2deg);
    }
    70% {
        transform: translateY(1px) rotate(2deg);
    }
}

@keyframes landing-card-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes landing-mini-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@keyframes landing-image-sheen {
    0%,
    44% {
        left: -70%;
    }
    100% {
        left: 125%;
    }
}

@keyframes landing-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes landing-slow-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.045);
    }
}

@keyframes landing-icon-pop {
    0% {
        opacity: .2;
        transform: scale(.72);
    }
    70% {
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes landing-number-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landing-soft-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(251, 191, 36, .12);
    }
}

@keyframes landing-label-swipe {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes pulse-active {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7);
        transform: scale(.95);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: scale(.95);
    }
}

@media (max-width: 1120px) {
    .landing-container,
    .landing-header,
    .landing-contact-strip {
        padding-left: 32px;
        padding-right: 32px;
    }

    .landing-nav,
    .landing-header-actions {
        display: none;
    }

    .landing-mobile-actions {
        display: flex;
    }

    .landing-hero-grid,
    .about-grid,
    .contact-grid,
    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-visual,
    .about-image {
        max-width: 720px;
    }

    .highlight-grid,
    .service-grid,
    .feature-grid,
    .news-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-motion-card {
        min-height: 250px;
    }
}

@media (max-width: 700px) {
    .landing-container,
    .landing-header,
    .landing-contact-strip {
        padding-left: 18px;
        padding-right: 18px;
    }

    .landing-contact-strip {
        flex-wrap: wrap;
        font-size: 10px;
        gap: 12px;
        justify-content: center;
        min-height: 40px;
    }

    .landing-contact-strip a:first-child {
        display: none;
    }

    .landing-header {
        height: 74px;
    }

    .landing-brand {
        gap: 0;
        max-width: min(190px, calc(100vw - 126px));
    }

    .landing-brand > span,
    .landing-brand > span.landing-brand-logo {
        flex-basis: auto;
        height: 46px;
        max-width: 190px;
        min-width: 0;
        width: auto;
    }

    .landing-brand-logo img {
        height: 46px;
        max-height: 46px;
        max-width: 190px;
    }

    .landing-brand strong {
        display: none;
    }

    .landing-brand small {
        display: none;
    }

    .landing-mobile-actions {
        flex: 0 0 auto;
    }

    .landing-hero-grid,
    .about-grid,
    .contact-grid,
    .calculator-grid,
    .landing-hero-visual,
    .about-image,
    .contact-card,
    .calculator-card,
    .map-card {
        max-width: 100%;
        min-width: 0;
    }

    .landing-hero {
        padding: 46px 0 70px;
    }

    .tracking-form,
    .calculator-location-grid,
    .calculator-row,
    .contact-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-animation-ready .landing-reveal-left,
    .landing-animation-ready .landing-reveal-right {
        transform: translate3d(0, 28px, 0);
    }

    .pricing-breakdown {
        grid-template-columns: 1fr;
    }

    .pricing-motion-card {
        min-height: 230px;
    }

    .pricing-moving-unit {
        offset-path: path("M30 166 C72 58 148 56 206 104 C260 148 286 170 326 66");
    }

    .pricing-motion-chip {
        font-size: 11px;
        min-height: 36px;
        padding: 8px 10px;
    }

    .pricing-motion-chip-top {
        left: 16px;
        top: 16px;
    }

    .pricing-motion-chip-bottom {
        bottom: 18px;
        right: 16px;
    }

    .pricing-pin {
        font-size: 11px;
        min-height: 36px;
        padding: 7px 10px;
    }

    .pricing-pin-from {
        bottom: 36px;
        left: 16px;
    }

    .pricing-pin-to {
        right: 16px;
        top: 50px;
    }

    .tracking-form {
        display: grid;
        border-radius: 20px;
        padding: 8px;
    }

    .tracking-form button {
        min-height: 45px;
    }

    .highlight-grid,
    .service-grid,
    .feature-grid,
    .news-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .services-section,
    .feature-section,
    .news-section,
    .stats-section,
    .calculator-section,
    .testimonial-section,
    .contact-section {
        padding: 64px 0;
    }

    .testimonial-card,
    .contact-card,
    .calculator-card {
        padding: 24px;
    }

    .footer-grid {
        display: grid;
    }

}
