/* ─── Reset & Base ─── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Landing Theme Variables ─── */
:root {
    --lp-bg: #151515;
    --lp-text: #f7f7f5;
    --lp-text-2: #b8b8b4;
    --lp-text-3: #9e9e9a;
    --lp-text-4: #858581;
    --lp-muted: #9e9e9a;
    --lp-text-muted: #9e9e9a;
    --lp-surface: #1d1d1c;
    --lp-surface-2: #252524;
    --lp-border: #353534;
    --lp-border-2: #484846;
    --lp-border-3: #3e3e3d;
    --lp-border-4: #2b2b2a;
    --lp-nav-bg: rgba(21, 21, 21, 0.94);
    --lp-nav-border: #30302f;
    --lp-overlay: rgba(0, 0, 0, 0.6);
    --lp-spinner-track: rgba(255, 255, 255, 0.28);
    --lp-spinner-top: #f55c1e;
    --lp-btn-ghost-bg: transparent;
    --lp-btn-ghost-text: #ccc;
    --lp-input-color: #fff;
    --lp-input-plh: #999;
    --lp-stat-label-clr: #808080;
    --lp-stat-sep: #1e1e1e;
    --lp-tag-bg: #252524;
    --lp-tag-clr: #b8b8b4;
    --lp-footer-link: #b8b8b4;
    --lp-footer-legal: #858581;
    --lp-demo-card: #252524;
    --lp-card-popular-border: #f55c1e;
    --lp-cta-border: #383837;
    --lp-svc-btn-border: #484846;
    --lp-svc-btn-clr: #9e9e9a;
    --lp-icon-64-border: #50504e;
    --lp-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    --lp-report-bg: #f3f4f2;
    --lp-report-text: #1b1c1b;
    --lp-report-muted: #555b58;
    --lp-report-border: #d7dbd7;
    --lp-report-track: #dfe3df;
    --lp-chat-bg: #151515;
    --lp-chat-surface: #1d1d1c;
    --lp-chat-surface-2: #252524;
    --lp-chat-border: #353534;
    --lp-chat-text: #f7f7f5;
    --lp-chat-muted: #b8b8b4;
    --lp-chat-user: #285071;
    --lp-chat-user-text: #f7f7f5;
}
[data-theme="light"] {
    --lp-bg: #f8f8fa;
    --lp-text: #1a1a2e;
    --lp-text-2: #63636b;
    --lp-text-3: #71717a;
    --lp-text-4: #71717a;
    --lp-muted: #71717a;
    --lp-text-muted: #71717a;
    --lp-surface: #fff;
    --lp-surface-2: #f4f4f5;
    --lp-border: #e4e4e7;
    --lp-border-2: #d4d4d8;
    --lp-border-3: #d4d4d8;
    --lp-border-4: #e4e4e7;
    --lp-nav-bg: rgba(255, 255, 255, 0.93);
    --lp-nav-border: #e4e4e7;
    --lp-overlay: rgba(0, 0, 0, 0.4);
    --lp-spinner-track: rgba(0, 0, 0, 0.15);
    --lp-spinner-top: #f55c1e;
    --lp-btn-ghost-bg: transparent;
    --lp-btn-ghost-text: #52525b;
    --lp-input-color: #1a1a2e;
    --lp-input-plh: #6b6b76;
    --lp-stat-label-clr: #63636b;
    --lp-stat-sep: #d4d4d8;
    --lp-tag-bg: #f4f4f5;
    --lp-tag-clr: #71717a;
    --lp-footer-link: #71717a;
    --lp-footer-legal: #63636b;
    --lp-demo-card: #f4f4f5;
    --lp-card-popular-border: #f55c1e;
    --lp-cta-border: #e4e4e7;
    --lp-svc-btn-border: #d4d4d8;
    --lp-svc-btn-clr: #71717a;
    --lp-icon-64-border: #d4d4d8;
    --lp-shadow: 0 18px 50px rgba(24, 24, 27, 0.12);
    --lp-report-bg: #ffffff;
    --lp-report-text: #1a1a2e;
    --lp-report-muted: #555863;
    --lp-report-border: #e1e3e1;
    --lp-report-track: #eceeec;
    --lp-chat-bg: #f8f8fa;
    --lp-chat-surface: #ffffff;
    --lp-chat-surface-2: #f4f4f5;
    --lp-chat-border: #e4e4e7;
    --lp-chat-text: #1a1a2e;
    --lp-chat-muted: #52525b;
    --lp-chat-user: #dbeafe;
    --lp-chat-user-text: #1e3a5f;
}
[data-theme="dark"] {
    --lp-report-bg: #242725;
    --lp-report-text: #f2f4f0;
    --lp-report-muted: #c1c7c1;
    --lp-report-border: #48504a;
    --lp-report-track: #3a413c;
}
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--lp-nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-nav-border);
}
.mobile-nav-toggle {
    display: none;
    border: 1px solid var(--lp-border-2);
    border-radius: 8px;
    background: transparent;
    color: var(--lp-text-2);
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.work-video-card {
    overflow: hidden;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
}
.work-video-card__play {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}
.work-video-card__play img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-video-card__image {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
}
.work-video-card__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-video-card__image-empty {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--lp-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.work-video-card__play:focus-visible,
.work-video-modal__close:focus-visible {
    outline: 3px solid #f55c1e;
    outline-offset: 3px;
}
.work-video-card__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(245, 92, 30, 0.94);
    color: #fff;
    font-size: 18px;
}
.work-video-card__body {
    padding: 13px;
}
.work-video-card__type {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--lp-text);
    color: var(--lp-bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.work-video-card__body h3 {
    margin: 0 0 6px;
    font-size: 15px;
}
.work-video-card__body p {
    display: -webkit-box;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.work-video-card__client,
.work-video-modal__client {
    margin: 0 0 6px;
    color: #f55c1e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.work-video-card__metric {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: var(--lp-muted);
    font-size: 11px;
}
.work-video-card__metric span {
    color: var(--lp-border-2);
}
.work-video-card__date {
    margin-top: 8px;
    color: var(--lp-muted);
    font-size: 11px;
}
.work-video-empty {
    grid-column: 1/-1;
    padding: 32px;
    border: 1px dashed var(--lp-border);
    color: var(--lp-text-3);
    text-align: center;
}
.work-video-modal {
    position: fixed;
    inset: 0;
    width: min(920px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--lp-text);
}
.work-video-modal::backdrop {
    background: rgba(0, 0, 0, 0.72);
}
.work-video-modal__backdrop {
    position: fixed;
    inset: 0;
}
.work-video-modal__content {
    position: relative;
    display: flex;
    max-height: calc(100vh - 32px);
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    background: var(--lp-surface);
}
.work-video-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.work-video-modal__title {
    margin: 0;
    font-size: 20px;
}
.work-video-modal__close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border: 1px solid var(--lp-border);
    border-radius: 6px;
    background: transparent;
    color: var(--lp-text);
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}
.work-video-modal__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: #000;
}
.work-video-modal__player,
.work-video-modal__image {
    display: block;
    width: 100%;
    max-height: min(70vh, 510px);
    background: #000;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16/9;
}
.work-video-modal__player[hidden],
.work-video-modal__image[hidden] {
    display: none;
}
.work-video-modal__image {
    height: auto;
}
.work-video-modal__summary {
    max-height: 24vh;
    margin: 14px 0 0;
    overflow: auto;
    line-height: 1.6;
    white-space: pre-wrap;
}

@media (max-width: 640px) {
    .work-video-modal {
        width: calc(100vw - 20px);
    }
    .work-video-modal__content {
        max-height: calc(100vh - 20px);
        padding: 14px;
    }
    .work-video-modal__title {
        font-size: 17px;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: "Manrope", sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
}
a {
    color: inherit;
    text-decoration: none;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--lp-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--lp-border-2);
    border-radius: 3px;
}
::placeholder {
    color: var(--lp-text-4);
}
input,
textarea,
select {
    font-family: "Manrope", sans-serif;
    outline: none;
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}
@keyframes scrollHint {
    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.85;
    }
    50% {
        transform: translate(-50%, 6px);
        opacity: 0.4;
    }
}
.scroll-hint {
    animation: scrollHint 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .scroll-hint {
        animation: none;
    }
}

