/* ============================================
   PROXVERA — Multi-Page Marketing Site
   Premium hospitality-grade design system
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Brand colors */
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --warm: #f97316;
    --warm-dark: #ea580c;
    --emerald: #10b981;
    --emerald-dark: #059669;
    --rose: #f43f5e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #f43f5e 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1e1b4b 40%, #312e81 100%);
    --gradient-mesh: radial-gradient(at 20% 80%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                     radial-gradient(at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                     radial-gradient(at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);

    /* Surfaces */
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-elevated: #1e293b;
    --bg-dark-card: rgba(255,255,255,0.04);
    --bg-glass: rgba(255,255,255,0.7);
    --bg-glass-dark: rgba(15,23,42,0.8);

    /* Text */
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #f8fafc;
    --text-white-muted: #94a3b8;

    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --border-dark: rgba(255,255,255,0.08);
    --border-dark-hover: rgba(255,255,255,0.15);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-2xl: 0 35px 60px -15px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
    --shadow-glow-warm: 0 0 40px rgba(249, 115, 22, 0.15);

    /* Radii */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --nav-height: 72px;
    --container: 1240px;
    --container-lg: 1400px;

    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- 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) + 20px);
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    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-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-warm {
    background: var(--gradient-warm);
    -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; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    transform: translateY(-2px);
}

.btn-warm {
    background: var(--warm);
    color: white;
    border-color: var(--warm);
}
.btn-warm:hover {
    background: var(--warm-dark);
    border-color: var(--warm-dark);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}
.btn-white:hover {
    background: var(--primary-50);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.btn-ghost { background: transparent; color: var(--text-secondary); padding: 12px 16px; border: none; }
.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-md); }

/* --- 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(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.navbar.dark-nav {
    background: transparent;
}
.navbar.dark-nav.scrolled {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    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: 10px;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
}

.logo-text {
    letter-spacing: -0.03em;
}

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

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

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

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary);
    background: var(--primary-50);
}

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

/* Dropdown menus */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.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: 10px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: all 0.15s;
}

.nav-dropdown a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.nav-dropdown a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 15px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.dark-nav .nav-toggle span { background: white; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section-lg { padding: 120px 0; }
.section-xl { padding: 140px 0; }
.section-dark { background: var(--bg-dark); }
.section-subtle { background: var(--bg-subtle); }
.section-muted { background: var(--bg-muted); }

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-dark .section-tag {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.25);
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.section-dark .section-title { color: white; }

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-dark .section-desc { color: var(--text-white-muted); }

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

.hero-home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #38bdf8 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

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

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

.metric-value {
    font-size: 42px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
}

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

.metric-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.hero-mockup-inner {
    background: var(--bg-dark-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(79, 70, 229, 0.1);
    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.06);
}

.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.06);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.mockup-screen {
    display: grid;
    grid-template-columns: 220px 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.06);
}

.ms-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.ms-brand .logo-icon { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }

.ms-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.ms-nav-item i { width: 18px; text-align: center; font-size: 13px; }
.ms-nav-item.active { background: rgba(79, 70, 229, 0.2); color: white; }

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

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

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

.mk-card-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.mk-card-value { font-size: 24px; font-weight: 800; color: white; margin-bottom: 6px; }
.mk-card-change { font-size: 11px; font-weight: 600; }
.mk-card-change.up { color: var(--emerald); }
.mk-card-change.down { color: var(--rose); }
.mk-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-top: 8px; overflow: hidden; }
.mk-bar span { display: block; height: 100%; border-radius: 4px; }

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

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

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

.mk-chart-title { font-size: 13px; font-weight: 600; color: white; }
.mk-chart-period { font-size: 11px; color: var(--text-muted); }

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

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

.mk-table-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mk-table-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.04);
    align-items: center;
}

