:root {
    --accent-blue: #5A7D6A;
    --success: #5A7D6A;
    --warning: #C4893A;
    --gray-50: #F7F2E8;
    --gray-100: #EDE6D6;
    --gray-200: #DDD4C4;
    --gray-300: #C9BDB0;
    --gray-400: #9A8F82;
    --gray-500: #7A6F63;
    --gray-600: #5C5348;
    --gray-700: #3D342C;
    --gray-800: #2A2118;
    --gray-900: #1E1812;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(42, 33, 24, 0.06);
    --shadow: 0 4px 16px rgba(42, 33, 24, 0.08);
    --shadow-lg: 0 12px 40px rgba(42, 33, 24, 0.1);
    --shadow-xl: 0 24px 60px rgba(42, 33, 24, 0.14);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1180px;
    --danger: #B85C38;
    --info: #5A7D6A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
    border: none; cursor: pointer; transition: all .2s ease; font-family: var(--font); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 2px 8px rgba(184, 92, 56, 0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184, 92, 56, 0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(184, 92, 56, 0.06); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-white { background: var(--white); color: var(--navy); border: 1px solid var(--gray-200); }
.btn-white:hover { background: var(--gray-50); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.logo-mark {
    width: 36px; height: 36px; background: var(--primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; fill: var(--white); }
.logo .accent { color: var(--primary); }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200); height: 72px;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--gray-600); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--navy); }

/* Hero - Petpooja-style top slider */
.hero-slider {
    padding: 100px 0 48px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 55%);
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(226, 55, 68, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-slider-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-slider-intro h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-slider-intro h1 em { font-style: normal; color: var(--primary); }

.hero-slider-tagline {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 24px;
}

.hero-slider-cta-top { margin-bottom: 8px; }

.hero-slider-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.hero-slider-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.hero-tab {
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hero-tab:hover:not(.active) {
    color: var(--navy);
    background: var(--white);
    border-color: var(--gray-200);
}

.hero-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(226, 55, 68, 0.3);
}

.hero-slider-viewport {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.hero-slides-track { position: relative; width: 100%; height: 100%; }

.hero-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 48px;
    animation: heroSlideIn 0.45s ease;
}

.hero-slide.active { display: grid; }

@keyframes heroSlideIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-slide-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-slide-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-slide-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 440px;
}

.hero-slide-visual { display: flex; justify-content: center; align-items: center; }