/* ─── Navigation ─── */
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    color: var(--lp-text-2);
    font-weight: 400;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--lp-text);
}
.nav-link.active {
    color: #f55c1e;
    font-weight: 600;
    border-bottom-color: #f55c1e;
}
.nav-btn {
    font-size: 13px;
    color: var(--lp-text-4);
    font-weight: 500;
}
/* CTA lặp trong menu mobile — chỉ hiện khi menu bung ở <=900px (xem media query) */
.nav-cta-mobile {
    display: none;
}

/* ─── Buttons ─── */
.btn-primary {
    background: #f55c1e;
    border: none;
    border-radius: 9px;
    padding: 13px 26px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    transition:
        background 0.2s,
        transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary:hover {
    background: #e04f18;
    transform: translateY(-1px);
}
.btn-primary.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}
.btn-primary.btn-lg {
    padding: 15px 32px;
    font-size: 15px;
}
.btn-primary.btn-full {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    text-align: center;
}
.btn-primary.circle {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 6px;
    font-size: 14px;
}

.btn-ghost {
    background: var(--lp-btn-ghost-bg);
    border: 1px solid var(--lp-border-2);
    border-radius: 9px;
    padding: 13px 26px;
    color: var(--lp-btn-ghost-text);
    font-size: 14px;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    transition:
        border-color 0.2s,
        color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-ghost:hover {
    border-color: var(--lp-text-2);
    color: var(--lp-text);
}
.btn-ghost.btn-full {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    text-align: center;
}
.btn-ghost.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

/* ─── Cards ─── */
.card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
}
.card-popular {
    border-color: #f55c1e;
    border-width: 2px;
    position: relative;
}
.card-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f55c1e;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1px;
    color: #fff;
}
.card-popular-label {
    font-size: 10px;
    color: #f55c1e;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 80% 20%,
        rgba(245, 92, 30, 0.05),
        transparent 60%
    );
    pointer-events: none;
}
.card-hover {
    cursor: pointer;
    transition: border-color 0.2s;
}
.card-hover:hover {
    border-color: #f55c1e;
}