.mk-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
}
.mk-status.green { background: rgba(16,185,129,0.15); color: #34d399; }
.mk-status.blue { background: rgba(79,70,229,0.15); color: #818cf8; }
.mk-status.yellow { background: rgba(245,158,11,0.15); color: #fbbf24; }
.mk-status.red { background: rgba(239,68,68,0.15); color: #f87171; }

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

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

.trust-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

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

.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-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    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: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s;
    white-space: nowrap;
}

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

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

.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.06);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

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

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

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.product-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 22px;
    margin-bottom: 20px;
}

.product-icon.purple { background: rgba(79,70,229,0.1); color: var(--primary); }
.product-icon.blue { background: rgba(14,165,233,0.1); color: var(--accent); }
.product-icon.orange { background: rgba(249,115,22,0.1); color: var(--warm); }
.product-icon.green { background: rgba(16,185,129,0.1); color: var(--emerald); }
.product-icon.rose { background: rgba(244,63,94,0.1); color: var(--rose); }

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.product-link i { transition: transform 0.2s; font-size: 12px; }
.product-link:hover i { transform: translateX(4px); }

/* --- 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: 16px;
    margin-top: 28px;
}

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

.feature-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--primary-50);
    color: var(--primary);
    font-size: 16px;
}

.section-dark .feature-item-icon {
    background: rgba(79,70,229,0.15);
    color: var(--primary-light);
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

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

.feature-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.section-dark .feature-item p { color: var(--text-white-muted); }

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

.section-dark .feature-visual {
    border-color: var(--border-dark);
}

.fv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}

.fv-title { font-size: 13px; font-weight: 600; color: white; }
.fv-actions { display: flex; gap: 6px; }
.fv-action { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.06); }

.fv-body {
    background: var(--bg-dark-elevated);
    padding: 20px;
}

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

.stat-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-white-muted);
    font-weight: 500;
}

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

.usp-card {
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

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

.usp-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.usp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.usp-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

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

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 900px;
}

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

.comparison-table thead th {
    background: var(--bg-subtle);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    position: sticky;
    top: 0;
}

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

.highlight-col { background: rgba(79,70,229,0.04) !important; }
.comparison-table thead .highlight-col {
    background: rgba(79,70,229,0.08) !important;
    color: var(--primary);
}

.icon-yes { color: var(--emerald); font-size: 16px; }
.icon-no { color: var(--border); font-size: 16px; }
.icon-partial { color: #f59e0b; font-size: 16px; }

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

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.3s;
}

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

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tc-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }

.tc-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.section-dark .tc-quote { color: var(--text-white-muted); }

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

.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.tc-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

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

.tc-author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

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

.pt-label { font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; }
.pt-label.active { color: var(--text); font-weight: 600; }

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16,185,129,0.1);
    color: var(--emerald);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: 0.3s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    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(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

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

.pricing-card {
    padding: 40px 32px;
    border-radius: var(--radius-2xl);
    background: var(--bg);
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

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

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

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

.pc-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pc-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.pc-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

.pc-price { margin-bottom: 32px; }
.price-amount { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; }
.price-period { font-size: 14px; color: var(--text-muted); }

.pc-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pc-features li i { color: var(--emerald); font-size: 13px; width: 18px; text-align: center; }

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 60%);
}

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

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

.cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto 32px;
}

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

/* --- Form Styles --- */
.form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 44px;
    box-shadow: var(--shadow-xl);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-card .form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}

.form-textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-muted); 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: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(79,70,229,0.4);
    z-index: 2;
}

.hub-center .logo-icon { width: 48px; height: 48px; font-size: 22px; border-radius: 14px; 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: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    color: var(--primary-light);
    font-size: 18px;
    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: 24px;
}

.comm-card {
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: all 0.3s;
}

.comm-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.comm-icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    margin: 0 auto 16px;
}

.comm-icon.whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.comm-icon.sms { background: rgba(14,165,233,0.15); color: var(--accent); }
.comm-icon.email { background: rgba(79,70,229,0.15); color: var(--primary-light); }

.comm-card h3 { font-size: 18px; color: white; margin-bottom: 8px; }
.comm-card p { font-size: 14px; color: var(--text-white-muted); line-height: 1.6; }

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79,70,229,0.2) 0%, transparent 50%);
}

.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-size: clamp(36px, 4.5vw, 56px);
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
}

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

.section-dark .check-item {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}

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

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

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

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

