/* ============================================
   PROXVERA — Brand Identity System
   Thin-line precision hospitality aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Brand Palette */
    --ink: #080E1C;
    --deep: #0F1D38;
    --navy: #162D55;
    --cobalt: #1B4FD8;
    --azure: #2662F0;
    --sky: #4C8BF5;
    --mist: #C8DBFD;
    --fog: #EDF3FE;

    --emerald: #0A7C5C;
    --jade: #0DB07F;
    --mint: #C6F4E6;

    --amber: #C97A0A;
    --gold: #F0A424;
    --cream: #FDF0D6;

    --rose: #C03744;

    /* Slate / Neutral */
    --s700: #2D3748;
    --s500: #5A6478;
    --s400: #8896AB;
    --s300: #C4CDDB;
    --s200: #E4E9F1;
    --s100: #F0F4FA;
    --white: #FFFFFF;

    /* Semantic Aliases */
    --bg: var(--white);
    --bg-subtle: var(--s100);
    --bg-muted: var(--fog);
    --bg-dark: var(--ink);
    --bg-dark-elevated: var(--deep);
    --bg-dark-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.78);
    --bg-glass-dark: rgba(8, 14, 28, 0.85);

    --text: var(--ink);
    --text-secondary: var(--s500);
    --text-muted: var(--s400);
    --text-white: #F4F7FB;
    --text-white-muted: rgba(255, 255, 255, 0.45);

    --border: var(--s300);
    --border-light: var(--s200);
    --border-dark: rgba(255, 255, 255, 0.06);
    --border-dark-hover: rgba(255, 255, 255, 0.15);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(8, 14, 28, 0.04);
    --shadow-sm: 0 1px 3px rgba(8, 14, 28, 0.05), 0 1px 2px rgba(8, 14, 28, 0.03);
    --shadow: 0 4px 6px -1px rgba(8, 14, 28, 0.06), 0 2px 4px -2px rgba(8, 14, 28, 0.04);
    --shadow-md: 0 10px 20px -4px rgba(8, 14, 28, 0.07), 0 4px 6px -4px rgba(8, 14, 28, 0.03);
    --shadow-lg: 0 20px 32px -6px rgba(8, 14, 28, 0.08), 0 8px 10px -6px rgba(8, 14, 28, 0.03);
    --shadow-xl: 0 28px 48px -12px rgba(8, 14, 28, 0.12);
    --shadow-2xl: 0 36px 64px -16px rgba(8, 14, 28, 0.18);
    --shadow-glow: 0 0 48px rgba(27, 79, 216, 0.12);

    /* Radii */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 22px;
    --radius-full: 9999px;

    /* Spacing */
    --nav-height: 64px;
    --container: 1200px;
    --container-lg: 1360px;

    /* Typography */
    --f-display: 'Cormorant Garamond', 'Georgia', serif;
    --f-ui: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-mono: 'Courier Prime', 'Courier New', monospace;
    --font: var(--f-ui);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
    font-family: var(--f-ui);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text);
}

h1 {
    font-size: clamp(40px, 5vw, 64px);
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 17px;
    font-family: var(--f-ui);
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-family: var(--f-ui);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

p {
    font-family: var(--f-ui);
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--sky) 50%, var(--jade) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-warm {
    background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: var(--text-white) !important;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4 {
    color: var(--text-white);
}

.text-muted-white {
    color: var(--text-white-muted) !important;
}

/* Proxvera Brand Typography */
.px-eyebrow {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cobalt);
}

.px-eyebrow-dark {
    color: rgba(255, 255, 255, 0.35);
}

.px-heading {
    font-family: var(--f-display);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.1;
}

.px-heading-lg {
    font-size: clamp(42px, 5vw, 64px);
}

.px-heading-md {
    font-size: clamp(28px, 3.5vw, 42px);
}

.px-heading-sm {
    font-size: 22px;
}

.px-lead {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--s500);
    max-width: 600px;
}

.px-lead-dark {
    color: rgba(255, 255, 255, 0.45);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--cobalt);
    color: var(--white);
    border-color: var(--cobalt);
}

.btn-primary:hover {
    background: var(--azure);
    border-color: var(--azure);
    box-shadow: 0 6px 20px rgba(27, 79, 216, 0.25);
    transform: translateY(-1px);
}

.btn-warm {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}

.btn-warm:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 122, 10, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--cobalt);
    border-color: var(--cobalt);
}

.btn-outline:hover {
    background: var(--cobalt);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--cobalt);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--fog);
    border-color: var(--fog);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--s500);
    padding: 11px 16px;
    border: none;
}

