:root {
    --orange: #ff8a00;
    --orange2: #f5a400;
    --dark: #090807;
    --text: #111;
    --muted: #555b66;
    --line: #ece7df;
    --bg: #fffaf2;
    --card: #fff;
    --shadow: 0 18px 45px rgba(20, 15, 10, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    opacity: 0;
    transition: opacity .18s ease;
}

body.page-ready {
    opacity: 1;
}

body.page-leaving {
    opacity: .96;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.topbar {
    background: #090807;
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.topbar strong {
    color: var(--orange);
}

.topbar-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-links a {
    color: #fff;
    opacity: .95;
}

.topbar-links a:hover {
    color: var(--orange);
}

.main-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}

.nav-shell {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 245px;
}

.brand-mark {
    font-size: 54px;
    line-height: .7;
    font-weight: 900;
    color: var(--orange);
    font-style: italic;
    letter-spacing: -6px;
}

.brand-mark.small {
    font-size: 28px;
    letter-spacing: -3px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: .9;
}

.brand-text strong {
    font-size: 29px;
    letter-spacing: 2px;
}

.brand-text small {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 32px 0 26px;
    transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 999px;
    transition: width .25s ease, left .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.dropdown {
    position: relative;
}

.chevron {
    display: inline-block;
    font-size: 17px;
    margin-left: 4px;
    transition: transform .2s ease;
    transform-origin: center;
}

.dropdown:hover .chevron,
.dropdown:focus-within .chevron {
    transform: rotate(180deg);
}

.dropdown::before {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    top: 42px;
    height: 34px;
}

.dropdown-menu {
    position: absolute;
    top: 62px;
    left: -26px;
    width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 13px 14px;
    border-radius: 13px;
}

.dropdown-menu a:hover {
    background: #fff4df;
    color: var(--orange);
}

.dropdown-menu small {
    color: #6b7280;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switcher {
    --lang-width: 46px;
    position: relative;
    display: inline-grid;
    grid-template-columns: var(--lang-width) var(--lang-width);
    align-items: center;
    border: 1px solid #f0d9b9;
    background: #fffaf2;
    border-radius: 999px;
    padding: 4px;
    isolation: isolate;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.language-switcher::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: var(--lang-width);
    height: calc(100% - 8px);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #ffb000);
    box-shadow: 0 8px 18px rgba(255, 138, 0, .28);
    transform: translateX(0);
    transition: transform .24s cubic-bezier(.2, .8, .2, 1), box-shadow .24s ease;
    z-index: -1;
}

.language-switcher.is-fr::before {
    transform: translateX(var(--lang-width));
}

.language-switcher.is-switching::before {
    box-shadow: 0 10px 24px rgba(255, 138, 0, .38);
}

.language-switcher a,
.language-switcher button {
    min-width: var(--lang-width);
    border: 0;
    background: transparent;
    color: #3d3d3d;
    font: inherit;
    font-weight: 900;
    font-size: 14px;
    padding: 8px 0;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    transition: color .2s ease, transform .2s ease;
}

.language-switcher a:hover,
.language-switcher button:hover {
    transform: translateY(-1px);
}

.language-switcher a.active,
.language-switcher button.active {
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ffb000);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 138, 0, .28);
}

.btn-outline {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff;
}

.btn-dark {
    background: #090807;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.btn-white {
    border-color: #f3bd6d;
    background: #fff;
    color: #111;
}

.btn:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 24px;
    padding: 8px 12px;
}

/* ---------- Home hero ---------- */

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at left 52%, rgba(255, 166, 0, .18) 0 1px, transparent 2px) 0 0 / 14px 14px,
        linear-gradient(105deg, #fff 0%, #fff 60%, #fff4e0 100%);
    border-bottom: 1px solid #f4eadc;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -12%;
    top: 0;
    width: 48%;
    height: 100%;
    background: repeating-linear-gradient(135deg, rgba(255, 138, 0, .10) 0 1px, transparent 1px 16px);
    opacity: .45;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .92fr 1.35fr;
    gap: 54px;
    align-items: center;
    min-height: 585px;
    padding: 45px 0 50px;
}

