/* ============================================================
   AXION Landing v6 — Product sections, devices, hero
   Performance: content-visibility, minimal animations, no heavy libs
   ============================================================ */

/* ---- Shared tokens (extend existing :root) ---- */
.ax-landing {
    --ax-radius: 16px;
    --ax-radius-lg: 24px;
    --ax-glass: rgba(255, 255, 255, 0.72);
    --ax-glass-border: rgba(54, 4, 55, 0.08);
}

html[data-theme="dark"] .ax-landing {
    --ax-glass: rgba(20, 20, 31, 0.82);
    --ax-glass-border: rgba(148, 163, 184, 0.14);
}

/* ---- Eyebrow & buttons ---- */
.ax-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-accent-soft);
    border: 1px solid rgba(0, 212, 255, 0.18);
    margin-bottom: 20px;
}

.ax-eyebrow--hero { margin-bottom: 24px; }
.ax-eyebrow--muted { opacity: 0.85; }

.ax-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ax-btn--primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.ax-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.ax-btn--ghost {
    background: var(--ax-glass);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
}

.ax-btn--ghost:hover {
    border-color: var(--brand-accent);
    color: var(--brand-primary);
}

.ax-btn--wide { width: 100%; }

/* ---- Hero ---- */
.ax-hero {
    position: relative;
    padding: clamp(120px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
    overflow: hidden;
}

.ax-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ax-hero__grid-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 212, 255, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(54, 4, 55, 0.14), transparent 50%),
        linear-gradient(165deg, #fdfbff 0%, #f5f0ff 42%, #edf8ff 100%);
}

html[data-theme="dark"] .ax-hero__grid-glow {
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(34, 211, 238, 0.1), transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(168, 85, 247, 0.12), transparent 50%),
        linear-gradient(165deg, #0a0812 0%, #12102a 42%, #0a1522 100%);
}

.ax-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.ax-hero__orb--1 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 5%;
    background: rgba(0, 212, 255, 0.25);
}

.ax-hero__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 15%;
    left: 8%;
    background: rgba(54, 4, 55, 0.2);
}

.ax-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.ax-hero__content h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-theme="dark"] .ax-hero__content h1 {
    background: linear-gradient(135deg, #eef2ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ax-hero__content p {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.ax-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.ax-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.ax-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ax-hero__trust i { color: var(--brand-accent); }

/* Hero preview window */
.ax-hero__preview {
    position: relative;
}

.ax-hero__preview-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: var(--ax-radius-lg);
}

.ax-hero__preview-window {
    position: relative;
    border-radius: var(--ax-radius-lg);
    border: 1px solid var(--ax-glass-border);
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ax-hero__preview-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.ax-hero__preview-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.ax-hero__preview-bar span:nth-child(1) { background: #ff5f57; }
.ax-hero__preview-bar span:nth-child(2) { background: #febc2e; }
.ax-hero__preview-bar span:nth-child(3) { background: #28c840; }

.ax-hero__preview-bar em {
    margin-left: auto;
    font-size: 0.72rem;
    font-style: normal;
    color: var(--text-muted);
}

.ax-hero__preview-body {
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 280px;
}

.ax-hero__preview-body aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
}

.ax-hero__preview-body aside i {
    display: block;
    height: 28px;
    border-radius: 8px;
    background: var(--border-color);
}

.ax-hero__preview-main { padding: 20px; }

.ax-hero__preview-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ax-hero__preview-kpis div {
    padding: 12px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.ax-hero__preview-kpis small {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ax-hero__preview-kpis strong {
    font-size: 1.1rem;
    color: var(--brand-primary);
}

.ax-hero__preview-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--brand-accent-soft), transparent);
    border: 1px solid var(--border-color);
}

.ax-hero__preview-chart span {
    flex: 1;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary));
    opacity: 0.85;
    animation: ax-bar-pulse 3s ease-in-out infinite;
}

.ax-hero__preview-chart span:nth-child(even) { animation-delay: 0.4s; }

@keyframes ax-bar-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .ax-hero__preview-chart span { animation: none; }
}

/* ---- Stats ---- */
.ax-stats {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.ax-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.ax-stat strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.02em;
}

.ax-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Marquee ---- */
.ax-marquee {
    padding: 36px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.ax-marquee__head { margin-bottom: 16px; text-align: center; }

.ax-marquee__track-wrap {
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ax-marquee__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: ax-marquee 28s linear infinite;
}

.ax-marquee__item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

@keyframes ax-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ax-marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ---- Product sections ---- */
.ax-section {
    padding: clamp(64px, 8vw, 100px) 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ax-section.is-visible,
.ax-section:first-of-type {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .ax-section { opacity: 1; transform: none; transition: none; }
}

.ax-section:nth-child(even) {
    background: var(--bg-secondary);
}

.ax-section--wide {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, var(--brand-accent-soft), transparent 60%),
        var(--bg-main) !important;
    padding: clamp(80px, 10vw, 120px) 0;
}

.ax-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.ax-section__inner--wide {
    grid-template-columns: 1fr;
    gap: 48px;
}

.ax-section--reverse .ax-section__inner {
    direction: rtl;
}

.ax-section--reverse .ax-section__inner > * {
    direction: ltr;
}

.ax-section__copy h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.ax-section__desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 560px;
}

.ax-section__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ax-section__chips li {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ax-section__chips li:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px var(--brand-accent-soft);
}

.ax-section__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.ax-section__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.ax-section__highlights i {
    color: var(--brand-accent);
    margin-top: 3px;
}

.ax-section__timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.ax-section__timeline li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 500;
}