/* Slide mockups */
.hero-mock {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mock-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-bar.dark { background: #1a1a2e; }

.mock-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.mock-bar span:first-child { background: #FF5F57; }
.mock-bar span:nth-child(2) { background: #FFBD2E; }
.mock-bar span:nth-child(3) { background: #28CA41; }

.mock-body { padding: 16px; }

.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mock-stat {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 10px;
    text-align: center;
}

.mock-stat small { display: block; font-size: 9px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; }
.mock-stat strong { display: block; font-size: 16px; color: var(--navy); margin-top: 2px; }

.mock-list { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.mock-list-item:last-child { border-bottom: none; }
.mock-list-item em { font-style: normal; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 50px; background: rgba(5, 150, 105, 0.1); color: var(--success); }
.mock-list-item em.pending { background: rgba(217, 119, 6, 0.1); color: var(--warning); }

.mock-inv-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
}

.mock-inv-row.head { font-weight: 700; color: var(--gray-400); font-size: 10px; text-transform: uppercase; }
.mock-inv-row em { font-style: normal; font-size: 10px; font-weight: 600; }
.mock-inv-row em.ok { color: var(--success); }
.mock-inv-row em.warn { color: var(--warning); }
.mock-inv-row em.danger { color: var(--danger); }

.mock-phone {
    width: 200px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
}

.mock-phone-notch {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 10px;
}

.mock-phone-screen { background: var(--gray-50); border-radius: 16px; padding: 12px; }

.mock-order-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px;
    margin-bottom: 8px;
    font-size: 11px;
}

.mock-order-card strong { display: block; color: var(--navy); margin-bottom: 4px; }
.mock-order-card p { color: var(--gray-500); margin-bottom: 6px; }
.mock-order-card.muted { opacity: 0.75; }

.mock-badge-new, .mock-badge-live {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.mock-badge-new { background: rgba(217, 119, 6, 0.12); color: var(--warning); }
.mock-badge-live { background: rgba(5, 150, 105, 0.12); color: var(--success); }

.mock-kds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }

.mock-kot {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 11px;
}

.mock-kot small { display: block; color: var(--gray-400); font-weight: 600; }
.mock-kot strong { display: block; color: var(--navy); margin: 4px 0; }
.mock-kot em { font-style: normal; color: var(--success); font-weight: 600; font-size: 10px; }
.mock-kot.urgent { border-color: var(--warning); background: #FFFBEB; }
.mock-kot.urgent em { color: var(--warning); }

.mock-crm-msg {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 12px;
}

.mock-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mock-crm-msg strong { display: block; color: var(--navy); }
.mock-crm-msg p { color: var(--gray-500); font-size: 11px; margin-top: 2px; }

.mock-wa-pill {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius);
    text-align: center;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.hero-slider-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hero-slider-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(226, 55, 68, 0.04);
}

.hero-slider-dots { display: flex; gap: 8px; align-items: center; }

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.hero-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

.hero-trust-below {
    justify-content: center;
    margin-top: 32px;
    gap: 32px;
}

.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-500); font-weight: 500; }
.hero-trust-item svg { color: var(--success); flex-shrink: 0; }

/* Legacy static hero (kept for reference) */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(226, 55, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(226, 55, 68, 0.08); color: var(--primary);
    padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-lead { font-size: 18px; color: var(--gray-500); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-500); font-weight: 500; }
.hero-trust-item svg { color: var(--success); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-dashboard {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl); overflow: hidden;
}
.dashboard-topbar {
    background: var(--navy); padding: 12px 20px; display: flex; align-items: center; gap: 8px;
}
.dashboard-topbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.dashboard-topbar span:first-child { background: #FF5F57; }
.dashboard-topbar span:nth-child(2) { background: #FFBD2E; }
.dashboard-topbar span:nth-child(3) { background: #28CA41; }
.dashboard-body { padding: 24px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-stat { background: var(--gray-50); border-radius: var(--radius); padding: 14px; }
.dash-stat .label { font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-stat .value { font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 4px; }
.dash-stat .change { font-size: 12px; color: var(--success); font-weight: 600; }
.dashboard-orders { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.order-row:last-child { border-bottom: none; }
.order-row .status { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.status-live { background: rgba(5, 150, 105, 0.1); color: var(--success); }
.status-pending { background: rgba(217, 119, 6, 0.1); color: var(--warning); }

/* Client logos strip */
.logos-strip { padding: 32px 0; border-bottom: 1px solid var(--gray-200); background: var(--white); }
.logos-strip p { text-align: center; font-size: 13px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.logo-placeholder { font-size: 18px; font-weight: 700; color: var(--gray-300); letter-spacing: -0.02em; }

/* Trust metrics */
.trust-bar { background: var(--navy); color: var(--white); padding: 48px 0; }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item .num { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.trust-item .lbl { font-size: 14px; opacity: 0.7; margin-top: 6px; font-weight: 500; }

/* Sections */
section { padding: 88px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; color: var(--primary); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* Feature hub — interactive operations showcase */
.feat-hub {
    padding: 88px 0;
    background: linear-gradient(165deg, var(--po-espresso) 0%, var(--po-walnut) 45%, var(--po-espresso) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.feat-hub::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(226, 55, 68, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.feat-hub-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
    position: relative;
}

.feat-hub-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF8A94;
    margin-bottom: 14px;
}

.feat-hub-head-text h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--white);
}

.feat-hub-head-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
}

.feat-hub-pipeline {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.feat-pipe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.feat-pipe-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(226, 55, 68, 0.25);
}

.feat-pipe-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.feat-pipe-line {
    flex: 1;
    height: 2px;
    min-width: 20px;
    background: linear-gradient(90deg, rgba(226, 55, 68, 0.6), rgba(255, 255, 255, 0.15));
    margin: 0 6px;
    margin-bottom: 22px;
}

.feat-hub-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

.feat-hub-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px;
    background: rgba(0, 0, 0, 0.15);
}

.feat-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.feat-nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.feat-nav-item.active {
    background: rgba(226, 55, 68, 0.15);
    border-left-color: var(--primary);
}

.feat-nav-idx {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-nav-item.active .feat-nav-idx { color: var(--primary); }

.feat-nav-copy { display: flex; flex-direction: column; gap: 2px; }
.feat-nav-copy strong { font-size: 14px; font-weight: 700; color: var(--white); }
.feat-nav-copy em { font-style: normal; font-size: 12px; color: rgba(255, 255, 255, 0.45); }

.feat-hub-stage {
    position: relative;
    padding: 40px 44px;
    overflow: hidden;
}

.feat-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: featPanelIn 0.4s ease;
}

.feat-panel.active { display: grid; }

@keyframes featPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feat-panel-stat { margin-bottom: 20px; }

.feat-stat-val {
    display: block;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary);
    line-height: 1;
}

.feat-stat-lbl {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.feat-panel-copy h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--white);
}

.feat-panel-copy p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.feat-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.feat-panel-tags li {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.feat-panel-visual {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* POS visual */
.fv-pos-screen { background: #fff; border-radius: var(--radius); overflow: hidden; color: var(--navy); }
.fv-pos-bar { background: var(--pp-brand); color: #fff; padding: 8px 12px; font-size: 11px; font-weight: 700; }
.fv-pos-grid { padding: 12px; }
.fv-pos-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; border-bottom: 1px solid var(--gray-100); }
.fv-pos-item.add { color: var(--gray-400); justify-content: center; border: none; }
.fv-pos-total { padding: 10px 12px; background: #1F2937; color: #fff; display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; }
.fv-pos-actions { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; }
.fv-btn-kot, .fv-btn-bill { padding: 10px; text-align: center; font-size: 11px; font-weight: 700; }
.fv-btn-kot { background: var(--pp-brand-light); color: var(--pp-brand); }
.fv-btn-bill { background: #059669; color: #fff; }

/* Inventory visual */
.fv-inv-chart { display: flex; align-items: flex-end; gap: 12px; height: 140px; padding: 0 8px; }
.fv-inv-bar { flex: 1; height: var(--h); background: linear-gradient(180deg, #059669, #047857); border-radius: 4px 4px 0 0; position: relative; min-height: 20px; }
.fv-inv-bar.warn { background: linear-gradient(180deg, #D97706, #B45309); }
.fv-inv-bar.danger { background: linear-gradient(180deg, #DC2626, var(--primary-dark)); }
.fv-inv-bar span, .fv-inv-bar em { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); font-size: 10px; white-space: nowrap; font-style: normal; }
.fv-inv-bar span { font-weight: 700; color: rgba(255,255,255,0.9); bottom: -22px; }
.fv-inv-bar em { color: rgba(255,255,255,0.5); bottom: -36px; }
.fv-inv-alert { margin-top: 48px; padding: 10px 14px; background: rgba(217, 119, 6, 0.15); border: 1px solid rgba(217, 119, 6, 0.3); border-radius: var(--radius); font-size: 12px; font-weight: 600; color: #FCD34D; }

/* Channels visual */
.feat-visual-channels { gap: 10px; }
.fv-channel { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 700; }
.fv-channel em { font-style: normal; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 50px; background: rgba(255,255,255,0.2); }
.fv-channel.swiggy { background: #FC8019; }
.fv-channel.zomato { background: var(--po-terracotta); }
.fv-channel.qr { background: #2563EB; }
.fv-channel.direct { background: #059669; }
.fv-channel-hub { text-align: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); padding-top: 8px; letter-spacing: 0.05em; text-transform: uppercase; }

/* KDS visual */
.feat-visual-kds { gap: 10px; }
.fv-kot { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 12px 14px; font-size: 12px; }
.fv-kot small { display: block; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 4px; }
.fv-kot strong { display: block; color: var(--white); margin-bottom: 4px; }
.fv-kot em { font-style: normal; font-size: 11px; font-weight: 700; }
.fv-kot em.ok { color: #6EE7B7; }
.fv-kot em.late { color: #FCD34D; }
.fv-kot.urgent { border-color: rgba(217, 119, 6, 0.5); background: rgba(217, 119, 6, 0.1); }

/* CRM visual */
.fv-wa-bubble { padding: 10px 14px; border-radius: 12px 12px 12px 4px; font-size: 12px; line-height: 1.5; max-width: 90%; margin-bottom: 8px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.fv-wa-bubble.sent { background: #059669; border-radius: 12px 12px 4px 12px; margin-left: auto; }
.fv-crm-stat { margin-top: 12px; padding: 10px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.08); }
.fv-crm-stat span { display: block; font-size: 28px; font-weight: 800; color: var(--primary); }

/* Reports visual */
.fv-rpt-row { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 8px; padding: 10px 0; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: center; }
.fv-rpt-row.head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.4); }
.fv-rpt-row strong { font-size: 14px; font-weight: 800; color: var(--white); }
.fv-rpt-row em { font-style: normal; font-size: 11px; font-weight: 700; }
.fv-rpt-row em.up { color: #6EE7B7; }
.fv-rpt-row em.down { color: #FCA5A5; }
.fv-rpt-spark { margin-top: 16px; height: 48px; background: linear-gradient(90deg, transparent, rgba(226,55,68,0.3), rgba(226,55,68,0.6), rgba(226,55,68,0.3), transparent); border-radius: 4px; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 48'%3E%3Cpath d='M0 40 L30 28 L60 32 L90 12 L120 20 L150 8 L180 16 L200 4' fill='none' stroke='white' stroke-width='3'/%3E%3C/svg%3E"); mask-size: 100% 100%; }

/* Legacy feature grid (unused) */
.features-grid { display: none; }
.feature-card { display: none; }

/* Product suite - Rista-style tabs */
.product-suite { background: var(--gray-50); }
.suite-tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 48px; flex-wrap: wrap; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 6px; max-width: 680px; margin-left: auto; margin-right: auto; }
.suite-tab {
    padding: 10px 20px; border-radius: var(--radius); border: none; background: transparent;
    font-weight: 600; cursor: pointer; transition: all .2s; font-size: 14px; color: var(--gray-500); font-family: var(--font);
}
.suite-tab.active { background: var(--navy); color: var(--white); }
.suite-tab:hover:not(.active) { color: var(--navy); background: var(--gray-50); }
.suite-panel { display: none; }
.suite-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.suite-panel h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.02em; }
.suite-panel p { color: var(--gray-500); margin-bottom: 24px; font-size: 16px; line-height: 1.7; }
.suite-list { display: flex; flex-direction: column; gap: 12px; }
.suite-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 15px; color: var(--gray-700); }
.suite-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--success); }
.suite-visual {
    background: var(--navy); border-radius: var(--radius-xl); padding: 48px 40px;
    color: var(--white); min-height: 280px; display: flex; flex-direction: column; justify-content: center;
}
.suite-visual .big-num { font-size: 56px; font-weight: 800; color: var(--primary-light); letter-spacing: -0.03em; }
.suite-visual .big-label { font-size: 17px; opacity: 0.75; margin-top: 8px; line-height: 1.5; }

/* Integrations strip */
.integrations { background: var(--white); }
.integrations-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.integration-badge {
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 20px 12px; text-align: center; font-size: 13px; font-weight: 600; color: var(--gray-600);
    transition: all .2s;
}
.integration-badge:hover { border-color: var(--primary); color: var(--primary); background: rgba(226, 55, 68, 0.04); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-card { text-align: center; padding: 24px 16px; }
.why-card .icon-wrap {
    width: 56px; height: 56px; background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--primary);
}
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Testimonials - Rista navy section */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255, 255, 255, 0.6); }
.testimonials .section-tag { color: var(--primary-light); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-card .quote-mark { font-size: 48px; line-height: 1; color: var(--primary); opacity: 0.5; margin-bottom: 8px; font-family: Georgia, serif; }
.testimonial-card p { font-size: 15px; line-height: 1.75; opacity: 0.85; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
    width: 44px; height: 44px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.testimonial-author .name { font-weight: 600; font-size: 15px; }
.testimonial-author .role { font-size: 13px; opacity: 0.55; }

/* Pricing */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; align-items: start; }
.pricing-grid-compact .pricing-card .pricing-features { display: none; }
.pricing-yearly { font-size: 13px; color: var(--gray-500); margin: -8px 0 12px; font-weight: 600; }
.pricing-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.5; }
.pricing-compare { display: flex; flex-direction: column; gap: 12px; }
.pricing-compare-row {
    padding: 16px 20px;
    background: var(--rb-cream, #FFFBF4);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}
.pricing-compare-row strong { display: block; margin-bottom: 4px; color: var(--navy); }
.pricing-compare-row p { font-size: 14px; margin: 0; line-height: 1.6; color: var(--gray-600); }
.pricing-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
    padding: 36px 32px; position: relative; transition: all .25s;
}
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--white); font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-card .price { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin: 16px 0; }
.pricing-card .price span { font-size: 15px; font-weight: 500; color: var(--gray-400); }
.pricing-card .desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); padding: 6px 0; }
.pricing-features li svg { color: var(--success); flex-shrink: 0; }

/* CTA */
.cta-section { background: var(--primary); color: var(--white); text-align: center; padding: 80px 0; }
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.cta-section .btn-white { font-size: 16px; padding: 14px 32px; }

/* Footer */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.75; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--gray-400); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--white); }
.footer-contact { margin-top: 20px; font-size: 14px; }
.footer-contact strong { color: var(--white); display: block; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* Login / Auth */
.auth-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gray-50);
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 48px;
}

.navbar-auth {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.footer-auth {
    margin-top: auto;
}

.tenant-login-page .login-container {
    max-width: 960px;
    width: 100%;
}

.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-50); padding: 24px; }
.login-container {
    display: grid; grid-template-columns: 1fr 1fr; max-width: 960px; width: 100%;
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
}
.login-brand { background: var(--navy); color: var(--white); padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.login-brand h1 { font-size: 28px; font-weight: 800; margin: 24px 0 12px; letter-spacing: -0.02em; }
.login-brand p { opacity: 0.75; margin-bottom: 32px; font-size: 15px; line-height: 1.7; }
.login-features { display: flex; flex-direction: column; gap: 14px; }
.lf-item { display: flex; align-items: center; gap: 12px; font-size: 14px; opacity: 0.85; }
.lf-item svg { color: var(--primary-light); flex-shrink: 0; }
.login-form-wrap { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.login-form h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.login-form .subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
    font-size: 16px; font-family: var(--font); transition: border-color .2s; color: var(--gray-800); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(226, 55, 68, 0.1);
}
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    min-height: 0;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}
.form-check label {
    display: inline;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1.4;
}
.login-hint { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 16px; line-height: 1.7; }
.login-hint a { color: var(--primary); font-weight: 600; }
.back-link { text-align: center; margin-top: 16px; font-size: 14px; color: var(--gray-500); }
.back-link:hover { color: var(--primary); }
.install-box { background: var(--white); padding: 48px; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); max-width: 480px; width: 100%; margin: 24px; border: 1px solid var(--gray-200); }

.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.alert-error { background: var(--pp-brand-light); color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

.badge { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.badge-info { background: rgba(37, 99, 235, 0.1); color: var(--accent-blue); }

/* Multi-page marketing site (no tabs) */
.marketing-site { background: var(--white); }
.marketing-main { min-height: 0; }

.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.page-banner {
    padding: 120px 0 48px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-banner-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.page-banner h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-banner p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-static {
    padding: 120px 0 64px;
    background: linear-gradient(180deg, #FFF5F6 0%, var(--white) 100%);
}

.hero-static-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-static-copy h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-static-copy h1 em {
    color: var(--primary);
    font-style: normal;
}

.hero-static-tagline {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-static-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-explore {
    padding: 64px 0;
}

.home-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-explore-card {
    display: block;
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.home-explore-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.home-explore-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.home-explore-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.home-explore-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.home-explore-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

/* Features page — stacked modules */
.feat-hub-page {
    padding: 48px 0 80px;
    background: var(--navy);
}

.feat-hub-pipeline-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.feat-page-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-page-list .feat-page-item {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.feat-page-list .feat-page-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.06);
}

/* Products page — stacked sections */
.product-suite-page {
    padding: 48px 0 80px;
}

.suite-page-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.suite-page-list .suite-page-item {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
}

.integrations-page,
.why-section,
.testimonials-page,
.pricing-page {
    padding: 48px 0 80px;
}

@media (max-width: 1024px) {
    .hero-static-grid,
    .home-explore-grid { grid-template-columns: 1fr 1fr; }
    .feat-page-list .feat-page-item,
    .suite-page-list .suite-page-item { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-banner { padding-top: 100px; }
    .hero-static-grid { grid-template-columns: 1fr; }
    .hero-static-visual { display: none; }
    .home-explore-grid { grid-template-columns: 1fr; }
}

/* Super Admin login — separate from restaurant portal */
.sa-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 55%, #020617 100%);
    padding: 24px;
    font-family: 'Inter', sans-serif;
}

.sa-login-wrap {
    width: 100%;
    max-width: 420px;
}

.sa-login-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.sa-login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.sa-login-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sa-login-brand strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.sa-login-brand span {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.sa-login-card h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.sa-login-card > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sa-login-btn {
    background: #0f172a !important;
    border-color: #0f172a !important;
}

.sa-login-btn:hover {
    background: #1e293b !important;
}

.sa-login-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
}

.sa-login-note a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .feat-hub-head { grid-template-columns: 1fr; gap: 28px; }
    .feat-hub-body { grid-template-columns: 1fr; }
    .feat-hub-nav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px; gap: 4px; scrollbar-width: thin; }
    .feat-nav-item { flex-shrink: 0; min-width: 180px; border-left: none; border-bottom: 3px solid transparent; }
    .feat-nav-item.active { border-bottom-color: var(--primary); border-left-color: transparent; }
    .feat-nav-idx { display: none; }
    .feat-panel.active { grid-template-columns: 1fr; }
    .feat-panel-visual { display: none; }
    .feat-hub-pipeline { overflow-x: auto; }
    .hero-slide.active { grid-template-columns: 1fr; padding: 32px 28px; }
    .hero-slide-visual { display: none; }
    .hero-slider-intro h1 { font-size: 36px; }
    .hero-slide-content h2 { font-size: 26px; }
    .hero-slider-viewport { min-height: 280px; }
    .suite-panel.active { grid-template-columns: 1fr; }
    .features-grid, .testimonial-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-phone { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); flex-direction: column; padding: 20px 24px; gap: 16px; }
    .nav-links.open { display: flex; }
    .mobile-toggle { display: block; }
    .hero-slider { padding: 88px 0 40px; }
    .hero-slider-intro h1 { font-size: 28px; }
    .hero-slider-tagline { font-size: 15px; }
    .hero-tab { padding: 8px 14px; font-size: 12px; }
    .hero-slide.active { padding: 24px 20px; }
    .hero-slide-content h2 { font-size: 22px; }
    .hero-trust-below { flex-direction: column; align-items: center; gap: 12px; }
    .feat-hub-head-text h2 { font-size: 28px; }
    .feat-hub-stage { padding: 28px 24px; }
    .feat-stat-val { font-size: 40px; }
    .features-grid, .testimonial-grid, .why-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .login-container { grid-template-columns: 1fr; }
    .login-brand { display: none; }
    .auth-main { padding: 24px 16px 32px; }
    .section-header h2 { font-size: 28px; }
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
