@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Brand Design Variables */
:root {
    --primary: #3a356e;
    --primary-light: #4c468a;
    --primary-dark: #272250;
    --accent: #e51b23;
    --accent-hover: #c4131a;
    --accent-light: rgba(229, 27, 35, 0.1);

    /* Brochure B2B Deep Space Royal Glow Variables */
    --brochure-bg: #080710;
    --brochure-glow-indigo: #17122b;
    --brochure-card-bg: #110e20;
    --brochure-card-border: #221c3d;
    --brochure-text-mute: #8c88a5;
    --brochure-heading: #ffffff;
    --brochure-radial-glow: radial-gradient(circle at center, #1b143c 0%, #07060e 100%);

    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0b0f19;

    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(58, 53, 110, 0.08);
    --shadow-lg: 0 20px 40px rgba(58, 53, 110, 0.12);

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-alt {
    background-color: #f1f5f9;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-white);
}

.text-center {
    text-align: center;
}

/* Custom Badge & Hand-Drawn Sketch Overrides */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-sketch {
    display: inline-block;
    padding: 6px 18px !important;
    background-color: rgba(229, 27, 35, 0.05) !important;
    background-image: none !important;
    border: 1px solid rgba(229, 27, 35, 0.18) !important;
    border-radius: 100px !important;
    color: var(--accent) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 24px !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.06) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: default;
}

.badge-sketch:hover {
    background-color: rgba(229, 27, 35, 0.1) !important;
    border-color: rgba(229, 27, 35, 0.4) !important;
    box-shadow: 0 6px 16px rgba(229, 27, 35, 0.18) !important;
    transform: translateY(-2px) !important;
}

.badge-primary {
    background-color: rgba(58, 53, 110, 0.1);
    color: var(--primary);
}

.badge-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Header & Navigation - Floating Capsule Pill Redesign */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 24px 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    /* Make header pass-through so clicks are active outside capsule */
}