/* Card padding modifiers */
.p-lg {
    padding: 36px;
}
.p-md {
    padding: 30px;
}
.p-sm {
    padding: 24px;
}
.p-xs {
    padding: 20px;
}
.p-card {
    padding: 28px;
}
.p-card-lg {
    padding: 32px;
}

/* ─── Section Tag ─── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    color: #f55c1e;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* ─── Check icon ─── */
.check {
    color: #f55c1e;
    margin-right: 6px;
}
.check-icon {
    color: #f55c1e;
    margin-top: 1px;
    flex-shrink: 0;
}
.check-purple {
    color: #a060e0;
    margin-right: 6px;
}

/* ─── Filter buttons ─── */
.filter-btn {
    background: transparent;
    border: 1px solid var(--lp-border-2);
    border-radius: 8px;
    padding: 8px 18px;
    color: var(--lp-text-2);
    font-size: 13px;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
    border-color: #f55c1e;
    color: #f55c1e;
}

/* ─── Score ring ─── */
.score-ring {
    position: relative;
    width: 72px;
    height: 72px;
}
.score-ring svg {
    transform: rotate(-90deg);
}
.score-ring .val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}

/* ─── Section wrappers ─── */
.section {
    background: var(--lp-bg);
}
.section-dark {
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border-4);
}
.section-hero {
    position: relative;
    overflow: hidden;
    background: var(--lp-bg);
}
.landing-hero {
    min-height: 438px;
    display: flex;
    align-items: center;
    padding: 126px 0 68px;
}
.landing-hero > .container {
    width: 100%;
}
.landing-hero--home {
    min-height: min(720px, calc(100svh - 18px));
    padding: 112px 0 72px;
}
.landing-hero--compact {
    min-height: 368px;
    padding-top: 108px;
    padding-bottom: 52px;
}
.landing-hero--split:not(.landing-hero--contact) {
    min-height: 390px;
    padding-top: 112px;
    padding-bottom: 56px;
}
.landing-hero--split .landing-hero__grid {
    align-items: center;
}
.landing-hero__content {
    max-width: 680px;
}
.landing-hero__content--narrow {
    max-width: 560px;
}
.landing-hero__content--wide {
    max-width: 760px;
}
.landing-hero__side {
    min-width: 0;
}
.landing-hero--home.landing-hero--split {
    min-height: min(720px, calc(100svh - 18px));
    padding: 112px 0 72px;
}
.hero-video-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lp-border-2);
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}
.section-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.section-canvas-dim {
    opacity: 0.42;
}
.section-canvas-bright {
    opacity: 0.5;
}
.section-pad-xl {
    padding: 130px 0 80px;
}
.section-pad-lg {
    padding: 80px 0;
}
.section-pad-md {
    padding: 60px 0;
}
.section-pad-sm {
    padding: 50px 0;
}
.section-pad-hero {
    padding: 130px 0 60px;
}
.section-pad-hero-sm {
    padding: 130px 0 50px;
}
.section-pad-contact {
    padding: 100px 0 80px;
}
.section-border {
    border-top: 1px solid var(--lp-border-4);
}

/* ─── Container ─── */
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
}
.container-narrow {
    max-width: 680px;
}
.container-form {
    max-width: 460px;
}