.btn-ghost:hover {
    color: var(--cobalt);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.btn-dark:hover {
    background: var(--deep);
    border-color: var(--deep);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 13px;
}

.btn-xl {
    padding: 16px 44px;
    font-size: 13px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 11px;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled,
.navbar.solid {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--s200);
    box-shadow: var(--shadow-xs);
}

.navbar.dark-nav {
    background: transparent;
}

.navbar.dark-nav.scrolled {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--cobalt);
    color: white;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.logo-text {
    font-family: var(--f-display);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 18px;
}

.dark-nav .logo-text {
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    color: var(--s500);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--cobalt);
    background: rgba(27, 79, 216, 0.05);
}

.dark-nav .nav-links>li>a {
    color: rgba(255, 255, 255, 0.55);
}

.dark-nav .nav-links>li>a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

/* Dropdown menus */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 440px;
    background: var(--white);
    border: 1px solid var(--s200);
    border-top: 2px solid var(--cobalt);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.nav-links>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--s700);
    border-radius: var(--radius);
    transition: all 0.15s;
}

.nav-dropdown a:hover {
    background: var(--fog);
    color: var(--cobalt);
}

.nav-dropdown a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--fog);
    color: var(--cobalt);
    font-size: 14px;
    flex-shrink: 0;
}

.nav-dropdown a:hover i {
    background: rgba(27, 79, 216, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--s700);
    border-radius: 1px;
    transition: all 0.3s;
}

.dark-nav .nav-toggle span {
    background: rgba(255, 255, 255, 0.7);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-xl {
    padding: 140px 0;
}

.section-dark {
    background: var(--ink);
}

.section-subtle {
    background: var(--s100);
}

.section-muted {
    background: var(--fog);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cobalt);
    margin-bottom: 20px;
}

.section-dark .section-tag {
    background: none;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.35);
}

.section-title {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
    line-height: 1.12;
}

.section-dark .section-title {
    color: var(--white);
}

.section-desc {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 400;
    color: var(--s500);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.section-header.left .section-desc {
    margin: 0;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.45);
}

/* Alias for subpage usage */
.section-description {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 400;
    color: var(--s500);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.45);
}

/* --- Hero (Home) --- */
.hero-home {
    position: relative;
    background: var(--ink);
    padding: calc(var(--nav-height) + 100px) 0 80px;
    overflow: hidden;
    min-height: 100vh;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 700px 500px at 90% -10%, rgba(27, 79, 216, 0.22), transparent 65%),
        radial-gradient(ellipse 500px 400px at -5% 110%, rgba(10, 124, 92, 0.12), transparent 55%);
    pointer-events: none;
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-top {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jade);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--sky) 0%, var(--jade) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Proxvera Hero */
.px-hero {
    background: var(--ink);
    min-height: 90vh;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.px-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.px-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 500px at 90% -10%, rgba(27, 79, 216, 0.22), transparent 65%),
        radial-gradient(ellipse 500px 400px at -5% 110%, rgba(10, 124, 92, 0.12), transparent 55%);
    pointer-events: none;
}

/* Hero Stats */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
}

.hero-metric {
    text-align: center;
}

.metric-value {
    font-family: var(--f-display);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.metric-value .suffix {
    font-size: 28px;
    color: var(--sky);
}

.metric-label {
    font-family: var(--f-ui);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero Mockup */
.hero-mockup {
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1500px;
}

.hero-mockup-inner {
    background: var(--deep);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(27, 79, 216, 0.08);
    transform: rotateX(2deg);
    transition: transform 0.6s ease;
}

.hero-mockup-inner:hover {
    transform: rotateX(0deg);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

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

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-url {
    flex: 1;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--s400);
}

.mockup-screen {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 500px;
}

.mockup-sidebar {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.ms-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 20px;
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.ms-brand .logo-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 5px;
}

.ms-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.ms-nav-item i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

.ms-nav-item.active {
    background: rgba(27, 79, 216, 0.15);
    color: var(--white);
}

.mockup-main {
    padding: 20px;
    overflow: hidden;
}

/* Mockup KPI Cards */
.mk-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.mk-card {
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
}

.mk-card-label {
    font-family: var(--f-ui);
    font-size: 10px;
    color: var(--s400);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 400;
}

.mk-card-value {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 300;
    color: white;
    margin-bottom: 4px;
}

.mk-card-change {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 400;
}

.mk-card-change.up {
    color: var(--jade);
}

.mk-card-change.down {
    color: var(--rose);
}

.mk-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.mk-bar span {
    display: block;
    height: 100%;
    border-radius: 2px;
}

/* Mockup Chart Area */
.mk-chart-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.mk-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 14px;
}

.mk-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mk-chart-title {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    color: white;
}

.mk-chart-period {
    font-family: var(--f-ui);
    font-size: 10px;
    color: var(--s400);
}

.mk-chart svg {
    width: 100%;
    height: auto;
}

/* Mockup Table */
.mk-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    overflow: hidden;
}