.header.scrolled {
    padding: 12px 0 !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px !important;
    /* Spacious horizontal padding matching screenshot */
    background: rgb(95 140 186 / 60%) !important;
    /* Highly translucent lavender-white glassmorphic background */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    /* Light border supporting glassmorphic look */
    border-radius: 16px !important;
    /* Premium rounded rectangle layout matching reference screenshot exactly */
    box-shadow: 0 10px 30px rgba(8, 7, 16, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    /* Soft realistic drop shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    /* Restore clicks inside the capsule pill navbar */
    max-width: 1140px;
    margin: 0 auto;
}

.header.scrolled .nav-container {
    padding: 8px 32px !important;
    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 12px 35px rgba(8, 7, 16, 0.12) !important;
    transform: translateY(-4px);
    /* Sleek slide shift stickiness */
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(58, 53, 110, 0.2);
}

.logo-icon .nx-text {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 2px;
}

.logo-icon .solutions-bar {
    width: 100%;
    background-color: var(--accent);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.45rem;
    text-transform: uppercase;
    text-align: center;
    padding: 2px 0;
    position: absolute;
    bottom: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: flex;
    align-items: center;
}

.logo-title .blue-part {
    color: var(--primary);
}

.logo-title .red-box {
    background-color: var(--accent);
    color: var(--text-white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    /* Premium semi-bold weight from your reference screenshot */
    font-size: 0.95rem !important;
    color: #1e1b4b !important;
    /* Premium deep navy slate color from reference screenshot */
    position: relative;
    padding: 8px 0;
    transition: var(--transition) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent) !important;
    /* Red hover accent */
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

/* Header Buttons - Hidden for minimalist capsule pill navbar */
.header .nav-actions {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(58, 53, 110, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 53, 110, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(229, 27, 35, 0.2);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 27, 35, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section (White Centered Theme) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(58, 53, 110, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 760px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}


/* Interactive Ecosystem Graphic (SVG style) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecosystem-container {
    width: 100%;
    max-width: 460px;
    height: 460px;
    position: relative;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 30%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(58, 53, 110, 0.05);
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(58, 53, 110, 0.4);
    animation: pulse-slow 3s infinite alternate;
}

.ecosystem-center .center-logo {
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1.1;
}

.ecosystem-center .center-tag {
    color: white;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Orbit Lines */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px dashed rgba(58, 53, 110, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-1 {
    width: 230px;
    height: 230px;
}

.orbit-2 {
    width: 370px;
    height: 370px;
}

/* Interactive Node Elements */
.ecosystem-node {
    position: absolute;
    width: 68px;
    height: 68px;
    background-color: var(--bg-card);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.ecosystem-node svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: var(--transition);
}

.ecosystem-node .node-label {
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-top: 4px;
    text-transform: uppercase;
}

.ecosystem-node:hover {
    transform: scale(1.15) !important;
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(229, 27, 35, 0.2);
}

.ecosystem-node:hover svg {
    fill: var(--accent);
}

/* Node Positioning & Keyframes */
.node-pos-1 {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-1 4s infinite ease-in-out;
}

/* CRM */
.node-pos-2 {
    top: 38%;
    left: 88%;
    transform: translate(-50%, -50%);
    animation: float-2 4.5s infinite ease-in-out;
}

/* POS */
.node-pos-3 {
    top: 78%;
    left: 75%;
    transform: translate(-50%, -50%);
    animation: float-3 4.2s infinite ease-in-out;
}

/* INVENTORY */
.node-pos-4 {
    top: 78%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: float-1 4.7s infinite ease-in-out;
}

/* ERP */
.node-pos-5 {
    top: 38%;
    left: 12%;
    transform: translate(-50%, -50%);
    animation: float-2 4.3s infinite ease-in-out;
}

/* PAYROLL */

.node-pos-6 {
    top: 22%;
    left: 24%;
    transform: translate(-50%, -50%);
}

/* SAAS/ONE */
.node-pos-7 {
    top: 22%;
    left: 76%;
    transform: translate(-50%, -50%);
}

/* WEBSITES/APP */

/* Ecosystem Info overlay box */
.ecosystem-info {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-card);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(58, 53, 110, 0.08);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
    text-align: center;
    z-index: 12;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Feature Showcase / Disruptive Value Prop Banner */
.disruptive-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 80px;
}

.disruptive-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(229, 27, 35, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.disruptive-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.disruptive-content h3 {
    color: var(--text-white);
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.disruptive-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.disruptive-price-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
}

.price-tag-crossed {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.price-tag-free {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.price-tag-sub {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(58, 53, 110, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
}

.feature-card:hover .feature-icon-wrapper svg {
    fill: var(--text-white);
}

.feature-card:hover .feature-link {
    color: var(--accent);
}

.feature-card:hover .feature-link svg {
    fill: var(--accent);
    transform: translateX(4px);
}

/* Category Tab Panel (Products Page) */
.tab-section {
    padding: 40px 0;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    background-color: rgba(58, 53, 110, 0.05);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content-wrapper {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fade-in 0.6s ease-in-out forwards;
}

.tab-panel.active {
    display: block;
}

/* Premium Alternating Product Detail Rows (No Cards Layout) */
.product-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.product-detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
    transition: var(--transition);
}

.product-detail-row:hover {
    /* Kept fully static, clean editorial layout */
}

.product-detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-detail-info {
    flex: 1.2;
}

.product-detail-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-image {
    max-width: 150%;
    height: auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
}

/* Minimalist Editorial Illustration Wrapper (No Container Box or Gradients) */
.product-illustration-card {
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.product-illustration-card svg {
    width: 200px;
    height: 200px;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(58, 53, 110, 0.04));
}

.product-detail-row:hover .product-illustration-card svg {
    transform: scale(1.05) translateY(-4px);
}

/* Remove gloss overlays entirely */
.product-illustration-card::after {
    display: none;
}

/* Info detail elements styles */
.product-detail-info .badge {
    margin-bottom: 12px;
}

.product-detail-info h2 {
    font-size: 2.75rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-detail-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 28px;
}

.product-detail-info .solutions-list {
    margin-bottom: 36px;
    list-style: none;
}

.product-detail-info .solutions-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.6;
}

.product-detail-info .solutions-list svg {
    width: 20px;
    height: 20px;
    fill: #22c55e;
    flex-shrink: 0;
    margin-top: 4px;
}

.product-detail-info .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Responsive adjustment for products detail list */
@media (max-width: 992px) {
    .product-detail-row {
        flex-direction: column !important;
        gap: 30px;
        padding: 50px 0;
    }

    .product-detail-row:nth-child(even) {
        flex-direction: column !important;
    }

    .product-illustration-card {
        width: auto;
        height: auto;
        min-height: 200px;
    }

    .product-illustration-card svg {
        width: 150px;
        height: 150px;
    }
}

/* Interactive Pricing Calculator */
.pricing-calculator-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(58, 53, 110, 0.08);
    padding: 48px;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.calc-inputs h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.calc-group {
    margin-bottom: 36px;
}

.calc-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.calc-value {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    font-size: 1.25rem;
}

/* Custom Range Input styling */
.range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(229, 27, 35, 0.3);
    transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Checkboxes modules selection */
.modules-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.module-checkbox-wrapper {
    position: relative;
}

.module-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.module-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--bg-main);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.module-checkbox-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background-color: white;
    transition: var(--transition);
}

.module-checkbox-wrapper input[type="checkbox"]:checked+.module-checkbox-label {
    background-color: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent-hover);
}

.module-checkbox-wrapper input[type="checkbox"]:checked+.module-checkbox-label::before {
    border-color: var(--accent);
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Calc Results Panel */
.calc-results {
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calc-results::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.results-header {
    margin-bottom: 24px;
}

.results-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.price-display-wrapper {
    margin: 20px 0;
}

.price-display {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.savings-badge {
    background-color: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.results-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-bottom: 30px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.details-row.highlight {
    font-weight: 700;
    color: white;
}

/* Solutions / Sub-industry layout */
.solutions-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.solutions-showcase:nth-child(even) {
    direction: rtl;
}

.solutions-showcase:nth-child(even) .solutions-info {
    direction: ltr;
}

.solutions-visual {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(58, 53, 110, 0.05);
    padding: 30px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.solutions-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.solutions-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.solutions-list {
    list-style: none;
    margin-bottom: 40px;
}

.solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.solutions-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Integrations Marketplace */
.search-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(58, 53, 110, 0.1);
}

.search-box svg {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-light);
}

.filter-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-pill {
    background-color: var(--bg-card);
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.integration-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integration-logo-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.integration-logo-wrapper img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.integration-logo-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.integration-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.integration-card span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.integration-card p {
    font-size: 0.825rem;
    color: var(--text-light);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(58, 53, 110, 0.1);
}

/* Contact Form Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.contact-info-wrapper p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-method-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.contact-method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-method-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Styled Form Card */
.contact-form-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(58, 53, 110, 0.08);
    padding: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(58, 53, 110, 0.1);
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-light);
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(58, 53, 110, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    fill: var(--accent);
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
    max-height: 300px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Brand Ticker Slider */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ticker {
    display: flex;
    width: 200%;
    animation: ticker-slide 30s linear infinite;
    gap: 80px;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #cbd5e1;
    font-size: 1.5rem;
    white-space: nowrap;
}

.ticker-item svg {
    width: 28px;
    height: 28px;
    fill: #cbd5e1;
}

/* Footer Section (Hero Theme) */
.footer {
    background: var(--brochure-radial-glow);
    color: #94a3b8;
    padding: 80px 0 30px 0;
    font-family: var(--font-main, sans-serif);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-logo {
    gap: 8px;
}

.footer-logo-text {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-slogan {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials .social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
}

.footer-socials .social-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.footer-socials .social-icon:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.footer-socials .social-icon:hover svg {
    fill: #07060e;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

/* Animations */
@keyframes pulse-slow {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes float-1 {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(8px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(-50%, -50%) translateX(0);
    }

    50% {
        transform: translate(-50%, -50%) translateX(-8px);
    }

    100% {
        transform: translate(-50%, -50%) translateX(0);
    }
}

@keyframes ticker-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Grid Adapters */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem !important;
    }

    .hero-grid {
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3rem !important;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .disruptive-grid {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-showcase:nth-child(even) {
        direction: ltr;
    }

    .solutions-visual {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        width: 80%;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .disruptive-banner {
        padding: 32px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modules-selector {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Vision Thought Section with Repeating Lines Background */
.vision-thought-section {
    padding: 100px 0;
    background-color: #f8fafc;
    /* Elegant repeating horizontal and vertical grid lines in #3A356E */
    background-image:
        linear-gradient(rgba(58, 53, 110, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 53, 110, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(58, 53, 110, 0.08);
    border-bottom: 1px solid rgba(58, 53, 110, 0.08);
    text-align: center;
}

/* Abstract overlay geometric diagonal line using #3A356E */
.vision-thought-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(58, 53, 110, 0.15) 30%, rgba(58, 53, 110, 0.15) 70%, transparent);
}

.vision-thought-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(58, 53, 110, 0.15) 20%, rgba(58, 53, 110, 0.15) 80%, transparent);
}

.vision-thought-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-thought-content .quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: -20px;
    font-weight: 800;
}

.thought-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.thought-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.author-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .thought-text {
        font-size: 1.35rem;
        padding: 0 16px;
    }
}

/* Hero Dashboard Image Preview Styling */
.hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    background: transparent;
    /* No background color */
    border: none;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    /* box-shadow: 0 25px 60px rgba(58, 53, 110, 0.08); */
    /* border: 1px solid rgba(58, 53, 110, 0.06); */
    transition: var(--transition);
    /* background-color: #f1f0f9; */
    /* Elegant pastel tint of the brand color #3A356E */
    padding: 16px;
    /* Beautiful container spacing around the mockup */
}

/* .hero-dashboard-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(58, 53, 110, 0.12);
    background-color: transparent !important;
} */

@media (max-width: 1024px) {
    .hero-image-wrapper {
        margin-top: 36px;
    }
}

/* ==========================================================================
   Compact Premium SaaS Product Showcase Section (Zoho Inspired Layout)
   ========================================================================== */

.saas-showcase-section {
    padding: 30px 0;
    background-color: #ffffff;
    /* Seamless transition from white hero bg */
    position: relative;
    z-index: 10;
}

.saas-showcase-container {
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.saas-showcase-apps {
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

/* Subtle line grid overlay inside the left card for high-end feel */
.card-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(58, 53, 110, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 53, 110, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center;
    pointer-events: none;
}

.card-badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(58, 53, 110, 0.06);
    border: 1px solid rgba(58, 53, 110, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 2;
}

.card-badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.card-main-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
    z-index: 2;
}

.card-main-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
    z-index: 2;
}

.card-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    z-index: 2;
}

.card-explore-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(58, 53, 110, 0.15);
    transform: translateY(-2px);
}

.btn-chevron {
    width: 12px;
    height: 12px;
}

/* Featured Apps/Products Layout */

.apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding-bottom: 4px;
    margin-bottom: 24px;
}

.apps-header-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

.apps-header-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    /* Brand blue link */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.apps-header-link:hover {
    color: var(--accent);
}

.link-chevron {
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.apps-header-link:hover .link-chevron {
    transform: translateX(3px);
}

/* Clean Product List Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}

.app-item {
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.app-item:hover {
    transform: translateY(-2px);
}

.app-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.app-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0.08;
    z-index: 1;
}

.app-icon svg {
    width: 20px;
    height: 20px;
    z-index: 2;
}

.icon-cyan::before {
    background-color: #06b6d4;
}

.icon-orange::before {
    background-color: #f97316;
}

.icon-purple::before {
    background-color: #a855f7;
}

.icon-emerald::before {
    background-color: #10b981;
}

.icon-blue::before {
    background-color: #3b82f6;
}

.icon-amber::before {
    background-color: #f59e0b;
}

.icon-rose::before {
    background-color: #f43f5e;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
    line-height: 1.2;
}

.app-desc {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-light);
}

/* Responsiveness Adaptations */
@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .saas-showcase-section {
        padding: 40px 0;
    }

    .saas-showcase-container {
        border-radius: 12px;
    }

    .saas-showcase-apps {
        padding: 24px 0;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   Why Businesses Trust NX Solutions Section Styles
   ========================================================================== */

.trust-nx-section {
    padding: 60px 0;
    background-color: #ffffff;
    /* Matches the white page background */
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
    row-gap: 18px;
}

.trust-card {
    background: #ffffff;
    /* border: 1px solid #e2e8f0; */
    border-radius: 16px;
    padding: 36px 32px;
    /* transition: var(--transition); */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(58, 53, 110, 0.15);
    box-shadow: 0 20px 40px rgba(58, 53, 110, 0.05);
} */

.trust-illustration {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

.trust-svg-icon {
    height: 100%;
    max-height: 110px;
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(58, 53, 110, 0.03));
    transition: var(--transition);
}

.trust-card:hover .trust-svg-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(58, 53, 110, 0.06));
}

.trust-card-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-card-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .trust-nx-section {
        padding: 60px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-card {
        padding: 28px 20px;
    }
}

/* ============================================================
   Zero Upfront Licensing Cost Section
   ============================================================ */
.zero-cost-section {
    background: #ffffff;
    padding: 30px 0;
    /* border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06); */
}

.zero-cost-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Left content */
.zero-cost-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(229, 27, 35, 0.08);
    border: 1px solid rgba(229, 27, 35, 0.2);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.zero-cost-hook {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.zero-cost-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.zero-cost-highlight {
    color: var(--accent);
}

.zero-cost-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.zero-cost-desc strong {
    color: var(--text-main);
    font-weight: 700;
}

.zero-cost-note {
    font-size: 0.83rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 28px;
    font-style: italic;
}

.zero-cost-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.zero-pill {
    display: inline-block;
    background: rgba(58, 53, 110, 0.06);
    border: 1px solid rgba(58, 53, 110, 0.12);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.zero-pill:hover {
    background: rgba(229, 27, 35, 0.08);
    border-color: rgba(229, 27, 35, 0.25);
    color: var(--accent);
}

.zero-cost-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(229, 27, 35, 0.25);
    transition: var(--transition);
}

.zero-cost-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 27, 35, 0.35);
}

/* Right price card */
.zero-cost-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zero-price-card {
    background: #ffffff;
    /* border: 1px solid rgba(58, 53, 110, 0.1); */
    border-radius: 24px;
    padding: 36px 32px;
    width: 100%;
    max-width: 340px;
    position: relative;
    text-align: center;
    /* box-shadow: var(--shadow-md); */
}

.zero-glow-ring {
    display: none;
}

.zero-price-was {
    margin-bottom: 16px;
}

.was-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.was-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(229, 27, 35, 0.5);
}

.zero-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 27, 35, 0.25), transparent);
    margin: 16px 0;
}

.zero-price-free {
    margin-bottom: 12px;
}

.free-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.free-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.zero-free-tag {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.zero-price-features {
    list-style: none;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zero-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.4;
}

.zero-price-features li svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: #16a34a;
}

/* Responsive */
@media (max-width: 900px) {
    .zero-cost-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .zero-cost-badge {
        justify-content: center;
    }

    .zero-cost-pills {
        justify-content: center;
    }

    .zero-cost-cta {
        justify-content: center;
    }

    .zero-cost-visual {
        order: -1;
    }

    .zero-price-card {
        max-width: 300px;
    }

    .zero-cost-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .zero-cost-section {
        padding: 60px 0;
    }

    .zero-cost-heading {
        font-size: 1.7rem;
    }

    .zero-price-card {
        padding: 28px 20px;
        max-width: 100%;
    }

    .free-amount {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Interactive Navigation Dropdown Menu Styling
   ========================================================================== */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-item .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    font-size: 0.65rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    margin-left: 2px;
}

.nav-dropdown-item:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-sm);
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    margin-top: 12px;
}

/* Arrow pointer for the dropdown menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    z-index: -1;
}

.nav-dropdown-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-heading);
    transition: all 0.2s ease;
    text-align: left;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu li a:hover {
    background-color: var(--accent-light);
    color: var(--accent);
    border-left-color: var(--accent);
    padding-left: 24px;
}

/* ==========================================================================
   Tab-nav Panel Styling
   ========================================================================== */
.tab-section {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    border-bottom: 2px solid rgba(58, 53, 110, 0.08);
    padding-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary-dark);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content-wrapper {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   Product Showcase Alternating Layout & Checked Lists
   ========================================================================== */
.product-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.product-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 48px;
    /*   */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    max-height: 2000px;
    overflow: hidden;
}

/* Hide animations for dynamic product filters */
.product-detail-row.fade-out {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

/* Alternate display layout */
.product-detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-detail-info {
    flex: 1.2;
}

.product-detail-info h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin: 10px 0 16px 0;
    font-weight: 700;
}

.product-detail-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Custom Multi-line checked list styling */
.solutions-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    text-align: left;
}

.solutions-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.solutions-list li strong {
    color: var(--primary-dark);
}

.product-detail-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

/* Glowing Glassmorphic Illustration Card */
.product-illustration-card {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.6) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-illustration-card svg {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-illustration-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(58, 53, 110, 0.12);
}

.product-illustration-card:hover svg {
    transform: scale(1.06) rotate(1.5deg);
}

/* Glow Background Effects on hover */
.product-illustration-card::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.product-illustration-card:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Scroll-Driven Interactive Floating Vector Styles
   ========================================================================== */
.product-showcase-container {
    position: relative; /* Ensure the absolute container aligns to this */
}

/* On Desktop, hide static images inside empty landing cards */
.static-product-image {
    display: none !important;
}

.floating-vector-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-vector-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 25vh;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-vector-image-wrapper {
    position: absolute;
    width: 40%;
    left: 0;
    aspect-ratio: 1.1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(130%) rotate(0deg) scale(1); /* Default ERP (right side) position */
}

.floating-vector-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(58, 53, 110, 0.15));
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Floating colored radial background glow */
.floating-vector-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(35px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.85;
}