.hero-copy h1 {
    font-size: 56px;
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -2.4px;
}

.hero-copy h1 span {
    color: var(--orange);
}

.hero-copy > p {
    font-size: 18px;
    line-height: 1.58;
    color: #333b47;
    max-width: 545px;
    margin: 0 0 20px;
}

.feature-list {
    display: grid;
    gap: 13px;
    margin: 22px 0;
}

.feature-list div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
}

.feature-list span {
    grid-row: 1 / 3;
    color: var(--orange);
    font-size: 28px;
    line-height: 1;
}

.feature-list strong {
    font-size: 16px;
}

.feature-list small {
    color: #3e4653;
    font-size: 14px;
    margin-top: 3px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

.mockup-wrap {
    position: relative;
    min-height: 430px;
}

.dashboard-visual {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    background: #f9fafb;
    border: 10px solid #0a0a0a;
    border-bottom-width: 18px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
    overflow: hidden;
    min-height: 385px;
}

.dashboard-visual::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 25%;
    width: 50%;
    height: 8px;
    background: #4b4b4b;
    border-radius: 20px;
}

.dash-sidebar {
    background: linear-gradient(180deg, #121212, #050505);
    color: #fff;
    padding: 24px 14px;
}

.dash-logo {
    font-weight: 900;
    margin-bottom: 22px;
    font-size: 18px;
}

.dash-logo span {
    color: var(--orange);
    font-size: 27px;
}

.dash-item {
    font-size: 13px;
    padding: 12px 10px;
    border-radius: 8px;
    color: #dcdcdc;
    margin-bottom: 6px;
}

.dash-item.active {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.dash-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 25px;
    background: #fafafa;
}

.metric-card,
.chart-card,
.donut-card,
.status-inline {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06);
    padding: 15px;
}

.metric-card small {
    display: block;
    color: #333;
    font-size: 11px;
}

.metric-card strong {
    display: block;
    font-size: 19px;
    margin: 9px 0;
}

.metric-card span {
    color: #11a864;
    font-size: 12px;
    font-weight: 700;
}

.chart-card {
    grid-column: span 2;
}

.donut-card {
    grid-column: span 1;
}