.mk-table-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    color: var(--s400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mk-table-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 8px;
    padding: 9px 14px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
}

.mk-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mk-status.green {
    background: rgba(10, 124, 92, 0.12);
    color: var(--jade);
}

.mk-status.blue {
    background: rgba(27, 79, 216, 0.12);
    color: var(--sky);
}

.mk-status.yellow {
    background: rgba(201, 122, 10, 0.12);
    color: var(--gold);
}

.mk-status.red {
    background: rgba(192, 55, 68, 0.12);
    color: #e8606d;
}

/* --- Trust / Logos Bar --- */
.trust-bar {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--s200);
}

.trust-bar.dark {
    background: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.trust-label {
    text-align: center;
    font-family: var(--f-ui);
    font-size: 10px;
    color: var(--s400);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 28px;
}

.trust-bar.dark .trust-label {
    color: rgba(255, 255, 255, 0.3);
}

.logo-carousel {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-ui);
    font-size: 15px;
    font-weight: 400;
    color: var(--s400);
    opacity: 0.5;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* OTA Logo styling */
.ota-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: var(--radius);
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
    white-space: nowrap;
}

.ota-logo:hover {
    border-color: var(--cobalt);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.ota-logo .logo-color {
    font-weight: 600;
}

.booking-blue {
    color: #003580;
}

.expedia-yellow {
    color: #00355f;
}

.agoda-red {
    color: #5392f9;
}

.airbnb-pink {
    color: #FF5A5F;
}

.mmt-red {
    color: #eb2226;
}

.goibibo-orange {
    color: #EC5B24;
}

.tripadvisor-green {
    color: #00aa6c;
}

.trivago-blue {
    color: #007faf;
}

.hostelworld-orange {
    color: #f47920;
}

.section-dark .ota-logo {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .ota-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.product-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--s300);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cobalt);
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card:hover {
    border-color: var(--cobalt);
    box-shadow: 0 12px 32px rgba(27, 79, 216, 0.08);
    transform: translateY(-3px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 18px;
}

.product-icon.purple {
    background: rgba(27, 79, 216, 0.08);
    color: var(--cobalt);
}

.product-icon.blue {
    background: rgba(38, 98, 240, 0.08);
    color: var(--azure);
}

.product-icon.orange {
    background: rgba(201, 122, 10, 0.08);
    color: var(--amber);
}

.product-icon.green {
    background: rgba(10, 124, 92, 0.08);
    color: var(--emerald);
}

.product-icon.rose {
    background: rgba(192, 55, 68, 0.08);
    color: var(--rose);
}

.product-card h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 13px;
    color: var(--s500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cobalt);
}

.product-link i {
    transition: transform 0.2s;
    font-size: 11px;
}

.product-link:hover i {
    transform: translateX(4px);
}

/* --- Feature Cards (Subpage) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--s200);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-card:hover {
    border-color: var(--s300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.section-dark .feature-card:hover {
    border-color: rgba(76, 139, 245, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 18px;
    background: rgba(27, 79, 216, 0.08);
    color: var(--cobalt);
}

.section-dark .feature-icon {
    background: rgba(76, 139, 245, 0.1);
    color: var(--sky);
}

.feature-card h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.section-dark .feature-card h3 {
    color: var(--white);
}

.feature-card p {
    font-size: 14px;
    color: var(--s500);
    line-height: 1.65;
}

.section-dark .feature-card p {
    color: rgba(255, 255, 255, 0.45);
}

/* --- Proxvera Cards --- */
.px-card {
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.2s ease;
}

.px-card:hover {
    border-color: var(--cobalt);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 79, 216, 0.08);
}

.px-card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    transition: all 0.2s ease;
}

.px-card-dark:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

/* --- Proxvera Icon Boxes --- */
.px-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.px-icon-blue {
    background: rgba(27, 79, 216, 0.08);
    color: var(--cobalt);
}

.px-icon-green {
    background: rgba(10, 124, 92, 0.08);
    color: var(--emerald);
}

.px-icon-amber {
    background: rgba(201, 122, 10, 0.08);
    color: var(--amber);
}

/* --- Proxvera KPI Strip --- */
.px-kpi-strip {
    display: flex;
    gap: 1px;
    background: var(--s300);
    border: 1px solid var(--s300);
    border-radius: 10px;
    overflow: hidden;
}