.ax-section__timeline li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.ax-section__bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.ax-section__bento-card {
    padding: 18px 16px;
    border-radius: var(--ax-radius);
    background: var(--ax-glass);
    border: 1px solid var(--ax-glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ax-section__bento-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-accent);
}

.ax-section__bento-card strong {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.ax-section--wide .ax-section__devices {
    display: grid;
    grid-template-columns: 1.4fr 0.55fr;
    gap: 32px;
    align-items: end;
    max-width: 960px;
    margin: 0 auto;
}

.ax-section__devices {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 20px;
    align-items: end;
}

/* ---- Device frames ---- */
.ax-device { position: relative; }

.ax-device__shell { position: relative; }

/* MacBook */
.ax-device--macbook .ax-device__bezel {
    height: 14px;
    background: linear-gradient(180deg, #2a2a2e, #1a1a1e);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ax-device--macbook .ax-device__camera {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3a3a3e;
}

.ax-device--macbook .ax-device__screen {
    background: #0a0a0f;
    border: 3px solid #2a2a2e;
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.ax-device--macbook .ax-device__base {
    height: 10px;
    background: linear-gradient(180deg, #c8c8cc, #a8a8ac);
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: center;
}

.ax-device--macbook .ax-device__base span {
    width: 80px;
    height: 4px;
    background: #909094;
    border-radius: 0 0 4px 4px;
}

html[data-theme="dark"] .ax-device--macbook .ax-device__base {
    background: linear-gradient(180deg, #3a3a3e, #2a2a2e);
}

/* iPhone 17 Pro Max style */
.ax-device--iphone .ax-device__shell {
    padding: 10px;
    background: linear-gradient(145deg, #3a3a3e, #1a1a1e);
    border-radius: 44px;
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.ax-device--iphone .ax-device__dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 2;
}

.ax-device--iphone .ax-device__screen {
    border-radius: 36px;
    overflow: hidden;
    background: #0a0a0f;
    aspect-ratio: 430 / 932;
}

.ax-device--iphone .ax-device__home-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(255,255,255,0.35);
    border-radius: 4px;
    z-index: 2;
}

/* ---- Media slider ---- */
.ax-media-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.ax-media-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.ax-media-slider__slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.ax-media-slider__slide img,
.ax-media-slider__slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ax-media-slider__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.ax-media-slider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ax-media-slider__dot.is-active {
    background: var(--brand-accent);
    transform: scale(1.25);
}

/* Placeholder screens */
.ax-media-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1024 0%, #0d1520 100%);
}

.ax-media-placeholder__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.2), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(54, 4, 55, 0.35), transparent 50%);
}

.ax-media-placeholder__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    color: #eef2ff;
}

.ax-media-placeholder__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 10px;
}

.ax-media-placeholder__content strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.ax-media-placeholder__content em {
    display: block;
    font-size: 0.68rem;
    font-style: normal;
    opacity: 0.65;
    margin-bottom: 16px;
}

.ax-media-placeholder__ui span {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 6px;
}

.ax-media-placeholder__bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-top: 12px;
    justify-content: center;
}

.ax-media-placeholder__bars i {
    display: block;
    width: 8px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary));
    opacity: 0.8;
}

.ax-media-placeholder__mobile-ui .ax-media-placeholder__metric {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-accent);
    margin-bottom: 12px;
}

.ax-media-placeholder__mobile-ui span:not(.ax-media-placeholder__metric) {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 8px;
}

/* ---- Contact & footer (ax aliases) ---- */
.ax-contact {
    padding: clamp(64px, 8vw, 100px) 0;
    background: var(--bg-secondary);
}

.ax-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ax-contact__copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.ax-contact__copy p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.ax-contact__methods {
    display: grid;
    gap: 12px;
}

.ax-contact__methods a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.92rem;
}

.ax-contact__methods i { color: var(--brand-accent); }

.ax-form {
    padding: 32px;
    border-radius: var(--ax-radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.ax-form__row {
    margin-bottom: 18px;
}

.ax-form__row label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.ax-footer {
    padding: 64px 0 32px;
    background: var(--bg-dark);
    color: var(--text-light);
}

.ax-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.ax-footer__brand p {
    font-size: 0.88rem;
    opacity: 0.75;
    margin-top: 12px;
    max-width: 280px;
}

.ax-footer__col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    opacity: 0.9;
}

.ax-footer__col a {
    display: block;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.ax-footer__col a:hover { color: var(--brand-accent); }

.ax-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.82rem;
    opacity: 0.7;
}

.ax-modal-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ax-modal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.ax-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

/* Nav sections dropdown */
.ax-nav__dropdown-panel--sections {
    min-width: 280px;
    max-height: 360px;
    overflow-y: auto;
}

.ax-nav__dropdown-panel--sections a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
}

.ax-nav__dropdown-panel--sections strong {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-primary);
}

.ax-nav__dropdown-panel--sections em {
    font-size: 0.82rem;
    font-style: normal;
    color: var(--text-muted);
}

.ax-nav-drawer__sections {
    display: grid;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
}

.ax-nav-drawer__sections > span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 4px 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .ax-hero__inner,
    .ax-section__inner,
    .ax-section--wide .ax-section__devices {
        grid-template-columns: 1fr;
    }

    .ax-section--reverse .ax-section__inner { direction: ltr; }

    .ax-section__devices {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .ax-device--iphone {
        max-width: 220px;
        margin: 0 auto;
    }

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

    .ax-contact__grid,
    .ax-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ax-stats__grid { grid-template-columns: 1fr 1fr; }
    .ax-hero__trust { flex-direction: column; gap: 10px; }
}