/* ─── Text utilities ─── */
.text-center {
    text-align: center;
}
.text-white {
    color: var(--lp-text);
}
.text-orange {
    color: #f55c1e;
}
.text-purple {
    color: #a060e0;
}
.text-green {
    color: #32c864;
}
.text-muted {
    color: var(--lp-text-2);
}
.text-muted-light {
    color: var(--lp-text-3);
}
.text-muted-dark {
    color: var(--lp-text-4);
}
.text-muted-darker {
    color: var(--lp-text-4);
}
.text-muted-bg {
    color: var(--lp-text-3);
}
.text-muted-sub {
    color: var(--lp-text-2);
}
.text-muted-label {
    color: var(--lp-text-4);
}
.text-muted-card {
    color: var(--lp-text-3);
}
.text-sm {
    font-size: 13px;
}
.text-xs {
    font-size: 13px;
}
.text-xxs {
    font-size: 12px;
}
.text-10 {
    font-size: 10px;
}
.text-9 {
    font-size: 10px;
}
.text-14 {
    font-size: 14px;
}
.text-15 {
    font-size: 15px;
}
.text-16 {
    font-size: 16px;
}
.text-body {
    color: var(--lp-text-2);
    font-size: 16px;
}
.text-body-sm {
    color: var(--lp-text-2);
    font-size: 15px;
    line-height: 1.75;
}
.text-body-13 {
    font-size: 13px;
    color: var(--lp-text-3);
}
.text-body-card {
    font-size: 13px;
    color: var(--lp-text-2);
    line-height: 1.6;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.lh-16 {
    line-height: 1.6;
}
.lh-17 {
    line-height: 1.7;
}
.lh-18 {
    line-height: 1.8;
}
.lh-175 {
    line-height: 1.75;
}
.ls-n1 {
    letter-spacing: -1px;
}
.ls-n2 {
    letter-spacing: -2px;
}

/* ─── Grids ─── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.grid-2-lg {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}
.grid-2-wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 60px;
    align-items: start;
}
.grid-2-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}
.grid-2-svc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: start;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
/* Align card footers to the bottom regardless of feature-list length */
.grid-4 > .p-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.grid-4 > .p-card .feature-list {
    flex: 1 1 auto;
}
/* Service-style mockup sunk into the card background */
.grid-4 > .p-card > .flex,
.grid-4 > .p-card > .feature-list,
.grid-4 > .p-card > .pricing-divider {
    position: relative;
    z-index: 1;
}
.grid-4 > .p-card > .p-mock {
    position: absolute;
    top: 64px;
    right: 0;
    width: 150px;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
    mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
}
.grid-4 > .p-card > .p-mock svg {
    width: 100%;
    height: auto;
    display: block;
}
/* Mockups are drawn for a dark surface; on the light theme invert them so the
   near-black "screen" reads as a light screenshot instead of a black block
   (hue-rotate keeps the orange/purple accents roughly on-hue). */
[data-theme="light"] .p-mock,
[data-theme="light"] .svc-mock {
    filter: invert(1) hue-rotate(180deg);
}

/* ─── Flex ─── */
.flex {
    display: flex;
}
.flex-center {
    align-items: center;
}
.flex-center-x {
    justify-content: center;
}
.flex-between {
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-col {
    flex-direction: column;
}
.flex-1 {
    flex: 1;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.gap-6 {
    gap: 6px;
}
.gap-7 {
    gap: 7px;
}
.gap-8 {
    gap: 8px;
}
.gap-10 {
    gap: 10px;
}
.gap-12 {
    gap: 12px;
}
.gap-14 {
    gap: 14px;
}
.gap-16 {
    gap: 16px;
}
.gap-20 {
    gap: 20px;
}
.gap-24 {
    gap: 24px;
}
.gap-28 {
    gap: 28px;
}
.gap-32 {
    gap: 32px;
}
.gap-40 {
    gap: 40px;
}
.gap-60 {
    gap: 60px;
}
.gap-72 {
    gap: 72px;
}

.gap-col-40 {
    gap: 40px;
}
.gap-row-12 {
    gap: 12px;
}

/* ─── Spacing ─── */
.mb-2 {
    margin-bottom: 2px;
}
.mb-3 {
    margin-bottom: 3px;
}
.mb-4 {
    margin-bottom: 4px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-6 {
    margin-bottom: 6px;
}
.mb-7 {
    margin-bottom: 7px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-14 {
    margin-bottom: 14px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-18 {
    margin-bottom: 18px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-22 {
    margin-bottom: 22px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-28 {
    margin-bottom: 28px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mb-36 {
    margin-bottom: 36px;
}
.mb-38 {
    margin-bottom: 38px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-44 {
    margin-bottom: 44px;
}
.mb-48 {
    margin-bottom: 48px;
}
.mb-52 {
    margin-bottom: 52px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-72 {
    margin-bottom: 72px;
}

.mt-2 {
    margin-top: 2px;
}
.mt-3 {
    margin-top: 3px;
}
.mt-4 {
    margin-top: 4px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-12 {
    margin-top: 12px;
}
.mt-14 {
    margin-top: 14px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-52 {
    margin-top: 52px;
}

/* ─── Icon Containers ─── */
.icon-42 {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-38 {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.icon-36 {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.icon-34 {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.icon-34-sm {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.icon-32 {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.icon-30 {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 17px;
    color: #fff;
}
.icon-28 {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    color: #fff;
}
.icon-28-circle {
    width: 28px;
    height: 28px;
    border: 1.5px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.icon-44 {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}
.icon-50 {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.icon-64 {
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--lp-icon-64-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon background colors */
.bg-orange-10 {
    background: rgba(245, 92, 30, 0.1);
}
.bg-orange-12 {
    background: rgba(245, 92, 30, 0.12);
}
.bg-purple-12 {
    background: rgba(160, 96, 224, 0.12);
}
.bg-white-15 {
    background: rgba(255, 255, 255, 0.06);
}
.bg-dark-card {
    background: var(--lp-surface-2);
}

/* ─── Tags / Badges ─── */
.tag {
    background: var(--lp-tag-bg);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--lp-tag-clr);
}
.tag-sm {
    background: var(--lp-tag-bg);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--lp-tag-clr);
}
.tag-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(245, 92, 30, 0.15);
    border: 1px solid rgba(245, 92, 30, 0.25);
    border-radius: 5px;
    padding: 3px 9px;
    font-size: 10px;
    color: #f55c1e;
    font-weight: 700;
}
.tag-work {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lp-overlay);
    border: 1px solid var(--lp-border-2);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--lp-text-3);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ─── Hero Tag ─── */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245, 92, 30, 0.1);
    border: 1px solid rgba(245, 92, 30, 0.22);
    border-radius: 100px;
    padding: 5px 13px;
    font-size: 11px;
    color: #f55c1e;
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
}

/* ─── Stat Display ─── */
.stat-number {
    font-size: 28px;
    font-weight: 800;
}
.stat-number-lg {
    font-size: 34px;
    font-weight: 800;
    color: #f55c1e;
}
.stat-number-xl {
    font-size: 36px;
    font-weight: 800;
    color: #f55c1e;
}
.stat-number-huge {
    font-size: 42px;
    font-weight: 900;
}
.stat-label {
    font-size: 13px;
    color: var(--lp-stat-label-clr);
    margin-top: 3px;
}
.stat-label-sm {
    font-size: 13px;
    color: var(--lp-text-2);
    margin-top: 5px;
}
.stat-sep {
    width: 1px;
    height: 30px;
    background: var(--lp-stat-sep);
    flex-shrink: 0;
}
.stat-sep-sm {
    width: 1px;
    height: 28px;
    background: var(--lp-stat-sep);
}

.hero-heading {
    font-size: clamp(44px, 6.5vw, 90px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -2.5px;
    text-wrap: pretty;
}
.heading-xl {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    text-wrap: pretty;
}
.heading-lg {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    text-wrap: pretty;
}
.heading-md {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    text-wrap: pretty;
}
.heading-h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}
.heading-h2-sm {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    text-wrap: pretty;
}
.heading-h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}
.heading-h4 {
    font-size: 22px;
    font-weight: 800;
}
.heading-h5 {
    font-size: 20px;
    font-weight: 700;
}
.heading-h6 {
    font-size: 18px;
    font-weight: 700;
}
.heading-card {
    font-size: 20px;
    font-weight: 700;
}
.heading-card-sm {
    font-size: 16px;
    font-weight: 700;
}
.heading-card-xs {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* ─── Pricing ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}
.pricing-grid-lg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}
.pricing-amount {
    font-size: 34px;
    font-weight: 800;
}
.pricing-amount-lg {
    font-size: 42px;
    font-weight: 900;
}
.pricing-period {
    font-size: 13px;
    color: var(--lp-text-4);
}
.pricing-label {
    font-size: 12px;
    color: var(--lp-text-2);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.pricing-bar {
    background: var(--lp-surface-2);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pricing-divider {
    border-top: 1px solid var(--lp-border);
    padding-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-divider-lg {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--lp-border);
    margin-bottom: 28px;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}
.pricing-feature {
    display: flex;
    align-items: start;
    gap: 10px;
}

/* ─── Feature list ─── */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.feature-item {
    font-size: 14px;
    color: var(--lp-text-3);
}
.feature-item-purple {
    font-size: 14px;
    color: var(--lp-text-3);
}
.feature-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Service card row ─── */
.svc-card {
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: start;
}
.svc-card > * {
    min-width: 0;
}
.svc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.svc-title {
    font-size: 18px;
    font-weight: 700;
}
.svc-sub {
    font-size: 12px;
    color: var(--lp-text-2);
    margin-top: 2px;
}
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--lp-surface), var(--lp-surface-2));
    border: 1px solid var(--lp-cta-border);
    border-radius: 20px;
    padding: 72px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner-sm {
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-glow-home {
    background: radial-gradient(
        ellipse at 50% 130%,
        rgba(245, 92, 30, 0.1),
        transparent 60%
    );
}
.cta-glow-about {
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(245, 92, 30, 0.08),
        transparent 60%
    );
}
.cta-heading {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}
.cta-heading-sm {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-desc {
    color: var(--lp-text-2);
    font-size: 16px;
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-desc-sm {
    color: var(--lp-text-2);
    font-size: 14px;
    margin-bottom: 28px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── How we engage ─── */
.engage-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
}

/* ─── Demo panel ─── */
.demo-panel {
    padding: 24px;
}
.demo-score-card {
    background: var(--lp-demo-card);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.demo-score-card-white {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}
.demo-input-wrap {
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border-3);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.demo-input {
    background: transparent;
    border: none;
    color: var(--lp-input-color);
    font-size: 13px;
    flex: 1;
}
.gen-tab-inactive {
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border-3);
    border-radius: 8px;
    padding: 12px 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.gen-tab-active {
    background: rgba(245, 92, 30, 0.12);
    border: 1px solid #f55c1e;
    border-radius: 8px;
    padding: 12px 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.report-card {
    background: var(--lp-surface-2);
    border-radius: 10px;
    padding: 18px;
    color: var(--lp-text);
}

/* ─── Form ─── */
.form-label{font-size:11px;color:var(--lp-text-4);margin-bottom:6px;font-weight:500}
.form-input{width:100%;background:var(--lp-surface-2);border:1px solid var(--lp-border-3);border-radius:8px;padding:10px 13px;color:var(--lp-input-color);font-size:13px}
.form-input-light{color:var(--lp-text-3)}
.form-input::placeholder{color:var(--lp-input-plh)}
.form-textarea{width:100%;background:var(--lp-surface-2);border:1px solid var(--lp-border-3);border-radius:8px;padding:10px 13px;color:var(--lp-text-3);font-size:13px;resize:none;line-height:1.5}
.form-textarea-short{height:90px}
.form-textarea-tall{height:100px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.svc-btn-inactive{display:inline-flex;align-items:center;gap:7px;border-radius:7px;padding:7px 13px;font-size:12px;cursor:pointer;font-family:'Manrope',sans-serif;border:1px solid var(--lp-svc-btn-border);background:transparent;color:var(--lp-svc-btn-clr);transition:all .2s}
.svc-btn-active{display:inline-flex;align-items:center;gap:7px;border-radius:7px;padding:7px 13px;font-size:12px;cursor:pointer;font-family:'Manrope',sans-serif;border:1px solid #f55c1e;background:rgba(245,92,30,.12);color:#f55c1e;transition:all .2s}
.svc-btn-inactive svg,.svc-btn-active svg{width:15px;height:15px;flex-shrink:0}
.contact-trust{border-top:1px solid var(--lp-border-4);padding:22px 0}
.contact-trust-inner{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0}
.contact-trust-item{display:flex;align-items:center;gap:9px;font-size:13px;color:var(--lp-text-2);padding:0 34px}
.contact-trust-item + .contact-trust-item{border-left:1px solid var(--lp-border-4)}
.contact-trust-item svg{width:17px;height:17px;color:#f55c1e;flex-shrink:0}
@media(max-width:768px){.contact-trust-item{padding:8px 16px;border-left:none!important}}

/* ─── Spinner ─── */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--lp-spinner-track);
    border-top-color: var(--lp-spinner-top);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.spinner-sm {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--lp-spinner-track);
    border-top-color: var(--lp-spinner-top);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ─── Separators ─── */
.sep-h {
    width: 40px;
    height: 1px;
    background: var(--lp-border-2);
    flex-shrink: 0;
}
.sep-connector {
    color: var(--lp-text-4);
    font-size: 16px;
}

/* ─── Feature box (demo page) ─── */
.feature-box {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Office card ─── */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}
.contact-info-grid > .card {
    margin: 0;
}
@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.office-name {
    font-size: 12px;
    color: #f55c1e;
    font-weight: 600;
    margin-bottom: 4px;
}
.office-addr {
    font-size: 11px;
    color: var(--lp-text-2);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-text-3);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-link {
    font-size: 13px;
    color: var(--lp-footer-link);
}
.footer-bottom {
    border-top: 1px solid var(--lp-border-4);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal {
    font-size: 12px;
    color: var(--lp-footer-legal);
}
.footer-legal-link {
    font-size: 12px;
    color: var(--lp-footer-legal);
    cursor: pointer;
}

/* ─── Team image wrapper ─── */
.img-rounded {
    border-radius: 12px;
    width: 100%;
    height: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.pos-relative {
    position: relative;
}
.pos-absolute {
    position: absolute;
}
.inset-0 {
    inset: 0;
}

/* ─── Canvas ─── */
#fimpact-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ─── Contact highlight card ─── */
.contact-highlight {
    background: var(--lp-surface-2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.contact-highlight-9 {
    font-size: 9px;
    color: var(--lp-text-4);
    margin-bottom: 6px;
}
.contact-highlight-24 {
    font-size: 24px;
    font-weight: 800;
    color: #f55c1e;
}
.contact-highlight-status {
    font-size: 9px;
    margin-top: 2px;
}
.contact-highlight-9-white {
    font-size: 9px;
    color: var(--lp-text-3);
    margin-bottom: 4px;
}
.contact-highlight-22 {
    font-size: 22px;
    font-weight: 800;
    color: #f55c1e;
}

/* ─── Theme Toggle ─── */
.theme-toggle-lp {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--lp-border-2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--lp-text-2);
    flex: 0 0 auto;
    transition:
        background 0.12s,
        color 0.12s;
}
.theme-toggle-lp:hover {
    background: var(--lp-surface-2);
    color: var(--lp-text);
}

/* ─── Light mode fine-tuning ─── */
[data-theme="light"] .section-dark {
    background: var(--lp-surface-2);
}
[data-theme="light"] .cta-glow-home {
    background: radial-gradient(
        ellipse at 50% 130%,
        rgba(245, 92, 30, 0.06),
        transparent 60%
    );
}
[data-theme="light"] .cta-glow-about {
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(245, 92, 30, 0.05),
        transparent 60%
    );
}
[data-theme="light"] .bg-orange-10 {
    background: rgba(245, 92, 30, 0.08);
}
[data-theme="light"] .bg-orange-12 {
    background: rgba(245, 92, 30, 0.08);
}
[data-theme="light"] .bg-purple-12 {
    background: rgba(160, 96, 224, 0.08);
}
[data-theme="light"] .card-popular {
    border-color: var(--lp-card-popular-border);
    border-width: 2px;
}
[data-theme="light"] .card-popular-badge {
    background: #f55c1e;
}
[data-theme="light"] .report-card {
    background: var(--lp-surface-2);
    color: var(--lp-text);
}

/* Mockup SVG (services) hardcode màu tối — map sang tông sáng ở light theme.
   CSS fill/stroke thắng presentation attribute nên override được fill="#..." inline. */
[data-theme="light"] .svc-mock [fill="#16161a"],
[data-theme="light"] .svc-feat-thumb [fill="#141416"] {
    fill: #eaecef;
}
[data-theme="light"] .svc-mock [fill="#1e1e22"],
[data-theme="light"] .svc-feat-thumb [fill="#1c1c20"] {
    fill: #f4f4f6;
}
[data-theme="light"] .svc-feat-thumb [fill="#26262b"] {
    fill: #e2e2e6;
}
[data-theme="light"] .svc-mock [fill="#2a2a2a"],
[data-theme="light"] .svc-feat-thumb [fill="#2a2a2a"] {
    fill: #d4d4d8;
}
[data-theme="light"] .svc-mock [fill="#3a3a3a"] {
    fill: #c2c2c8;
}
[data-theme="light"] .svc-mock [stroke="#2a2a2a"],
[data-theme="light"] .svc-feat-thumb [stroke="#2a2a2a"] {
    stroke: #d4d4d8;
}

/* ─── Override hardcoded inline text colors ─── */
[data-theme="light"] [style*="color:#bbb"] {
    color: var(--lp-text-3) !important;
}
[data-theme="light"] [style*="color:#ccc"] {
    color: var(--lp-text-3) !important;
}
[data-theme="light"] [style*="color:#ddd"] {
    color: var(--lp-text-3) !important;
}
[data-theme="light"] [style*="color:#555"] {
    color: var(--lp-text-2) !important;
}
[data-theme="light"] [style*="color:#777"] {
    color: var(--lp-text-2) !important;
}
[data-theme="light"] [style*="color:#888"] {
    color: var(--lp-text-3) !important;
}
[data-theme="light"] [style*="color:#444"] {
    color: var(--lp-text-4) !important;
}
[data-theme="light"] [style*="color:#333"] {
    color: var(--lp-text-4) !important;
}
[data-theme="light"] [style*="color:#111"] {
    color: var(--lp-text) !important;
}
[data-theme="light"] [style*="color:#666"] {
    color: var(--lp-text-2) !important;
}

/* ─── Responsive layout ─── */
@media (max-width: 1100px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
    }
    .landing-nav-actions {
        gap: 8px;
    }
    .grid-3,
    .pricing-grid,
    .pricing-grid-lg {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .engage-wrapper {
        flex-wrap: nowrap;
    }
    .grid-2-lg {
        gap: 32px;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 28px;
    }
    .footer-grid > :last-child {
        grid-column: 2;
    }
    .demo-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .landing-nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        padding: 8px;
        background: var(--lp-nav-bg);
        border: 1px solid var(--lp-nav-border);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    }
    .landing-nav-links.is-open {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 2px !important;
    }
    .landing-nav-links .nav-link {
        padding: 12px 14px;
        border-bottom: 0;
        border-radius: 7px;
        font-size: 14px;
    }
    .landing-nav-links .nav-link.active,
    .landing-nav-links .nav-link:hover {
        background: rgba(245, 92, 30, 0.1);
    }
    .landing-nav-links.is-open .nav-cta-mobile {
        display: block;
        margin-top: 6px;
        font-weight: 600;
    }
    .landing-nav-links.is-open .nav-cta-mobile--primary {
        margin-top: 2px;
        color: #fff;
        background: #f55c1e;
        text-align: center;
    }
    .landing-nav-links.is-open .nav-cta-mobile--primary:hover {
        background: #e04f18;
    }
    .mobile-nav-toggle {
        display: flex;
        margin-left: auto;
    }
    .landing-nav-actions .nav-btn,
    .landing-nav-actions > .btn-primary {
        display: none;
    }
}

@media (max-width: 700px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .landing-nav .container {
        min-height: 62px;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 10px;
    }
    .section-pad-lg {
        padding: 64px 0;
    }
    .section-pad-md {
        padding: 48px 0;
    }
    .section-pad-hero,
    .section-pad-hero-sm {
        padding-top: 104px;
        padding-bottom: 44px;
    }
    .landing-hero,
    .landing-hero--home,
    .landing-hero--compact {
        min-height: auto;
        padding: 104px 0 48px;
    }
    .landing-hero--home {
        padding-top: 98px;
        padding-bottom: 54px;
    }
    .landing-hero--split .landing-hero__grid {
        gap: 34px;
    }
    .hero-heading {
        font-size: clamp(40px, 12vw, 64px);
        letter-spacing: -1.5px;
    }
    .container-narrow {
        max-width: none;
    }
    .grid-3,
    .grid-2,
    .grid-2-lg,
    .pricing-grid,
    .pricing-grid-lg,
    .grid-2-wide,
    .grid-2-cta,
    .grid-2-svc,
    .grid-4,
    .svc-card {
        grid-template-columns: minmax(0, 1fr);
    }
    .svc-card {
        gap: 22px;
    }
    .svc-card [style*="min-width"] {
        min-width: 0 !important;
        width: 100%;
    }
    .grid-3 > :last-child,
    .pricing-grid > :last-child,
    .pricing-grid-lg > :last-child {
        grid-column: auto;
        max-width: none;
    }
    .p-card {
        padding: 22px;
    }
    .p-md {
        padding: 24px;
    }
    .heading-h2 {
        font-size: 34px;
        line-height: 1.12;
    }
    .heading-h2-sm {
        font-size: 32px;
        line-height: 1.12;
    }
    .cta-banner {
        padding: 52px 22px;
        border-radius: 16px;
    }
    .cta-heading {
        font-size: 36px;
        line-height: 1.12;
    }
    .cta-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .grid-2-cta > * {
        min-width: 0;
    }
    .grid-2-cta > .btn-primary {
        white-space: normal !important;
        width: 100%;
    }
    .engage-step {
        padding: 8px 10px;
    }
    .sep-connector {
        display: none;
    }
    .footer {
        padding: 48px 0 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer-grid > :last-child {
        grid-column: auto;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-bottom > .flex {
        flex-wrap: wrap;
        gap: 10px;
    }
    #chatbot-widget {
        right: 12px !important;
        bottom: 12px !important;
    }
    #chatbot-widget .card {
        max-width: calc(100vw - 24px) !important;
    }
    .number-bar {
        justify-content: center !important;
    }
    .engage-wrapper {
        flex-wrap: wrap;
    }
}
