﻿: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-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,
.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 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 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 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 img,
.about-image img,
.map-card img,
.map-card iframe {
    border: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

.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: 2;
}

.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;
}

.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-row,
.contact-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-card output {
    align-items: center;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #059669;
    display: flex;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 14px;
    font-weight: 900;
    min-height: 45px;
    justify-content: center;
    padding: 13px 15px;
}

.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 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 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));
    }
}

@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-row,
    .contact-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .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;
    }

}