.status-inline {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-inline strong {
    color: #111;
}

.status-inline span {
    font-size: 12px;
    color: #555;
}

.card-title {
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 8px;
}

.chart-card svg {
    width: 100%;
    height: 150px;
}

.donut {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0 72%, #1b1a18 72% 86%, #e8e1d6 86%);
    display: grid;
    place-items: center;
    margin: 12px auto;
}

.donut span {
    width: 58px;
    height: 58px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.donut-card ul {
    font-size: 11px;
    color: #555;
    margin: 0;
    padding-left: 18px;
}

.phone-mockup {
    position: absolute;
    right: -28px;
    bottom: -72px;
    width: 145px;
    height: 255px;
    background: #0a0a0a;
    border: 7px solid #111;
    border-radius: 25px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .28);
    padding: 10px;
    color: #fff;
    z-index: 3;
}

.phone-head {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 13px;
}

.phone-head span {
    color: #fff;
}

.phone-head span:first-letter {
    color: var(--orange);
}

.phone-card {
    margin-top: 16px;
    background: #fff;
    color: #111;
    border-radius: 8px;
    padding: 10px;
    font-size: 10px;
}

.phone-card strong {
    display: block;
    margin: 5px 0;
}

.phone-card span {
    color: #11a864;
    font-size: 9px;
}

.phone-chart {
    height: 58px;
    background: linear-gradient(135deg, #fff, #fff2db);
    border-radius: 9px;
    margin-top: 10px;
    position: relative;
}

.phone-chart::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 5px;
    transform: skewY(-15deg);
}

.phone-donut {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0 72%, #222 72%);
    display: grid;
    place-items: center;
    margin: 13px auto 0;
}

.phone-donut span {
    background: #fff;
    color: #111;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
}

.performance-float {
    position: absolute;
    right: 82px;
    bottom: 110px;
    background: linear-gradient(135deg, #17110a, #1d1307);
    color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
    z-index: 2;
}

.performance-float span,
.performance-float small {
    display: block;
    color: #ddd;
}

.performance-float strong {
    display: block;
    font-size: 26px;
    margin: 6px 0;
}

/* ---------- Sections and cards ---------- */

.solutions-section {
    padding: 46px 0 64px;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.section-heading h2 {
    font-size: 32px;
    margin: 8px 0 0;
    letter-spacing: -1px;
}

.section-heading em {
    font-style: normal;
    color: var(--orange);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0ece6;
    border-radius: 14px;
    padding: 25px 22px;
    box-shadow: 0 12px 30px rgba(20, 15, 10, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(20, 15, 10, .12);
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: #fff0df;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.icon-box.amber {
    background: #fff1d0;
}

.icon-box.red {
    background: #ffe7e5;
}

.icon-box.green {
    background: #eaf5e8;
}

.product-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.product-card p {
    color: #4b5563;
    line-height: 1.55;
    margin: 0 0 18px;
}

.product-card a {
    color: var(--orange);
    font-weight: 900;
}

.proof-bar {
    margin-top: 28px;
    background: linear-gradient(135deg, #090807, #15100b);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 2.2fr;
    align-items: center;
    overflow: hidden;
}

.stat {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.stat span {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    background: rgba(255, 138, 0, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 27px;
    color: var(--orange);
}

.stat strong {
    font-size: 25px;
}

.stat small {
    color: #fff;
}

.why-box {
    padding: 18px 28px;
}

.why-box h3 {
    color: var(--orange);
    font-size: 16px;
    margin: 0 0 11px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    font-size: 13px;
}

.why-grid span {
    white-space: nowrap;
}

.why-grid span::first-letter {
    color: var(--orange);
}

/* ---------- Inner pages ---------- */

.page-hero {
    padding: 78px 0;
    background: linear-gradient(135deg, #fff, #fff4e2);
    border-bottom: 1px solid var(--line);
}

.page-hero .container {
    overflow: hidden;
}

.page-hero span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.page-hero h1 {
    font-size: 48px;
    max-width: 980px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.page-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
    line-height: 1.65;
}

.content-section {
    padding: 64px 0;
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.page-products,
.services-grid {
    padding: 64px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.detail-card {
    background: #fff;
    border: 1px solid #f0ece6;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(20, 15, 10, .08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 245px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(20, 15, 10, .13);
    border-color: #ffd9a3;
}

.detail-card h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.5px;
}

.detail-card p {
    margin: 0 0 10px;
    color: #46505c;
    line-height: 1.65;
    max-width: 760px;
}

.detail-card .btn {
    margin-top: auto;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid .detail-card {
    min-height: 260px;
}

.services-grid .detail-card::before {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff0df;
    box-shadow: inset 0 0 0 1px #ffe0ad;
    margin-bottom: 4px;
    display: grid;
    place-items: center;
    font-size: 26px;
}

.services-grid .detail-card:nth-child(1)::before {
    content: "🛠️";
}

.services-grid .detail-card:nth-child(2)::before {
    content: "💻";
}

.services-grid .detail-card:nth-child(3)::before {
    content: "☁️";
}

.services-grid .detail-card:nth-child(4)::before {
    content: "📱";
}

.services-grid .detail-card:nth-child(5)::before {
    content: "🔐";
}

.services-grid .detail-card:nth-child(6)::before {
    content: "⚙️";
}

.about-section {
    padding: 64px 0;
}

.about-card {
    background: #fff;
    border: 1px solid #f0ece6;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(20, 15, 10, .08);
    padding: 38px;
    max-width: 980px;
}

.about-card h2 {
    font-size: 34px;
    margin: 0 0 18px;
    letter-spacing: -.8px;
}

.about-card p {
    font-size: 17px;
    line-height: 1.75;
    color: #3d4652;
    margin: 0 0 16px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.value-grid div {
    background: #fffaf2;
    border: 1px solid #f2e6d4;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-grid strong {
    font-size: 18px;
    color: #111;
}

.value-grid span {
    color: #596272;
    line-height: 1.55;
}

.contact-panel {
    padding: 64px 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.contact-panel > div,
.contact-form {
    background: #fff;
    border: 1px solid #f0ece6;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(20, 15, 10, .08);
    padding: 32px;
}

.contact-panel h2 {
    font-size: 32px;
    margin: 0 0 18px;
}

.contact-panel p {
    font-size: 16px;
    color: #3d4652;
    line-height: 1.7;
    margin: 10px 0;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e7ded2;
    border-radius: 14px;
    background-color: #fffaf5;
    font: inherit;
    font-size: 16px;
    color: #1f2937;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form input,
.contact-form select {
    height: 56px;
    padding: 0 18px;
}

.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 150px;
    padding: 16px 18px;
    resize: vertical;
}

.contact-form select {
    cursor: pointer;
    padding-right: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, .12);
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
    border: 0;
    cursor: pointer;
}

/* ---------- Footer ---------- */

.footer {
    background: #0b0a08;
    color: #fff;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 32px;
}

.footer p {
    color: #cfcfcf;
}

.footer h4 {
    color: var(--orange);
    margin: 0 0 12px;
}

.footer a {
    display: block;
    color: #e6e6e6;
    margin: 8px 0;
}

.footer a:hover {
    color: var(--orange);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 32px;
    padding: 18px;
    color: #bdbdbd;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
    .nav-actions {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .mockup-wrap {
        max-width: 820px;
    }

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

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

    .why-box {
        grid-column: 1 / -1;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 900px) {
    .page-products,
    .services-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 28px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .topbar-inner {
        height: auto;
        padding: 10px 0;
        align-items: flex-start;
    }

    .topbar-links {
        display: none;
    }

    .nav-shell {
        height: auto;
        min-height: 74px;
        flex-wrap: wrap;
    }

    .brand {
        min-width: unset;
    }

    .brand-mark {
        font-size: 42px;
    }

    .brand-text strong {
        font-size: 23px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        padding: 14px 0;
    }

    .nav-link::after {
        bottom: 6px;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        width: 100%;
        margin: 0;
        border-radius: 12px;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .hero-grid {
        padding: 38px 0;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-visual {
        grid-template-columns: 1fr;
        border-width: 7px;
        border-bottom-width: 14px;
    }

    .dash-sidebar {
        display: none;
    }

    .dash-content {
        grid-template-columns: 1fr 1fr;
    }

    .chart-card,
    .donut-card {
        grid-column: span 2;
    }

    .phone-mockup,
    .performance-float {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .proof-bar {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid span {
        white-space: normal;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 38px;
    }
}

/* ---------- Fluid HTMX navigation ---------- */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--orange), #ffbe45);
    box-shadow: 0 0 18px rgba(255, 138, 0, .55);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.page-progress.running {
    opacity: 1;
    animation: pageProgressRun 1.2s ease-out forwards;
}

.page-progress.done {
    width: 100%;
    opacity: 0;
    transition: width .18s ease, opacity .25s ease .12s;
}

@keyframes pageProgressRun {
    0% { width: 0; }
    45% { width: 48%; }
    78% { width: 78%; }
    100% { width: 88%; }
}

.page-content {
    view-transition-name: page-content;
    min-height: 45vh;
}

.page-content.is-loading {
    opacity: .72;
    filter: saturate(.96);
    transition: opacity .12s ease, filter .12s ease;
}

::view-transition-old(page-content) {
    animation: sukaliPageOut .18s ease both;
}

::view-transition-new(page-content) {
    animation: sukaliPageIn .24s ease both;
}

@keyframes sukaliPageOut {
    to {
        opacity: 0;
        transform: translateY(8px) scale(.995);
    }
}

@keyframes sukaliPageIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.995);
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .48s ease, transform .48s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 780px) {
    .nav-menu {
        display: flex;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
    }

    .nav-menu.open {
        max-height: 560px;
        opacity: 1;
        transform: translateY(0);
    }
}
