:root {
    --bg: #050b16;
    --bg-soft: #0a1324;
    --bg-elevated: rgba(9, 18, 35, 0.82);
    --bg-card: rgba(10, 19, 36, 0.9);
    --bg-card-2: rgba(13, 25, 45, 0.92);
    --surface: rgba(255, 255, 255, 0.04);

    --text: #e8f0ff;
    --text-soft: #a9b8d0;
    --text-muted: #7f92b2;
    --text-dark: #081120;

    --primary: #56a2ff;
    --primary-2: #3b82f6;
    --primary-3: #8fd0ff;
    --accent: #6ee7ff;
    --success: #61f5c0;

    --border: rgba(134, 165, 211, 0.18);
    --border-strong: rgba(134, 165, 211, 0.3);

    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 0 1px rgba(86, 162, 255, 0.08), 0 20px 50px rgba(29, 78, 216, 0.22);

    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;

    --container: 1280px;
    --spacing-1: 8px;
    --spacing-2: 12px;
    --spacing-3: 16px;
    --spacing-4: 20px;
    --spacing-5: 24px;
    --spacing-6: 32px;
    --spacing-7: 40px;
    --spacing-8: 56px;

    --transition: 220ms ease;
    --transition-slow: 320ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(110, 231, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #07101e 0%, #040913 100%);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

img,
iframe {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 99999;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-dark);
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(100% - 32px, 1522px);
    margin-inline: auto;
}

/* HEADER */
.site-header {
    position: relative;
    padding: 20px 0 0;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 560px;
    background:
        linear-gradient(135deg, rgba(86, 162, 255, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(8, 17, 32, 0.85), rgba(8, 17, 32, 0));
    pointer-events: none;
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 22px;
}

.topbar__item {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
    font-size: 13px;
    backdrop-filter: blur(10px);
}

/*.topbar__views {*/
/*    font-weight: 600;*/
/*    color: #6ee7ff;*/
/*    border: 1px solid rgba(110, 231, 255, 0.25);*/
/*    background: rgba(110, 231, 255, 0.08);*/
/*}*/

/*.topbar__views span {*/
/*    font-weight: 700;*/
/*    color: #ffffff;*/
/*}*/

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 28px;
    align-items: stretch;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(14, 25, 48, 0.88), rgba(8, 16, 31, 0.92)),
        rgba(8, 16, 31, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(143, 208, 255, 0.08), transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(86, 162, 255, 0.18), transparent 22%);
    pointer-events: none;
}

.hero__content,
.hero__stats {
    position: relative;
    z-index: 1;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(143, 208, 255, 0.22);
    border-radius: 999px;
    background: rgba(86, 162, 255, 0.08);
    color: var(--primary-3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 8px rgba(97, 245, 192, 0.08);
}

.hero__title {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero__title-accent {
    display: block;
    margin-top: 8px;
    color: var(--primary-3);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero__desc {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--text-soft);
    font-size: clamp(15px, 1.8vw, 17px);
    letter-spacing: 0.02em;
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero__stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-glow);
}

.stat-card__label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card__value {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--text);
}

.stat-card__meta {
    color: var(--text-soft);
    font-size: 14px;
}

/* MAIN */
.site-main {
    padding: 34px 0 52px;
}

.section-block+.section-block,
.tab-panel {
    margin-top: 24px;
}

.section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-heading--compact {
    margin-bottom: 22px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--primary-3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    max-width: 680px;
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
}

/* TABS */
.tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tab-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: center;
    min-height: 92px;
    padding: 18px 18px 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(10, 19, 36, 0.96), rgba(10, 19, 36, 0.8));
    color: var(--text-soft);
    text-align: left;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(86, 162, 255, 0.08), transparent 45%);
    opacity: 0;
    transition: opacity var(--transition);
}

.tab-btn:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.tab-btn:hover::before,
.tab-btn.active::before {
    opacity: 1;
}

.tab-btn.active {
    border-color: rgba(86, 162, 255, 0.48);
    background: linear-gradient(180deg, rgba(15, 33, 63, 0.98), rgba(10, 19, 36, 0.94));
    color: var(--text);
    box-shadow: 0 0 0 1px rgba(86, 162, 255, 0.1), 0 20px 50px rgba(29, 78, 216, 0.28);
}

.tab-btn__label,
.tab-btn__desc {
    position: relative;
    z-index: 1;
}

.tab-btn__label {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

.tab-btn__desc {
    color: var(--text-muted);
    font-size: 13px;
}

.tab-btn.active .tab-btn__desc {
    color: var(--text-soft);
}

/* PANELS */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: panelFadeIn 0.35s ease;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card-grid--pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CARD */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
        linear-gradient(180deg, rgba(10, 19, 36, 0.94), rgba(8, 16, 31, 0.98));
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    overflow: hidden;
    animation: cardReveal 0.45s ease both;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 208, 255, 0.45), transparent);
    opacity: 0.7;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(86, 162, 255, 0.28);
    box-shadow: var(--shadow-md);
}

.card__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid rgba(86, 162, 255, 0.22);
    border-radius: 999px;
    background: rgba(86, 162, 255, 0.08);
    color: var(--primary-3);
    font-size: 12px;
    font-weight: 700;
}

.card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.card__subtitle {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.card__description {
    margin: 0 0 16px;
    color: var(--text-soft);
    font-size: 14px;
}

.card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
}