.px-kpi {
    flex: 1;
    background: var(--white);
    padding: 20px;
}

.px-kpi-label {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--s500);
}

.px-kpi-value {
    font-family: var(--f-display);
    font-size: 30px;
    font-weight: 300;
    color: var(--ink);
}

/* KPI dark variant (inside hero / dark sections) */
.px-hero .px-kpi-strip,
.section-dark .px-kpi-strip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.px-hero .px-kpi,
.section-dark .px-kpi {
    background: rgba(255, 255, 255, 0.03);
}

.px-hero .px-kpi-value,
.section-dark .px-kpi-value {
    color: #fff;
}

.px-hero .px-kpi-label,
.section-dark .px-kpi-label {
    color: rgba(255, 255, 255, 0.35);
}

/* --- Feature Showcase (split) --- */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-split.reverse {
    direction: rtl;
}

.feature-split.reverse>* {
    direction: ltr;
}

.feature-content {
    max-width: 520px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(27, 79, 216, 0.06);
    color: var(--cobalt);
    font-size: 14px;
}

.section-dark .feature-item-icon {
    background: rgba(76, 139, 245, 0.1);
    color: var(--sky);
}

.feature-item h4 {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.section-dark .feature-item h4 {
    color: var(--white);
}

.feature-item p {
    font-size: 13px;
    color: var(--s500);
    line-height: 1.55;
}

.section-dark .feature-item p {
    color: rgba(255, 255, 255, 0.45);
}

/* --- Feature Visual Mockups --- */
.feature-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--s300);
}

.section-dark .feature-visual {
    border-color: rgba(255, 255, 255, 0.06);
}

.fv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fv-title {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    color: white;
}

.fv-actions {
    display: flex;
    gap: 6px;
}

.fv-action {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.fv-body {
    background: var(--deep);
    padding: 20px;
}

/* --- Stats Cards --- */
.stats-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
}

.stat-card:hover {
    border-color: rgba(76, 139, 245, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-family: var(--f-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .accent {
    color: var(--sky);
}

.stat-label {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

/* Light stat cards */
.section-subtle .stat-card,
.section-muted .stat-card {
    background: var(--white);
    border-color: var(--s300);
}

.section-subtle .stat-number,
.section-muted .stat-number {
    color: var(--ink);
}

.section-subtle .stat-label,
.section-muted .stat-label {
    color: var(--s500);
}

/* --- USP Highlight Cards --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.usp-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--s300);
    transition: all 0.2s;
}

.usp-card:hover {
    box-shadow: 0 12px 32px rgba(27, 79, 216, 0.08);
    transform: translateY(-3px);
    border-color: var(--cobalt);
}

.usp-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 18px;
}

.usp-card h3 {
    font-family: var(--f-ui);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.usp-card p {
    font-size: 13px;
    color: var(--s500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.usp-card ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.usp-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--s500);
}

.usp-card ul li i {
    color: var(--jade);
    font-size: 11px;
    width: 16px;
}

/* --- Comparison Table --- */
.comparison-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--s300);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--f-ui);
    font-size: 13px;
    min-width: 900px;
}

.comparison-table th,
.comparison-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--s200);
}

.comparison-table thead th {
    background: var(--s100);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--s500);
    position: sticky;
    top: 0;
}

.comparison-table tbody tr:hover {
    background: var(--s100);
}

.highlight-col {
    background: rgba(27, 79, 216, 0.03) !important;
}

.comparison-table thead .highlight-col {
    background: rgba(27, 79, 216, 0.06) !important;
    color: var(--cobalt);
}

.icon-yes {
    color: var(--jade);
    font-size: 16px;
}

.icon-no {
    color: var(--s300);
    font-size: 16px;
}

.icon-partial {
    color: var(--gold);
    font-size: 16px;
}

/* Compare row (subpage alias) */
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--s200);
}

.compare-row>* {
    padding: 14px 20px;
}

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--s300);
    background: var(--white);
    transition: all 0.2s;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--cobalt);
}

.tc-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}

.tc-quote {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: var(--s500);
    line-height: 1.7;
    margin-bottom: 22px;
}

.section-dark .tc-quote {
    color: rgba(255, 255, 255, 0.45);
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 500;
}

.tc-author-info strong {
    display: block;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
}

.section-dark .tc-author-info strong {
    color: white;
}

.tc-author-info span {
    font-family: var(--f-ui);
    font-size: 11px;
    color: var(--s400);
}

/* --- Pricing --- */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pt-label {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    color: var(--s400);
    cursor: pointer;
}