/* ==========================================
   Product Active States: Gliding Coordinates, Glows & Tilts
   ========================================== */

/* State 1: ERP (Odd -> Right side, Cyan/Blue glow) */
.floating-vector-container.active-erp .floating-vector-image-wrapper {
    transform: translateX(130%) rotate(5deg) scale(1.05);
}
.floating-vector-container.active-erp .floating-vector-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
}

/* State 2: POS (Even -> Left side, Green glow, tilt left) */
.floating-vector-container.active-pos .floating-vector-image-wrapper {
    transform: translateX(10%) rotate(-8deg) scale(1.1);
}
.floating-vector-container.active-pos .floating-vector-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
}

/* State 3: SaaS (Odd -> Right side, Purple/Indigo glow, tilt right) */
.floating-vector-container.active-saas .floating-vector-image-wrapper {
    transform: translateX(130%) rotate(10deg) scale(1.05);
}
.floating-vector-container.active-saas .floating-vector-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
}

/* State 4: Payroll (Even -> Left side, Red glow, scale down, tilt left) */
.floating-vector-container.active-payroll .floating-vector-image-wrapper {
    transform: translateX(10%) rotate(-4deg) scale(0.95);
}
.floating-vector-container.active-payroll .floating-vector-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
}

/* State 5: Website (Odd -> Right side, Emerald glow, default scale, tilt right) */
.floating-vector-container.active-website .floating-vector-image-wrapper {
    transform: translateX(130%) rotate(8deg) scale(1);
}
.floating-vector-container.active-website .floating-vector-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
}

