@font-face {
    font-family: 'Lato-Regular';
    src: url('../../fonts/lato/Lato-Regular.ttf?c6fe79dcef1ba0b89a6304b393277538') format('truetype'),
    url('../../fonts/lato/Lato-Regular.ttf?c6fe79dcef1ba0b89a6304b393277538') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: url('../../fonts/syne/static/Syne-Bold.ttf?s6fe79dcef1ba0b89a6304b393277538') format('truetype'),
    url('../../fonts/syne/static/Syne-Bold.ttf?s6fe79dcef1ba0b89a6304b393277538') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne-EB';
    src: url('../../fonts/syne/static/Syne-ExtraBold.ttf?s6fe79dcef1ba0b89a6304b393277538') format('truetype'),
    url('../../fonts/syne/static/Syne-ExtraBold.ttf?s6fe79dcef1ba0b89a6304b393277538') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --ax-ink: #0a0a0f;
    --ax-surface: #f4f3ef;
    --ax-white: #ffffff;
    --ax-accent: #2563eb;
    --ax-accent-light: #dbeafe;
    --ax-accent-vivid: #1d4ed8;
    --ax-muted: #6b7280;
    --ax-border: #e5e3de;
    --ax-card-bg: #ffffff;
    --ax-code-bg: #0f172a;
    --ax-green: #16a34a;
    --radius: 14px;
    --radius-lg: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato-Regular', sans-serif;
    background: var(--ax-surface);
    color: var(--ax-ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Syne-EB', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

h3, h4, h5, .display-font {
    font-family: 'Syne', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.04em;
}

.logo-font {
    font-family: 'Syne-EB', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    text-decoration: none !important;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(244, 243, 239, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ax-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* 3-column grid: left nav | center logo | right actions */
.navbar > .container {
    display: flex;
    align-items: center;
}

.navbar-col-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar-col-center {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.navbar-col-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ax-ink) !important;
    letter-spacing: -0.04em;
    /* no absolute positioning */
}

.navbar-brand span {
    color: var(--ax-accent);
}

.nav-link {
    color: var(--ax-ink) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem !important;
    border-radius: 8px;
    transition: background 0.15s;
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--ax-accent) !important;
}

.lang-btn {
    background: none;
    border: 1px solid var(--ax-border);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ax-ink);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.lang-btn:hover {
    border-color: var(--ax-accent);
    background: var(--ax-accent-light);
}

.lang-btn.active {
    background: var(--ax-accent);
    color: #fff;
    border-color: var(--ax-accent);
}

.btn-signin {
    color: var(--ax-ink) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem !important;
    border-radius: 8px;
}

.btn-signin:hover {
    background: rgba(0, 0, 0, 0.06);
}

.btn-primary-nav {
    background: var(--ax-ink);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem !important;
    border-radius: 8px;
    border: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary-nav:hover {
    background: var(--ax-accent);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ax-accent-light);
    color: var(--ax-accent-vivid);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-rotator {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ax-accent);
    min-height: 1.8em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.rotator-badge {
    background: var(--ax-accent);
    color: #fff;
    border-radius: 8px;
    padding: 0.2rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.35s, transform 0.35s;
}

.rotator-badge.fade-out {
    opacity: 0;
    transform: translateY(-6px);
}

.rotator-badge.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    color: var(--ax-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 2rem;
}

.btn-ax-primary {
    background: var(--ax-ink);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-ax-primary:hover {
    background: var(--ax-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.btn-ax-secondary {
    background: transparent;
    color: var(--ax-ink);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.73rem 1.6rem;
    border-radius: 10px;
    border: 1.5px solid var(--ax-border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-ax-secondary:hover {
    border-color: var(--ax-accent);
    background: var(--ax-accent-light);
    color: var(--ax-accent);
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    background: var(--ax-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--ax-border);
    position: relative;
}

.hero-mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) {
    background: #fc5753;
}

.mockup-dot:nth-child(2) {
    background: #fdbc40;
}

.mockup-dot:nth-child(3) {
    background: #33c748;
}

.mockup-widget {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #f4f3ef;
    color: #0a0a0f;
    border-radius: 3px;
    padding: 0.8rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.a11y-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--ax-border);
    font-size: 0.85rem;
}

.a11y-toggle-row:last-child {
    border-bottom: none;
}

.a11y-switch {
    width: 36px;
    height: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 2px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.a11y-switch.on {
    background: var(--ax-accent);
}

.a11y-switch.off {
    background: #d1d5db;
}

.a11y-switch-knob {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}

.a11y-switch.on .a11y-switch-knob {
    transform: translateX(16px);
}

/* ── STATS BANNER ── */
.stats-banner {
    background: var(--ax-ink);
    color: #fff;
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ── SECTIONS ── */
section {
    padding: 5rem 0;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ax-accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--ax-muted);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ── FEATURE CARDS ── */
.feature-card {
    background: var(--ax-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--ax-border);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ax-accent-light);
    color: var(--ax-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--ax-muted);
    margin-bottom: 0.85rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.82rem;
    color: var(--ax-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--ax-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkout-section {
    background: var(--ax-white);
    padding-top: 0;
}

/* ── HOW IT WORKS / INTEGRATION ── */
.integration-section {
    background: var(--ax-white);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ax-ink);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--ax-muted);
    margin: 0;
}

.code-preview {
    background: var(--ax-code-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: #e2e8f0;
    line-height: 1.7;
    overflow-x: auto;
}

.code-preview .comment {
    color: #64748b;
}

.code-preview .tag {
    color: #7dd3fc;
}

.code-preview .attr {
    color: #a5b4fc;
}

.code-preview .val {
    color: #86efac;
}

.copy-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.15s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.copy-btn.copied {
    color: #86efac;
    border-color: #86efac;
}

/* ── BENEFITS ── */
.benefits-section {
    background: var(--ax-surface);
}

.benefit-card {
    background: var(--ax-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--ax-border);
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--ax-ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.benefit-card p {
    font-size: 0.84rem;
    color: var(--ax-muted);
    margin: 0;
}

/* ── PLATFORMS ── */
.platforms-section {
    background: var(--ax-ink);
    color: #fff;
}

.platforms-section .section-title {
    color: #fff;
}

.platforms-section .section-intro {
    color: rgba(255, 255, 255, 0.55);
}

.platforms-section .section-eyebrow {
    color: #7dd3fc;
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.3rem;
}

.platform-code {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: #e2e8f0;
    line-height: 1.7;
    position: relative;
    margin-top: 2rem;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--ax-white);
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1.5px solid var(--ax-border);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--ax-surface);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: var(--ax-ink);
    border-color: var(--ax-ink);
    color: #fff;
}

.pricing-card.featured .price-label,
.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .feature-list li {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .feature-list li::before {
    color: #86efac;
}

.pricing-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-amount span {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
}

.price-label {
    font-size: 0.82rem;
    color: var(--ax-muted);
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--ax-muted);
    margin-bottom: 1.5rem;
}

.badge-best {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--ax-accent);
    color: #fff;
    border-radius: 100px;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── FAQ ── */
.faq-section {
    background: var(--ax-surface);
}

.accordion-item {
    border: 1px solid var(--ax-border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--ax-white) !important;
    color: var(--ax-ink) !important;
    box-shadow: none !important;
    border-radius: var(--bs-accordion-inner-border-radius) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--ax-accent) !important;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--ax-muted);
    background: var(--ax-white);
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--ax-ink);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.cta-final .offer-line {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.btn-ax-primary-light {
    background: #fff;
    color: var(--ax-ink);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-ax-primary-light:hover {
    background: var(--ax-accent-light);
    transform: translateY(-2px);
    color: var(--ax-accent);
}

/* ── FOOTER ── */
footer {
    background: #06060a;
    color: rgba(255, 255, 255, 0.45);
    padding: 2rem 0;
    font-size: 0.85rem;
}

footer a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── MODALS / AUTH ── */
.modal-content {
    border-radius: var(--radius-lg);
    border: 1px solid var(--ax-border);
}

.modal-header {
    border-bottom: 1px solid var(--ax-border);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--ax-border);
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ax-accent);
    box-shadow: none !important;
    outline: none !important;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

/* ── CHECKOUT ── */
.checkout-sidebar {
    background: var(--ax-surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--ax-border);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--ax-border);
    font-size: 0.88rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--ax-ink);
}

.stripe-btn {
    background: #533afd;;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    cursor: pointer;
    transition: filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stripe-btn-disabled {
    background: #dcdcdc;
    color: #848484;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    cursor: not-allowed !important;
    transition: filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paypal-btn {
    background: #ffc439;
    color: #003087;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    cursor: pointer;
    transition: filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paypal-btn-disabled {
    background: #ffe3a2;
    color: #003087;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    cursor: not-allowed !important;
    transition: filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paypal-btn:hover {
    filter: brightness(0.93);
}

.duration-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.duration-pill {
    background: var(--ax-surface);
    border: 1.5px solid var(--ax-border);
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.duration-pill:hover {
    border-color: var(--ax-accent);
}

.duration-pill.selected {
    border-color: var(--ax-accent);
    background: var(--ax-accent-light);
    color: var(--ax-accent);
}

.plan-select-card {
    border: 2px solid var(--ax-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    margin-bottom: 0.75rem;
}

.plan-select-card:hover {
    border-color: var(--ax-accent);
}

.plan-select-card.selected {
    border-color: var(--ax-accent);
    background: var(--ax-accent-light);
}

.plan-select-card h6 {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.plan-select-card small {
    color: var(--ax-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #e6e4df;
    border-left: none !important;
}

.required {
    color: #f21919;
    font-weight: 800;
    margin: 0 3px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.not-allowed {
    cursor: not-allowed !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .navbar-col-left,
    .navbar-col-right {
        display: none !important;
    }

    .navbar-col-center {
        flex: 1;
        justify-content: flex-start;
    }
}

@media (max-width: 568px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .stat-item::after {
        display: none;
    }

    .mockup-widget {
        right: 10px;
    }

    footer {
        padding: 2rem 0 90px !important;
    }

    .md-d-none {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
        flex-basis: auto;
    }
}