.pt-label.active {
    color: var(--text);
    font-weight: 500;
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(10, 124, 92, 0.08);
    color: var(--emerald);
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--s300);
    border-radius: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--cobalt);
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(18px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--s300);
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.pricing-card.featured {
    border-color: var(--cobalt);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-3px);
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--cobalt);
    color: white;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pc-name {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 6px;
}

.pc-desc {
    font-family: var(--f-ui);
    font-size: 13px;
    color: var(--s500);
    margin-bottom: 24px;
}

.pc-price {
    margin-bottom: 28px;
}

.price-amount {
    font-family: var(--f-display);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.price-period {
    font-family: var(--f-ui);
    font-size: 13px;
    color: var(--s400);
}

.pc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--s500);
}

.pc-features li i {
    color: var(--jade);
    font-size: 12px;
    width: 16px;
    text-align: center;
}

/* --- CTA Banner --- */
.cta-banner,
.px-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 50%, var(--cobalt) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.px-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--f-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-banner .btn-group,
.cta-banner .cta-content {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner-content {
    max-width: 600px;
    margin: 0 auto;
}

/* --- Form Styles --- */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--s200);
}

.form-card h3 {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-card .form-subtitle {
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: var(--s500);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--s700);
    margin-bottom: 6px;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--s300);
    border-radius: var(--radius-sm);
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--cobalt);
    box-shadow: 0 0 0 3px rgba(27, 79, 216, 0.06);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-family: var(--f-ui);
    font-size: 12px;
    color: var(--s400);
    margin-top: 12px;
}

/* --- Integration Hub Visual --- */
.int-hub {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cobalt);
    border-radius: 14px;
    box-shadow: 0 0 60px rgba(27, 79, 216, 0.3);
    z-index: 2;
}

.hub-center .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 10px;
    background: transparent;
}

.hub-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: orbit-spin 40s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--sky);
    font-size: 17px;
    animation: orbit-counter 40s linear infinite;
    backdrop-filter: blur(4px);
}

.orbit-node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-node:nth-child(2) {
    top: 20%;
    right: 5%;
}

.orbit-node:nth-child(3) {
    bottom: 20%;
    right: 5%;
}

.orbit-node:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-node:nth-child(5) {
    bottom: 20%;
    left: 5%;
}

.orbit-node:nth-child(6) {
    top: 20%;
    left: 5%;
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-counter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* --- Communication Channels --- */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comm-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.2s;
}

.comm-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
}

.comm-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    margin: 0 auto 14px;
}

.comm-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.comm-icon.sms {
    background: rgba(38, 98, 240, 0.1);
    color: var(--azure);
}

.comm-icon.email {
    background: rgba(76, 139, 245, 0.1);
    color: var(--sky);
}

.comm-card h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.comm-card p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* --- Page Hero (subpages) --- */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 70px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(27, 79, 216, 0.15), transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 640px;
}

.page-hero .section-tag {
    margin-bottom: 16px;
}

.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.page-hero p {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Subpage hero aliases */
.hero-section {
    position: relative;
    background: var(--ink);
    padding: calc(var(--nav-height) + 80px) 0 70px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(27, 79, 216, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-description {
    font-family: var(--f-ui);
    font-size: 17px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* --- Checklist Grid --- */
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: var(--radius);
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
}

.check-item i {
    color: var(--jade);
    font-size: 13px;
}

.section-dark .check-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}

/* --- Roadmap --- */
.roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--s300);
}

.section-dark .roadmap::before {
    background: rgba(255, 255, 255, 0.06);
}

.roadmap-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.roadmap-dot {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cobalt);
    color: white;
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--white);
}

.section-dark .roadmap-dot {
    box-shadow: 0 0 0 5px var(--ink);
}

.roadmap-dot.completed {
    background: var(--emerald);
}

.roadmap-dot.upcoming {
    background: var(--s100);
    color: var(--s400);
    border: 1px solid var(--s300);
}

.section-dark .roadmap-dot.upcoming {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.roadmap-content h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.section-dark .roadmap-content h3 {
    color: white;
}

.roadmap-content p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: var(--s500);
    line-height: 1.6;
}

.section-dark .roadmap-content p {
    color: rgba(255, 255, 255, 0.45);
}

.roadmap-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 8px;
}

.roadmap-badge.live {
    background: rgba(10, 124, 92, 0.08);
    color: var(--emerald);
}

.roadmap-badge.building {
    background: rgba(27, 79, 216, 0.08);
    color: var(--cobalt);
}

.roadmap-badge.planned {
    background: rgba(136, 150, 171, 0.1);
    color: var(--s400);
}