/* State 6: App (Even -> Left side, Blue glow, scale up, tilt left) */
.floating-vector-container.active-app .floating-vector-image-wrapper {
    transform: translateX(10%) rotate(-10deg) scale(1.15);
}
.floating-vector-container.active-app .floating-vector-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
}

/* State 7: Inventory (Odd -> Right side, Amber glow, moderate scale, neutral tilt) */
.floating-vector-container.active-inventory .floating-vector-image-wrapper {
    transform: translateX(130%) rotate(2deg) scale(1.05);
}
.floating-vector-container.active-inventory .floating-vector-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
}

/* ==========================================
   Mobile/Tablet Responsive Layout Fallback (<992px)
   ========================================== */
@media (max-width: 992px) {
    /* Hide the floating sticky container completely */
    .floating-vector-container {
        display: none !important;
    }
    
    /* Make the static illustrations inside each product card visible */
    .static-product-image {
        display: block !important;
        width: 100%;
        height: auto;
        max-width: 180px;
        max-height: 180px;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(58, 53, 110, 0.08));
    }
}

/* Single Product Reset Filter Banner */
.filter-reset-banner {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1.5px dashed var(--primary);
    border-radius: var(--border-radius-md);
    padding: 16px 28px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.filter-banner-content span {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.filter-banner-content span strong {
    color: var(--accent);
    font-weight: 700;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Grid Modifications
   ========================================================================== */
@media (max-width: 992px) {
    .product-detail-row {
        flex-direction: column !important;
        gap: 40px;
        padding: 36px;
    }

    .product-detail-info {
        max-width: 100%;
        width: 100%;
    }

    .product-detail-visual {
        max-width: 320px;
        width: 100%;
        min-width: 100%;
    }

    .product-illustration-card {
        aspect-ratio: 1.2 / 1;
        padding: 30px;
    }

    .tab-nav {
        gap: 8px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-showcase-container {
        gap: 60px;
    }

    .product-detail-info h2 {
        font-size: 1.75rem;
    }

    .filter-banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .filter-reset-banner {
        padding: 16px;
    }
}

/* ==========================================================================
   Solutions Page Styles
   ========================================================================== */

/* Sub Navigation (Sticky) */
.solutions-subnav {
    position: sticky;
    top: 72px;
    /* Below main header */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 99;
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.solutions-subnav-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    flex-wrap: wrap;
}

.solutions-subnav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(58, 53, 110, 0.05);
    transition: var(--transition);
}

.solutions-subnav-link:hover,
.solutions-subnav-link.active {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(58, 53, 110, 0.2);
}

/* Solutions Showcase Layout */
.solutions-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 20px 0;
    transition: var(--transition);
}

.solutions-showcase.reverse {
    flex-direction: row-reverse;
}

.solutions-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    position: relative;
}

.solutions-info {
    flex: 1;
}

.solutions-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.solutions-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.solutions-list {
    list-style: none;
    margin-bottom: 32px;
}

.solutions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.solutions-list li svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.solutions-list li div {
    font-size: 0.95rem;
    color: var(--text-main);
}

.solutions-list li strong {
    color: var(--primary-dark);
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {

    .solutions-showcase,
    .solutions-showcase.reverse {
        flex-direction: column;
        gap: 32px;
        padding: 24px;
    }

    .solutions-visual {
        min-height: 250px;
        width: 100%;
    }
}

/* ==========================================================================
   Home Page Redesign: Brochure B2B Deep Space Royal Glow & Petpooja Aesthetic
   ========================================================================== */

/* Dark Glowing Section Wrapper */
.section-dark-glow {
    background: var(--brochure-radial-glow);
    color: var(--brochure-text-mute);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-dark-glow h1,
.section-dark-glow h2,
.section-dark-glow h3 {
    color: var(--brochure-heading);
    font-family: var(--font-heading);
}

.section-dark-glow p {
    color: var(--brochure-text-mute);
}

/* Glassmorphic Dark Header Overlay - Disabled in favor of capsule pill floating layout */
.header-dark-overlay {
    background-color: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.header-dark-overlay .nav-link {
    color: #ffffff !important;
}

.header-dark-overlay .nav-link:hover,
.header-dark-overlay .nav-link.active {
    color: #ffffff !important;
    opacity: 0.8;
}

.header-dark-overlay .logo img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

/* Scrolled styling for dark header on home page - white background and brand primary text color */
.header-dark-overlay.scrolled .nav-container {
    background: #ffffff !important;
    border-color: rgba(58, 53, 110, 0.15) !important;
    box-shadow: 0 12px 35px rgba(8, 7, 16, 0.12) !important;
}

.header-dark-overlay.scrolled .nav-link {
    color: #3A356E !important;
}

.header-dark-overlay.scrolled .nav-link:hover,
.header-dark-overlay.scrolled .nav-link.active {
    color: var(--accent) !important;
    opacity: 1;
}

.header-dark-overlay.scrolled .logo img {
    filter: none !important;
}

/* Redesigned Hero Section */
.hero-redesign {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brochure-radial-glow);
    padding-top: 160px;
    padding-bottom: 90px;
    position: relative;
    overflow: visible;
    /* Let overlapping mockup spill smoothly into the white section without cutting off */
    text-align: center;
}

/* Glow Orb behind Hero */
.hero-redesign::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 53, 110, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-redesign .container {
    position: relative;
    z-index: 2;
}

.hero-redesign h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, #c5c1e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-redesign .hero-subtitle {
    font-size: 1.25rem;
    color: var(--brochure-text-mute);
    max-width: 740px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Highlights Bar replacing old image preview */
.hero-highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 50px auto 0 auto;
}

.hero-highlight-pill {
    background: rgba(17, 14, 32, 0.6);
    border: 1px solid var(--brochure-card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hero-highlight-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.hero-highlight-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 27, 35, 0.3);
    box-shadow: 0 12px 30px rgba(8, 7, 16, 0.5), 0 0 15px rgba(229, 27, 35, 0.05);
}

.hero-highlight-pill:hover::before {
    opacity: 1;
}

.hero-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(229, 27, 35, 0.1);
    border: 1px solid rgba(229, 27, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-highlight-icon svg {
    width: 24px;
    height: 24px;
}

.hero-highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-highlight-text p {
    font-size: 0.85rem;
    color: var(--brochure-text-mute);
    line-height: 1.4;
    margin: 0;
}

/* "What Our Solutions Can Do For You" Interactive Tab Switcher */
.solutions-tabs-section {
    background: #080710;
    border-top: 1px solid rgba(34, 28, 61, 0.3);
    border-bottom: 1px solid rgba(34, 28, 61, 0.3);
}

/* Premium Horizontal Tab Switcher Redesign */
.horizontal-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    margin-top: 30px;
}

.tab-menu.horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    max-width: fit-content;
}

.tab-menu.horizontal li {
    margin: 0;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brochure-text-mute);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    background: rgba(229, 27, 35, 0.08) !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    border: 1px solid rgba(229, 27, 35, 0.2) !important;
    box-shadow: 0 4px 15px rgba(229, 27, 35, 0.1) !important;
}