.card__actions {
    display: flex;
    gap: 10px;
    margin-bottom: 2px;
}

.card__footer {
    margin-top: auto;
}

.card--guide .card__badge {
    color: #c7e0ff;
}

.card--tool .card__badge {
    color: #bff9ff;
}

.card--pricing .card__badge {
    color: #d7dfff;
}

.card--empty {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
}

.empty-state__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 20px;
    background: rgba(86, 162, 255, 0.12);
    color: var(--primary-3);
    font-size: 28px;
    font-weight: 800;
}

.empty-state__title {
    margin: 0 0 8px;
    font-size: 20px;
}

.empty-state__text {
    margin: 0;
    max-width: 340px;
    color: var(--text-soft);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.btn:focus-visible,
.tab-btn:focus-visible,
.modal__close:focus-visible,
.modal__action:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: white;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.28);
}

.btn--primary:hover {
    opacity: 0.96;
    box-shadow: 0 18px 38px rgba(59, 130, 246, 0.34);
}

.btn--ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

.btn--ghost:hover {
    border-color: var(--border-strong);
    color: var(--text);
}

/* VIDEO */
.video-frame {
    position: relative;
    width: 100%;
    border: 1px solid rgba(143, 208, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: #020712;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    aspect-ratio: 16 / 9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

/* TABLE */
.table-wrap {
    width: 100%;
    overflow: hidden;
    /* ❌ bỏ scroll ngang */
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

/* TABLE */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table thead th {
    padding: 12px 14px;
    background: rgba(86, 162, 255, 0.08);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    text-align: left;

    white-space: normal;
    word-break: break-word;
}

.pricing-table tbody td {
    padding: 12px 14px;
    vertical-align: top;
    color: var(--text-soft);
    font-size: 14px;
    border-bottom: 1px solid rgba(134, 165, 211, 0.1);

    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
}

.pricing-table {
    min-width: unset;
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table th.is-price,
.pricing-table td.is-price {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table td:first-child {
    color: var(--text);
    font-weight: 500;
}

/* NOTE */
.note-box {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(110, 231, 255, 0.14);
    border-radius: 16px;
    background: rgba(110, 231, 255, 0.05);
}

.note-box__title {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.note-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.note-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.note-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 0 0 6px rgba(110, 231, 255, 0.08);
}

/* FOOTER */
.site-footer {
    padding: 40px 0 28px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(86, 162, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 0%, rgba(110, 231, 255, 0.08), transparent 40%);
    pointer-events: none;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    padding: 28px;

    border-radius: 24px;
    border: 1px solid var(--border);

    background:
        linear-gradient(180deg, rgba(10, 19, 36, 0.92), rgba(6, 12, 22, 0.96));

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* CARD */
.footer-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TITLE */
.footer-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

/* TEXT */
.footer-text {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: var(--text-soft);
    font-size: 14px;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);

    border-top: 1px solid rgba(134, 165, 211, 0.12);
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition-slow),
        visibility var(--transition-slow);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 20, 0.78);
    backdrop-filter: blur(7px);
}

.modal__dialog {
    position: relative;
    width: min(100%, 540px);
    max-height: min(88vh, 780px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(134, 165, 211, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(13, 25, 45, 0.98), rgba(8, 16, 31, 0.98)),
        rgba(8, 16, 31, 0.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(18px) scale(0.98);
    transition: transform var(--transition-slow);
}

.modal__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.modal.is-open .modal__dialog {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 20px;
    transition: background var(--transition), transform var(--transition);
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

.modal__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: white;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(59, 130, 246, 0.28);
    flex-shrink: 0;
}

.modal__eyebrow {
    margin: 0;
    color: var(--primary-3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    line-height: 1;
}

.modal__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.15;
}

.modal__content {
    color: var(--text-soft);
}

.modal__content p {
    margin: 0 0 12px;
}

.modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.modal__list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.modal__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.modal__action {
    width: 100%;
    margin-top: 22px;
    min-height: 48px;
    padding: 12px 16px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: white;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.28);
    transition: transform var(--transition), opacity var(--transition);
}

.modal__action:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

/* ANIMATIONS */
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: cardReveal 0.45s ease both;
}

/* =========================
RESPONSIVE FIXED
========================= */

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .card-grid--pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .container {
        width: calc(100% - 16px);
    }

    .site-main {
        padding-top: 24px;
    }

    .hero {
        padding: 18px;
        border-radius: 20px;
    }

    .hero__title {
        font-size: 22px;
        line-height: 1.2;
    }

    .hero__desc {
        font-size: 14px;
    }

    .tabs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card-grid,
    .card-grid--pricing {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 16px;
        border-radius: 16px;
    }

    .card__title {
        font-size: 16px;
    }

    .card__subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .tab-btn {
        min-height: 72px;
        padding: 14px;
    }

    .table-wrap {
        overflow-x: auto;
    }

    .pricing-table {
        min-width: 460px / 600px;
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 13px;
        padding: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero {
        padding: 16px;
    }

    .brand-badge,
    .pill {
        font-size: 11px;
    }

    .card {
        border-radius: 14px;
    }

    .modal {
        padding: 12px;
    }

    .modal__dialog {
        padding: 16px;
        border-radius: 16px;
    }

    .modal__title {
        font-size: 20px;
    }

    .pricing-table {
        min-width: 460px / 600px;
    }

    .footer-grid {
        padding: 16px;
    }
}

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}