.roadmap-dot {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--bg);
}

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

.roadmap-dot.completed { background: var(--emerald); }
.roadmap-dot.upcoming { background: var(--bg-muted); color: var(--text-muted); border: 2px solid var(--border); }
.section-dark .roadmap-dot.upcoming { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--text-white-muted); }

.roadmap-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

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

.roadmap-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-dark .roadmap-content p { color: var(--text-white-muted); }

.roadmap-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.roadmap-badge.live { background: rgba(16,185,129,0.1); color: var(--emerald); }
.roadmap-badge.building { background: rgba(79,70,229,0.1); color: var(--primary); }
.roadmap-badge.planned { background: rgba(148,163,184,0.1); color: var(--text-muted); }

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

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

.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: white; }

.footer-links h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.footer-links a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.footer-links a:hover { color: white; }

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

.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-badges span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Scroll Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    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; }

/* --- 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 { 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(-4px); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-mockup-inner { display: none; }
    .hero-metrics { gap: 32px; flex-wrap: wrap; }
}

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

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

    .nav-links.open .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
    }

    .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, .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; }
}

/* Key Differentiator grid responsive */
@media (max-width: 1024px) {
    .diff-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .diff-grid { grid-template-columns: 1fr !important; }
}

@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; }
}

/* ============================================
   NEW HOMEPAGE SECTIONS (2026-03-11)
   ============================================ */

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

.hero-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

/* --- Property Type Grid (Who It's For) --- */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.property-card {
    padding: 36px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s;
}

.property-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.property-card .p-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    margin: 0 auto 20px;
}

.property-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.outcome-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.outcome-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.outcome-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 22px;
    margin-bottom: 20px;
}

.outcome-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.outcome-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* --- 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: 10px;
    padding: 20px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    min-width: 140px;
    text-align: center;
    transition: all 0.3s;
}

.flow-step:hover {
    background: rgba(79,70,229,0.15);
    border-color: rgba(79,70,229,0.3);
}

.flow-step i {
    font-size: 24px;
    color: var(--primary-light);
}

.flow-step span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
}

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

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

.flow-branch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

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

.flow-branch i {
    font-size: 14px;
    color: var(--primary-light);
}

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

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

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

.biz-module-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

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

.biz-module-featured {
    border-color: rgba(79,70,229,0.25);
    background: rgba(79,70,229,0.06);
}

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

.biz-icon-blue    { background: rgba(59,130,246,0.15); color: #60a5fa; }
.biz-icon-green   { background: rgba(34,197,94,0.15);  color: #4ade80; }
.biz-icon-amber   { background: rgba(234,179,8,0.15);  color: #fbbf24; }
.biz-icon-purple  { background: rgba(139,92,246,0.15);  color: #a78bfa; }
.biz-icon-red     { background: rgba(239,68,68,0.15);   color: #f87171; }
.biz-icon-teal    { background: rgba(20,184,166,0.15);  color: #2dd4bf; }
.biz-icon-indigo  { background: rgba(99,102,241,0.15);  color: #818cf8; }
.biz-icon-orange  { background: rgba(249,115,22,0.15);  color: #fb923c; }
.biz-icon-pink    { background: rgba(236,72,153,0.15);  color: #f472b6; }

.biz-module-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.biz-module-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px;
}

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

.biz-module-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.01em;
}

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

.biz-more-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.biz-more-chip:hover {
    background: rgba(79,70,229,0.12);
    border-color: rgba(79,70,229,0.3);
    color: rgba(255,255,255,0.9);
}

.biz-more-chip i {
    font-size: 13px;
    color: var(--primary-light);
}

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

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

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

.gallery-tab {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.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-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

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

.integration-count {
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
}

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

.integration-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    min-width: 160px;
}

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

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

.ic-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.ic-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    background: var(--bg-subtle);
    color: var(--text-muted);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* --- Responsive: New Sections --- */
@media (max-width: 1024px) {
    .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; }
}

@media (max-width: 768px) {
    .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: 6px; }
    .gallery-tab { padding: 8px 16px; font-size: 13px; }
    .integration-card { min-width: calc(50% - 8px); }
}