/* --- FAQ Accordion --- */
.faq-item {
    border: 1px solid var(--s300);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--cobalt);
}

.faq-item summary,
.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--s700);
    cursor: pointer;
    transition: background 0.2s;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover,
.faq-item .faq-question:hover {
    background: var(--s100);
}

.faq-item .faq-answer,
.faq-item p {
    padding: 0 20px 16px;
    font-family: var(--f-ui);
    font-size: 14px;
    font-weight: 300;
    color: var(--s500);
    line-height: 1.7;
}

.section-dark .faq-item {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.section-dark .faq-item:hover {
    border-color: rgba(76, 139, 245, 0.3);
}

.section-dark .faq-item summary,
.section-dark .faq-item .faq-question {
    color: rgba(255, 255, 255, 0.8);
}

.section-dark .faq-item summary:hover,
.section-dark .faq-item .faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.section-dark .faq-item .faq-answer,
.section-dark .faq-item p {
    color: rgba(255, 255, 255, 0.45);
}

/* --- Footer --- */
.footer {
    background: var(--ink);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 260px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--s400);
    font-size: 13px;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--cobalt);
    border-color: var(--cobalt);
    color: white;
}

.footer-links h4 {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-badges span {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] {
    transition-delay: 0.1s;
}

[data-animate-delay="2"] {
    transition-delay: 0.2s;
}

[data-animate-delay="3"] {
    transition-delay: 0.3s;
}

[data-animate-delay="4"] {
    transition-delay: 0.4s;
}

[data-animate-delay="5"] {
    transition-delay: 0.5s;
}

[data-animate-delay="6"] {
    transition-delay: 0.6s;
}

[data-animate-delay="7"] {
    transition-delay: 0.7s;
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* --- Hero Outcomes List --- */
.hero-outcomes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.hero-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: 15px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.hero-outcomes li i {
    color: var(--jade);
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- Property Type Grid --- */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.property-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.2s;
}

.property-card:hover {
    border-color: var(--cobalt);
    box-shadow: 0 12px 32px rgba(27, 79, 216, 0.08);
    transform: translateY(-3px);
}

.property-card .p-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    margin: 0 auto 18px;
}

.property-card h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.property-card p {
    font-size: 13px;
    color: var(--s500);
    line-height: 1.6;
}

/* --- Outcome Grid --- */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.outcome-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cobalt);
    opacity: 0;
    transition: opacity 0.2s;
}

.outcome-card:hover {
    border-color: var(--cobalt);
    box-shadow: 0 12px 32px rgba(27, 79, 216, 0.08);
    transform: translateY(-3px);
}

.outcome-card:hover::before {
    opacity: 1;
}

.outcome-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 18px;
}

.outcome-card h3 {
    font-family: var(--f-ui);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 13px;
    color: var(--s500);
    line-height: 1.6;
    margin-bottom: 14px;
}

.outcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(27, 79, 216, 0.06);
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cobalt);
}

/* --- Platform Flow Diagram --- */
.platform-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-bottom: 48px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    min-width: 130px;
    text-align: center;
    transition: all 0.2s;
}

.flow-step:hover {
    background: rgba(27, 79, 216, 0.08);
    border-color: rgba(27, 79, 216, 0.2);
}

.flow-step i {
    font-size: 22px;
    color: var(--sky);
}

.flow-step span {
    font-family: var(--f-ui);
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.flow-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.2);
    padding: 0 6px;
    flex-shrink: 0;
}

.flow-branches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.flow-branch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.flow-branch:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.flow-branch i {
    font-size: 13px;
    color: var(--sky);
}

/* --- Business Modules Grid --- */
.biz-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 36px;
}

.biz-module-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px 22px 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.biz-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.biz-module-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.biz-module-card:hover::before {
    opacity: 1;
}

.biz-module-featured {
    border-color: rgba(27, 79, 216, 0.15);
    background: rgba(27, 79, 216, 0.04);
}

.biz-module-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 16px;
}

.biz-icon-blue {
    background: rgba(27, 79, 216, 0.1);
    color: var(--sky);
}

.biz-icon-green {
    background: rgba(10, 124, 92, 0.1);
    color: var(--jade);
}

.biz-icon-amber {
    background: rgba(201, 122, 10, 0.1);
    color: var(--gold);
}

.biz-icon-purple {
    background: rgba(107, 70, 193, 0.1);
    color: #a78bfa;
}

.biz-icon-red {
    background: rgba(192, 55, 68, 0.1);
    color: #e8606d;
}

.biz-icon-teal {
    background: rgba(10, 124, 92, 0.08);
    color: var(--jade);
}