/* Centered Tab Content Panel styling */
.tab-content-panel-centered {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.tab-panel.active {
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 1;
}

.tab-panel-center-copy {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tab-panel-center-copy h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
}

.tab-panel-center-copy p {
    font-size: 1.05rem;
    color: var(--brochure-text-mute);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.tab-explore-link {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(229, 27, 35, 0.2);
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-explore-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(229, 27, 35, 0.15);
    padding-left: 4px;
    padding-right: 4px;
}

.tab-panel-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

/* 4-feature horizontal row — strict single row, all tabs match POS layout */
.tab-panel-points.horizontal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    list-style: none;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.tab-panel-points li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    text-align: center;
}

.tab-panel-points li:last-child {
    border-right: none;
}

.tab-panel-points li svg {
    color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mockup-frame-centered {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

.mockup-glow-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.mockup-frame-centered .mockup-container {
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px rgba(8, 7, 16, 0.3), 0 0 1px rgba(255, 255, 255, 0.15) !important;
    z-index: 2;
}

/* PURE CSS MOCKUPS */
.mockup-container {
    background: #0d0a1a;
    border: 1px solid #221c3d;
    border-radius: 12px;
    padding: 20px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mockup-container.has-image {
    padding: 0 !important;
    background: #0b0f19 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.mockup-img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: var(--transition);
}

.mockup-container.has-image:hover .mockup-img-fit {
    transform: scale(1.03);
}

/* POS Mockup */
.pos-mockup {
    width: 100%;
    max-width: 320px;
    background: #110e20;
    border: 3px solid #2e2852;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
}

.pos-mockup-header {
    height: 8px;
    background: #2e2852;
    border-radius: 4px;
    margin-bottom: 12px;
}

.pos-mockup-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
}

.pos-mockup-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pos-item {
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    font-size: 0.65rem;
    color: #ffffff;
}

.pos-item.success {
    border-left: 2.5px solid var(--accent);
}

.pos-mockup-side {
    background: rgba(229, 27, 35, 0.08);
    border: 1px dashed rgba(229, 27, 35, 0.3);
    border-radius: 6px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    font-size: 0.6rem;
}

.pos-btn {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.55rem;
    font-weight: 700;
    cursor: default;
}

/* Payroll Mockup */
.payroll-mockup {
    width: 100%;
    max-width: 340px;
    background: #110e20;
    border: 1px solid #221c3d;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.payroll-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    color: #ffffff;
}

.payroll-row:last-child {
    border-bottom: none;
}

.payroll-staff {
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3a356e;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.payroll-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: bold;
}

.payroll-badge.morning {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.payroll-badge.evening {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* Chain Control Mockup */
.chain-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.chain-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #110e20;
    border: 2px solid #221c3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: var(--brochure-text-mute);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.chain-node.center {
    width: 72px;
    height: 72px;
    border-color: var(--accent);
    background: rgba(229, 27, 35, 0.05);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(229, 27, 35, 0.15);
}

.chain-connector {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(58, 53, 110, 0.4), transparent);
    z-index: 1;
}

/* Invoice Mockup */
.invoice-mockup {
    width: 170px;
    height: 200px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 12px;
    color: #333;
}

.invoice-mockup-laser {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: scanAnimation 3s infinite ease-in-out;
}

.invoice-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 10px;
}

.invoice-line.short {
    width: 60%;
}

@keyframes scanAnimation {

    0%,
    100% {
        top: 15%;
    }

    50% {
        top: 85%;
    }
}

/* ERP Mockup */
.erp-mockup {
    width: 100%;
    max-width: 320px;
    background: #110e20;
    border: 1px solid #221c3d;
    border-radius: 8px;
    padding: 14px;
}

.erp-stat-row {
    margin-bottom: 10px;
}

.erp-stat-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.erp-stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.erp-stat-fill {
    height: 100%;
    border-radius: 3px;
}

.erp-stat-fill.red {
    background: var(--accent);
    width: 85%;
}

.erp-stat-fill.blue {
    background: #3b82f6;
    width: 60%;
}

/* "Why Businesses Trust" Bento Grid Redesign */
.bento-trust-section {
    background: #ffffff;
    padding: 80px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 27, 35, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(58, 53, 110, 0.5);
    box-shadow: 0 15px 35px rgba(8, 7, 16, 0.6);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 27, 35, 0.08);
    border: 1px solid rgba(229, 27, 35, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.bento-card-icon svg {
    width: 24px;
    height: 24px;
}

.bento-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.bento-card-content p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Bento card with vector illustration on the right */
.bento-card.bento-card-vector {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 48px 0 0 48px;
    min-height: 320px;
    overflow: hidden;
    gap: 0;
}

.bento-card-vector-content {
    flex: 1;
    max-width: 52%;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card-vector-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.25;
}

.bento-card-vector-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 380px;
}

.bento-card-vector-img {
    flex-shrink: 0;
    width: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: stretch;
    overflow: visible;
}

.bento-card-vector-img img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    display: block;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 -8px 30px rgba(229, 27, 35, 0.15));
    transform: scale(1.05);
    transform-origin: bottom right;
}