.biz-icon-indigo {
    background: rgba(27, 79, 216, 0.08);
    color: var(--sky);
}

.biz-icon-orange {
    background: rgba(201, 122, 10, 0.08);
    color: var(--gold);
}

.biz-icon-pink {
    background: rgba(192, 55, 68, 0.08);
    color: #e8606d;
}

.biz-module-card h3 {
    font-family: var(--f-ui);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 6px;
}

.biz-module-card p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 12px;
}

.biz-module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.biz-module-tags span {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 2px 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.4);
}

.biz-more-modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.biz-more-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.biz-more-chip:hover {
    background: rgba(27, 79, 216, 0.08);
    border-color: rgba(27, 79, 216, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.biz-more-chip i {
    font-size: 12px;
    color: var(--sky);
}

/* --- Screenshots Gallery --- */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 8px 18px;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--s500);
    background: var(--white);
    border: 1px solid var(--s300);
    cursor: pointer;
    transition: all 0.2s;
}

.gallery-tab:hover {
    border-color: var(--cobalt);
    color: var(--cobalt);
}

.gallery-tab.active {
    background: var(--cobalt);
    color: var(--white);
    border-color: var(--cobalt);
}

.gallery-panel {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-panel.active {
    display: block;
}

/* --- Integration Cards --- */
.integration-category {
    margin-bottom: 40px;
}

.integration-category:last-child {
    margin-bottom: 0;
}

.integration-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--s700);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--s200);
}

.integration-category-title i {
    color: var(--cobalt);
    font-size: 16px;
}

.integration-count {
    font-family: var(--f-ui);
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    background: rgba(27, 79, 216, 0.06);
    color: var(--cobalt);
    border-radius: 2px;
}

.integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.integration-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--s300);
    border-radius: var(--radius);
    transition: all 0.2s;
    min-width: 160px;
}

.integration-card:hover {
    border-color: var(--cobalt);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.ic-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    flex-shrink: 0;
}

.ic-name {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--s700);
    white-space: nowrap;
}

.ic-badge {
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 2px 7px;
    background: var(--s100);
    color: var(--s400);
    border-radius: 2px;
    white-space: nowrap;
}

/* --- Module Grid (generic auto-fit) --- */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-screen {
        grid-template-columns: 180px 1fr;
    }

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

    .mk-chart-area {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {

    .feature-split,
    .feature-split.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-3px);
    }

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

    .hero-mockup-inner {
        display: none;
    }

    .hero-metrics {
        gap: 32px;
        flex-wrap: wrap;
    }

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

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

    .platform-flow {
        flex-wrap: wrap;
        gap: 8px;
    }

    .flow-arrow {
        display: none;
    }

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

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

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

    .nav-actions {
        gap: 6px;
    }

    .nav-actions .btn-ghost:last-of-type {
        display: none;
    }

    .nav-actions .btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .dark-nav .nav-actions .btn-ghost {
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px;
        gap: 2px;
        border-bottom: 1px solid var(--s200);
        box-shadow: var(--shadow-lg);
    }

    .dark-nav .nav-links.open {
        background: var(--deep);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .nav-links.open .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        min-width: unset;
        grid-template-columns: unset;
    }

    .section {
        padding: 72px 0;
    }

    .section-lg {
        padding: 80px 0;
    }

    .hero-home {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 48px);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-metrics {
        gap: 20px;
    }

    .hero-metric {
        min-width: calc(50% - 10px);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .product-grid,
    .stats-grid,
    .stat-grid,
    .usp-grid,
    .comm-grid,
    .testimonial-grid,
    .pricing-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .mockup-screen {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: none;
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .logo-carousel {
        gap: 24px;
    }

    .property-type-grid {
        grid-template-columns: 1fr;
    }

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

    .platform-flow {
        flex-direction: column;
    }

    .flow-step {
        min-width: 100%;
    }

    .gallery-tabs {
        gap: 4px;
    }

    .gallery-tab {
        padding: 7px 14px;
        font-size: 11px;
    }

    .integration-card {
        min-width: calc(50% - 8px);
    }

    .diff-grid {
        grid-template-columns: 1fr !important;
    }

    .biz-modules-grid {
        grid-template-columns: 1fr;
    }

    .px-kpi-strip {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-card {
        padding: 24px;
    }

    .metric-value {
        font-size: 32px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .biz-module-card {
        padding: 20px 16px 16px;
    }
}

@media (max-width: 575px) {
    .biz-modules-grid {
        grid-template-columns: 1fr;
    }

    .biz-module-card {
        padding: 20px 16px 16px;
    }
}

/* --- Utility Classes --- */
.text-cobalt {
    color: var(--cobalt);
}

.text-azure {
    color: var(--azure);
}

.text-sky {
    color: var(--sky);
}

.text-emerald {
    color: var(--emerald);
}

.text-jade {
    color: var(--jade);
}

.text-amber {
    color: var(--amber);
}

.text-gold {
    color: var(--gold);
}

.text-ink {
    color: var(--ink);
}

.text-s500 {
    color: var(--s500);
}

.text-s400 {
    color: var(--s400);
}

.bg-ink {
    background: var(--ink);
}

.bg-deep {
    background: var(--deep);
}

.bg-fog {
    background: var(--fog);
}

.bg-s100 {
    background: var(--s100);
}

.bg-white {
    background: var(--white);
}

.font-display {
    font-family: var(--f-display);
}

.font-ui {
    font-family: var(--f-ui);
}

.font-mono {
    font-family: var(--f-mono);
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.ls-wide {
    letter-spacing: 0.1em;
}

.ls-wider {
    letter-spacing: 0.18em;
}

.uppercase {
    text-transform: uppercase;
}

.mt-0 {
    margin-top: 0;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-64 {
    margin-bottom: 64px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* --- Marquee Strip --- */
.px-marquee {
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid var(--s300);
    border-bottom: 1px solid var(--s300);
    background: var(--s100);
}

.section-dark+.px-marquee {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.mq-track {
    display: flex;
    animation: mqScroll 40s linear infinite;
    white-space: nowrap;
}

.mq-track span {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 400;
    color: var(--s400);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.06em;
}

.mq-track span i {
    color: var(--cobalt);
    font-size: 4px;
}

@keyframes mqScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Module Grid (homepage) --- */
.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.mod-card {
    padding: 24px 22px;
    background: var(--white);
    border: 1px solid var(--s200);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.mod-card:hover {
    border-color: var(--s300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mod-card h3 {
    font-family: var(--f-ui);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.mod-card p {
    font-family: var(--f-ui);
    font-size: 13px;
    font-weight: 400;
    color: var(--s500);
    line-height: 1.65;
}

.mod-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 2px;
    font-family: var(--f-ui);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 12px;
}

.mod-tag.tai {
    background: rgba(27, 79, 216, 0.06);
    color: var(--cobalt);
    border: 1px solid rgba(27, 79, 216, 0.15);
}

.mod-tag.tcore {
    background: rgba(10, 124, 92, 0.06);
    color: var(--emerald);
    border: 1px solid rgba(10, 124, 92, 0.15);
}

.mod-tag.trev {
    background: rgba(201, 122, 10, 0.06);
    color: var(--amber);
    border: 1px solid rgba(201, 122, 10, 0.15);
}

.mod-tag.tnew {
    background: rgba(76, 139, 245, 0.06);
    color: var(--sky);
    border: 1px solid rgba(76, 139, 245, 0.15);
}

/* --- Comparison Table (homepage) --- */
.comp-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--s300);
    margin-top: 8px;
}

table.cmp {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--f-ui);
    font-size: 13px;
}

table.cmp thead {
    background: var(--s100);
}

table.cmp th {
    padding: 14px 16px;
    text-align: center;
    font-family: var(--f-ui);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--s500);
    border-bottom: 1px solid var(--s300);
}

table.cmp th:first-child {
    text-align: left;
    min-width: 200px;
}

table.cmp th.hl {
    color: var(--cobalt);
    font-size: 12px;
    font-weight: 600;
}

table.cmp td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--s200);
    font-weight: 400;
    color: var(--s500);
}

table.cmp td:first-child {
    text-align: left;
    font-weight: 400;
    color: var(--s700);
    font-size: 13px;
}

table.cmp tbody tr:hover {
    background: var(--fog);
}

table.cmp .y {
    color: var(--emerald);
    font-size: 16px;
    font-weight: 600;
}

table.cmp .n {
    color: var(--s300);
    font-size: 16px;
}

table.cmp .p {
    color: var(--amber);
    font-size: 12px;
    font-weight: 400;
}

table.cmp .hlc {
    background: rgba(27, 79, 216, 0.02);
}

/* --- Semantic Colors --- */
.pos {
    color: var(--emerald);
}

.neg {
    color: var(--rose);
}

/* --- Responsive: Homepage extras --- */
@media (max-width: 768px) {
    .mod-grid {
        grid-template-columns: 1fr;
    }

    .rev-cols {
        grid-template-columns: 1fr !important;
    }

    .ai-grid {
        grid-template-columns: 1fr !important;
    }

    .px-kpi-strip {
        flex-direction: column;
    }
}