/* Image Left Modifier */
.bento-card.bento-card-vector.image-left {
    flex-direction: row-reverse;
    padding: 48px 48px 0 0;
}

.bento-card.bento-card-vector.image-left .bento-card-vector-img {
    justify-content: flex-start;
}

.bento-card.bento-card-vector.image-left .bento-card-vector-img img {
    object-position: bottom left;
    transform-origin: bottom left;
}

/* Image Top Right Modifier */
.bento-card.bento-card-vector.image-top-right {
    padding: 0 0 48px 48px;
}

.bento-card.bento-card-vector.image-top-right .bento-card-vector-content {
    padding-top: 48px;
    padding-bottom: 0;
}

.bento-card.bento-card-vector.image-top-right .bento-card-vector-img {
    align-items: flex-start;
}

.bento-card.bento-card-vector.image-top-right .bento-card-vector-img img {
    object-position: top right;
    transform-origin: top right;
}

@media (max-width: 768px) {
    .bento-card.bento-card-vector {
        flex-direction: column;
        padding: 32px 32px 0 32px;
        align-items: flex-start;
        min-height: unset;
    }

    .bento-card.bento-card-vector.image-left {
        flex-direction: column;
        padding: 32px 32px 0 32px;
    }

    .bento-card.bento-card-vector.image-top-right {
        padding: 32px 32px 0 32px;
        flex-direction: column;
    }

    .bento-card.bento-card-vector.image-top-right .bento-card-vector-content {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .bento-card.bento-card-vector.image-top-right .bento-card-vector-img img {
        object-position: top center;
    }

    .bento-card-vector-content {
        max-width: 100%;
        padding-bottom: 20px;
    }

    .bento-card-vector-img {
        width: 100%;
        justify-content: center;
        height: 220px;
    }

    .bento-card-vector-img img {
        max-height: 220px;
        transform: none;
        object-position: bottom center;
    }
}

/* Single-column vector cards (Cards 2 & 3) — larger, more prominent image */
.bento-card.bento-card-vector:not(.span-2) {
    padding: 40px 36px 0 36px;
    min-height: 440px;
    flex-direction: column;
}

.bento-card.bento-card-vector:not(.span-2) .bento-card-vector-content {
    max-width: 100%;
    padding-bottom: 20px;
    z-index: 2;
    justify-content: flex-start;
}

.bento-card.bento-card-vector:not(.span-2) .bento-card-vector-img {
    width: 100%;
    height: 265px;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
    left: -20px;
}

.bento-card.bento-card-vector:not(.span-2) .bento-card-vector-img img {
    max-height: 110%;
    transform: scale(1.1);
    transform-origin: bottom right;
}

/* Specific modifier to increase size of only this vector */
.bento-card.bento-card-vector.vector-scale-up .bento-card-vector-img img {
    transform: scale(1.4);
    transform-origin: bottom center;
    position: relative;
    left: -80px;
    top: 50px;
}


/* Trusted By Logo Marquee */
.trusted-marquee-section {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trusted-marquee-header {
    text-align: center;
    margin-bottom: 30px;
}

.trusted-marquee-header span {
    /* background: #111424; */
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    display: inline-block;
}

.trusted-marquee-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.trusted-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-logo-set {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Realistic CSS Placeholder Logos */
.marquee-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.3s;
    user-select: none;
}

.marquee-logo:hover {
    opacity: 1;
}

.brand-motimahal {
    color: #e3000f;
    font-family: serif;
    background: #fff;
    border: 2px solid #e3000f;
    border-radius: 40px;
    padding: 5px 24px;
    font-style: italic;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(227, 0, 15, 0.1);
}

.brand-redbucket {
    background: #e11a22;
    color: white;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    padding: 8px 12px;
    text-align: center;
    border-radius: 4px;
}

.brand-haldirams {
    background: #d41f26;
    color: white;
    font-family: serif;
    font-style: italic;
    border-radius: 40px;
    padding: 8px 24px;
    border: 2px solid #eab308;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-zepto {
    color: #8b31ff;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.brand-bira {
    color: #000;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-madras {
    color: #059669;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.brand-burgerking {
    color: #e96f1b;
    font-family: sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
}

/* Ecosystem Bento Section */
.ecosystem-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.ecosystem-header {
    margin-bottom: 60px;
}

.ecosystem-header h2 {
    font-family: var(--font-heading, sans-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 16px 0;
    line-height: 1.2;
}

.ecosystem-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.ecosystem-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.eco-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: var(--transition);
}

.eco-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.eco-span-full {
    grid-column: span 2;
}

.eco-card-content {
    padding: 40px 40px 0 40px;
    z-index: 2;
}

.eco-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    /* Handled by children */
}

.eco-span-full .eco-text-side {
    padding: 50px;
    flex: 1;
}

.eco-span-full .eco-visual-side {
    flex: 1.2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.eco-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.eco-brand-title.justify-center {
    justify-content: center;
}

.eco-mini-logo {
    height: 20px;
    width: auto;
}

.eco-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.text-center-content {
    text-align: center;
}

.eco-card-visual {
    height: 280px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 40px;
    margin-top: 20px;
}

.eco-img-float {
    max-width: 90%;
    max-height: 160%;
    object-fit: contain;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.eco-img-large {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    transform: translateY(20px) translateX(20px);
}

.eco-card:hover .eco-img-float {
    transform: translateY(-5px);
}

/* Background Soft Glows */
.bg-blue-glow {
    background: radial-gradient(circle at bottom center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.bg-purple-glow {
    background: radial-gradient(circle at bottom center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.bg-red-glow {
    background: radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
}

.bg-yellow-glow {
    background: radial-gradient(circle at bottom center, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
}

.bg-green-glow {
    background: radial-gradient(circle at bottom center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}

@media (max-width: 1024px) {
    .eco-span-full {
        grid-column: span 1;
    }

    .ecosystem-bento-grid {
        grid-template-columns: 1fr;
    }

    .eco-content-row {
        flex-direction: column;
    }

    .eco-span-full .eco-visual-side {
        height: 280px;
    }
}

/* Lead Form & Testimonials Row */
.testimonial-callback-section {
    background: #080710;
    padding: 100px 0;
    border-top: 1px solid rgba(34, 28, 61, 0.3);
}

.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Testimonials list */
.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: rgba(17, 14, 32, 0.4);
    border: 1px solid var(--brochure-card-border);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(58, 53, 110, 0.3);
    background: rgba(17, 14, 32, 0.6);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d1d5db;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2e2852;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--brochure-text-mute);
    margin: 0;
}

/* Floating Light Gray Inquiry Callback Form Card */
.callback-form-card {
    background: #f8fafc;
    /* Premium light grey card contrast */
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    color: #1e293b;
}

.callback-form-card h3 {
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.callback-form-card p {
    color: #475569;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.form-group-custom {
    margin-bottom: 18px;
}

.form-group-custom label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-custom {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    color: #0f172a;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.15);
}

/* Checkbox pills */
.product-selection-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-pill-wrapper {
    position: relative;
}

.checkbox-pill-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-pill {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-pill-wrapper input[type="checkbox"]:checked+.checkbox-pill {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(229, 27, 35, 0.2);
}

.submit-btn-custom {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.2);
}

.submit-btn-custom:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 27, 35, 0.3);
}

/* RESPONSIVE BREAKPOINTS FOR REDESIGN */
@media (max-width: 1024px) {
    .horizontal-tabs-container {
        padding: 0 10px;
    }

    .tab-menu.horizontal {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding: 6px 12px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        max-width: 100% !important;
    }

    .tab-menu.horizontal li {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .solutions-light-theme .tab-menu.horizontal .tab-btn {
        padding: 8px 18px !important;
        font-size: 0.88rem !important;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .callback-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-redesign h1 {
        font-size: 2.8rem;
    }

    .hero-highlights-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .metrics-trust-bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .metric-item:not(:last-child)::after {
        display: none;
    }

    .tab-content-panel-centered {
        padding: 30px 20px 25px 20px !important;
    }

    .tab-panel-center-copy h3 {
        font-size: 1.75rem !important;
    }

    .tab-panel-center-copy p {
        font-size: 0.95rem !important;
    }

    .tab-panel-points.horizontal-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
        max-width: 100% !important;
    }

    .tab-panel-points.horizontal-grid li {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        justify-content: flex-start !important;
    }

    .tab-panel-points.horizontal-grid li:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.07) !important;
    }

    .tab-panel-points.horizontal-grid li:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Solutions Section - White/Light Theme Override */
.solutions-light-theme {
    background: #ffffff !important;
    /* Force solid crisp white background */
    color: var(--text-main) !important;
    padding: 210px 0 10px 0 !important;
    /* Large padding-top to accommodate overlapping mockup half */
    border-top: none;
    border-bottom: none;
}

/* Highlights Bar Overrides inside white Solutions section */
.solutions-light-theme .hero-highlights-row {
    margin-top: 0 !important;
    margin-bottom: 60px !important;
}

.solutions-light-theme .hero-highlight-pill {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
}

.solutions-light-theme .hero-highlight-pill:hover {
    background: #ffffff !important;
    border-color: rgba(229, 27, 35, 0.25) !important;
    box-shadow: 0 10px 25px rgba(58, 53, 110, 0.05) !important;
    transform: translateY(-4px) !important;
}

.solutions-light-theme .hero-highlight-text h4 {
    color: var(--primary-dark) !important;
}

.solutions-light-theme .hero-highlight-text p {
    color: var(--text-light) !important;
}

.solutions-light-theme .hero-highlight-icon {
    background: rgba(229, 27, 35, 0.06) !important;
    border: 1px solid rgba(229, 27, 35, 0.12) !important;
    color: var(--accent) !important;
}


.solutions-light-theme h2 {
    color: var(--primary-dark) !important;
}

.solutions-light-theme p {
    color: var(--text-light) !important;
}

/* Tab button overrides in Light Theme */
.solutions-light-theme .tab-menu.horizontal {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.solutions-light-theme .tab-menu.horizontal .tab-btn {
    color: var(--text-main) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

/* Remove red underline ::after from all tab buttons in the horizontal solutions menu */
.solutions-light-theme .tab-menu.horizontal .tab-btn::after,
.solutions-light-theme .tab-menu.horizontal .tab-btn.active::after {
    display: none !important;
    width: 0 !important;
    content: none !important;
}

.solutions-light-theme .tab-menu.horizontal .tab-btn:hover {
    color: var(--accent) !important;
    background: rgba(229, 27, 35, 0.03) !important;
}

.solutions-light-theme .tab-menu.horizontal .tab-btn.active {
    background: rgba(229, 27, 35, 0.08) !important;
    color: var(--accent) !important;
    border: 1px solid rgba(229, 27, 35, 0.15) !important;
    box-shadow: 0 4px 12px rgba(229, 27, 35, 0.06) !important;
}

/* Tab content panel overrides in Light Theme */
.solutions-light-theme .tab-content-panel-centered {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

.solutions-light-theme .tab-panel-center-copy h3 {
    color: var(--primary-dark) !important;
}

.solutions-light-theme .tab-panel-center-copy p {
    color: var(--text-light) !important;
}

.solutions-light-theme .tab-panel-points li {
    color: var(--primary-dark) !important;
}

.solutions-light-theme .tab-panel-points.horizontal-grid {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

.solutions-light-theme .tab-panel-points.horizontal-grid li {
    border-right-color: rgba(0, 0, 0, 0.08) !important;
}

.solutions-light-theme .tab-panel-points.horizontal-grid li:nth-child(odd) {
    border-right-color: rgba(0, 0, 0, 0.08) !important;
}

/* Mockup containers in Light Theme - keeping screen interfaces dark-mode B2B contrast */
.solutions-light-theme .mockup-frame-centered .mockup-container {
    background: #0b0f19 !important;
    border: 1px solid #cbd5e1 !important;
}

/* ==========================================================================
   Hero Overlapping Laptop & Mobile CSS Vector Mockup Styling
   ========================================================================== */
.hero-overlapping-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto -240px auto;
    /* Deep negative margin to place bottom half in Solutions white section */
    position: relative;
    z-index: 40;
    /* Sit cleanly above white section and other elements */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Subtle glow/light effect behind the devices */
.hero-overlapping-wrapper::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 50%;
    background: radial-gradient(circle, rgba(229, 27, 35, 0.14) 0%, rgba(58, 53, 110, 0.08) 50%, transparent 80%);
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

.multi-device-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Soft realistic shadow filter for transparent background image */
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-device-mockup-img:hover {
    transform: translateY(-8px) scale(1.015);
    filter: drop-shadow(0 30px 65px rgba(0, 0, 0, 0.55));
}

/* Laptop device chassis styling */
.laptop-device {
    width: 680px;
    background: #09151f;
    border: 12px solid #1e1e24;
    /* Black screen bezel frame */
    border-bottom: 2px solid #1e1e24;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
    transition: var(--transition);
}

.laptop-screen {
    width: 100%;
    height: 360px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-radius: 2px 2px 0 0;
}

/* POS Interface Screen styling */
.pos-app-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
}

.pos-app-nav {
    height: 40px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}

.pos-app-nav .nav-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pos-app-nav .nav-brand::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.pos-app-nav .nav-support {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
}

.pos-app-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.pos-app-sidebar {
    width: 140px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    height: 24px;
    background: #f1f5f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-main);
}

.sidebar-link.active {
    background: var(--accent-light);
    color: var(--accent);
}

.pos-app-main {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
}

.pos-grid-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pos-tables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.pos-table-card {
    height: 56px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.pos-table-card.reserved {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.pos-table-card.occupied {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

.pos-table-card.printed {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}

.pos-table-card-status {
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Laptop aluminum bottom base keyboard styling */
.laptop-base {
    width: 780px;
    height: 14px;
    background: #e2e8f0;
    border-radius: 0 0 16px 16px;
    border-top: 2px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 6;
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 0 0 4px 4px;
}

/* Overlapping Phone device styling */
.phone-device {
    width: 154px;
    height: 310px;
    background: #000000;
    border: 7px solid #1e1e24;
    /* Sleek bezel */
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: -15px;
    right: 40px;
    z-index: 12;
    /* Placed exactly over keyboard */
    overflow: hidden;
    transition: var(--transition);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 14px;
    background: #1e1e24;
    border-radius: 0 0 8px 8px;
    z-index: 15;
}

.phone-app-screen {
    width: 100%;
    height: 100%;
    background: #09151f;
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    font-family: var(--font-body);
}

.phone-app-header {
    height: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
}

.phone-app-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-menu-category {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.55rem;
    color: #ffffff;
}

.phone-menu-card strong {
    color: var(--accent);
}

.phone-app-footer {
    height: 36px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

/* ==========================================================================
   Hero Mockups Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-overlapping-wrapper {
        margin: 50px auto -180px auto;
    }

    .laptop-device {
        width: 480px;
        border-width: 8px;
    }

    .laptop-screen {
        height: 250px;
    }

    .laptop-base {
        width: 540px;
        height: 10px;
    }

    .phone-device {
        display: none;
        /* Hide mobile on tablets to ensure clean spacing layout */
    }

    .pos-app-sidebar {
        width: 100px;
    }

    .pos-tables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-overlapping-wrapper {
        margin: 40px auto -100px auto;
    }

    .laptop-device {
        width: 320px;
        border-width: 6px;
    }

    .laptop-screen {
        height: 180px;
    }

    .laptop-base {
        width: 360px;
        height: 8px;
    }

    .pos-app-sidebar {
        display: none;
        /* Hide internal app sidebar on mobile screens for spacing */
    }

    .pos-tables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Main Footer Redesign
   ========================================================================== */
.nx-footer {
    background: var(--brochure-radial-glow);
    color: #e2e8f0;
    padding: 60px 0 20px;
    font-family: var(--font-body);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.nx-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 53, 110, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.nx-footer .container {
    position: relative;
    z-index: 2;
}

.nx-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.nx-footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nx-footer-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.nx-footer-contact span {
    color: #94a3b8;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f8fafc;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link svg {
    color: var(--text-light);
}

.nx-footer-socials {
    display: flex;
    gap: 12px;
}

.nx-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    transition: var(--transition);
}

.nx-footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.nx-footer-socials svg {
    width: 18px;
    height: 18px;
}

.nx-footer-separator {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.nx-footer-middle {
    text-align: center;
    padding: 10px 0;
}

.nx-footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.nx-footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nx-badge-img {
    width: 160px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 12px;
    margin: 0;
}

.nx-badge-img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Individual Badge Styling */
.nx-badge-1 {
    width: 157px;
}

.nx-badge-2 {
    width: 160px;
}

.nx-badge-3 {
    width: 155px;
}

.nx-badge-4 {
    width: 160px;
}

.nx-badge-5 {
    width: 175px;
}

.nx-badge-6 {
    width: 160px;
}

.nx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.nx-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.nx-footer-links a {
    transition: var(--transition);
}

.nx-footer-links a:hover {
    color: #ffffff;
}

.nx-footer-links .dot {
    color: #475569;
    font-size: 0.7rem;
}

.nx-scroll-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 50;
}

.nx-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nx-scroll-top:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-4px);
}

.nx-scroll-top svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .nx-footer-top {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 24px;
    }

    .nx-footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .nx-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .nx-footer-links {
        justify-content: center;
    }

    .nx-scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   Contact Overlap Form (Index Page)
   ========================================================================== */
.contact-overlap-section {
    background-color: #ffffff;
    margin-bottom: -150px;
    /* Overlaps with footer */
}

.contact-overlap-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 20;
}

.contact-text-col {
    flex: 1;
    max-width: 400px;
}

.contact-text-col h2 {
    font-size: 2.8rem;
    color: #2b2b2b;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.contact-text-col p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-col {
    flex: 1.2;
    max-width: 650px;
}

.contact-overlap-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-overlap-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-overlap-form .form-row>.form-group {
    flex: 1;
}

.contact-overlap-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-overlap-form label {
    font-size: 0.85rem;
    color: #2b2b2b;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-overlap-form input[type="text"],
.contact-overlap-form input[type="email"],
.contact-overlap-form input[type="tel"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    transition: all 0.3s;
    color: #333;
}

.contact-overlap-form input:focus {
    border-color: #3a356e;
    box-shadow: 0 0 0 2px rgba(58, 53, 110, 0.15);
}

/* Filled Value State */
.contact-overlap-form .form-group.has-value input {
    border-color: #3a356e;
}

/* Validation Error States */
.contact-overlap-form .form-group.has-error input {
    border-color: #e51b23 !important;
    background-color: rgba(229, 27, 35, 0.02);
}

.contact-overlap-form .form-group.has-error input:focus {
    box-shadow: 0 0 0 2px rgba(229, 27, 35, 0.15) !important;
}

.contact-overlap-form .error-text {
    font-size: 0.75rem;
    color: #e51b23;
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.contact-overlap-form .form-group.has-error .error-text {
    display: block;
}

.radio-group {
    margin-top: 10px;
}

.radio-group-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: block;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem !important;
    color: #666 !important;
    margin-bottom: 8px !important;
    font-weight: 400 !important;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: #3a356e;
    width: 14px;
    height: 14px;
    margin: 0;
}

/* ==========================================================================
   Solutions Showcase (Tabs)
   ========================================================================== */
.solutions-showcase-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.solutions-showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.solutions-showcase-tabs {
    display: flex;
    flex-direction: column;
}

.solution-tab {
    padding: 24px 0;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    transition: all 0.3s;
}

.solution-tab:first-child {
    border-top: 1px solid #eaeaea;
}

.solution-tab h3 {
    font-size: 1.5rem;
    color: #444;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s;
    font-family: var(--font-heading);
}

.solution-tab:hover h3 {
    color: #1a1a1a;
}

.solution-tab-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.solution-tab-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 12px 0;
    line-height: 1.6;
}

.explore-link {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.explore-link:hover {
    text-decoration: underline;
}

/* Active State */
.solution-tab.active h3 {
    color: #1a1a1a;
    font-weight: 700;
}

.solution-tab.active .solution-tab-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Visual Side */
.solutions-showcase-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    order: -1;
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-visual-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.solution-visual-item.active {
    opacity: 1;
    visibility: visible;
}

.solution-visual-item img {
    max-width: 90%;
    max-height: 130%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 992px) {
    .solutions-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-showcase-visual {
        aspect-ratio: 16/10;
        margin-top: 20px;
    }
}

.btn-submit {
    align-self: flex-start;
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: 10px;
    background-color: #c4131a;
    /* Matching the deep red button */
}

@media (max-width: 992px) {
    .contact-overlap-card {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }

    .contact-text-col {
        max-width: 100%;
    }

    .contact-form-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-overlap-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-overlap-section {
        margin-bottom: -100px;
    }
}

/* ==========================================================================
   Sleek Premium Mockup Switcher Buttons for Products Page
   ========================================================================== */
.mockup-controls {
    margin-top: 24px;
}

.mockup-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border: 1px solid rgba(58, 53, 110, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-btn:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 53, 110, 0.15);
}

.mockup-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(58, 53, 110, 0.25);
}