@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes borderRotate {
    100% {
        --border-angle: 360deg;
    }
}

/* Custom Design Tokens & variables */
:root {
    --primary-navy: #091d3d;
    /*initial color 091830*/
    --primary-navy-dark: #0f1c30;
    --primary-navy-light: #2c4266;
    --primary-red: #1D4ED8;
    /* Sky Blue — replaces Red as the primary brand accent */
    --primary-red-hover: #0284C7;
    /* Sky Blue dark hover */
    --primary-amber: #F59E0B;
    /* Warm Amber — secondary accent for taglines & labels */
    --primary-amber-hover: #D97706;
    /* Amber dark hover */
    --bg-card: #FFFFFF;
    --bg-layout: #F8FAFC;
    --bg-layout-alt: #F1F5F9;
    --text-headings: #0F172A;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --border-color-dark: #334a70;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Global resets & scroll behavior */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-layout);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--text-headings);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Common Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.w-100 {
    width: 100%;
}

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

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

/* Common Button Styles */
button {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary-red {
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.btn-portal:hover {
    background-color: #FFFFFF;
    color: var(--primary-navy);
    border-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Badge Utility */
.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(245, 158, 11, 0.09);
    color: var(--primary-amber);
    border: 1.5px solid transparent;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 1.5px solid transparent;
    background: conic-gradient(from var(--border-angle),
            var(--primary-amber) 0%,
            #FBBF24 15%,
            transparent 35%,
            transparent 100%) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
}

/* Header & Navigation */
.main-header {
    background-color: var(--primary-navy);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color-dark);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(26, 44, 73, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 60px;
}

.brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo {
    height: 75px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-navy-dark);
    z-index: 1100;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header .brand-logo {
    height: 58px;
}

.close-drawer {
    color: #FFFFFF;
    font-size: 2.5rem;
    line-height: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-link:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ROS & HROS Light/Clean Mobile Drawer */
.mobile-drawer.ros-mobile-drawer,
.mobile-drawer.hros-mobile-drawer {
    background-color: #FFFFFF;
    box-shadow: -10px 0 35px rgba(0, 82, 204, 0.15);
    border-left: 1px solid #E2E8F0;
    gap: 1.5rem;
    overflow-y: auto;
}

.ros-mobile-drawer .close-drawer,
.hros-mobile-drawer .close-drawer {
    color: #0F172A;
    font-size: 2rem;
}

.ros-mobile-drawer .drawer-nav,
.hros-mobile-drawer .drawer-nav {
    gap: 0.75rem;
}

.ros-mobile-drawer .drawer-link,
.hros-mobile-drawer .drawer-link {
    color: #1E293B;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #F1F5F9;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.ros-mobile-drawer .drawer-link:hover,
.hros-mobile-drawer .drawer-link:hover {
    color: #0052CC;
    padding-left: 6px;
}

.ros-mobile-drawer .drawer-pricing-link,
.hros-mobile-drawer .drawer-pricing-link {
    color: #0052CC;
    font-weight: 700;
}

.drawer-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 0.4rem 0;
}

.drawer-back-link {
    display: block;
    font-family: var(--font-title);
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748B;
    text-align: center;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-back-link:hover {
    color: #0052CC;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-navy);
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-title .brand-word {
    color: #38BDF8;
    background: linear-gradient(135deg, #38BDF8 0%, #00B4B6 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #FFFFFF;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-diagram-wrapper {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    position: relative;
}

/* Interactive SVG Animations */
.hero-network-svg {
    width: 100%;
    height: 100%;
}

.pulse-node {
    transform-origin: 250px 250px;
    animation: pulse 4s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        r: 45px;
        stroke-width: 3px;
        filter: drop-shadow(0 0 4px rgba(14, 165, 233, 0.4));
    }

    100% {
        r: 49px;
        stroke-width: 4.5px;
        filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.85));
    }
}

/* Floating nodes animations */
.floating-node-1 {
    animation: float-1 6s infinite ease-in-out;
    transform-origin: 100px 100px;
}

.floating-node-2 {
    animation: float-2 7s infinite ease-in-out;
    transform-origin: 400px 100px;
}

.floating-node-3 {
    animation: float-3 8s infinite ease-in-out;
    transform-origin: 100px 400px;
}

.floating-node-4 {
    animation: float-4 6.5s infinite ease-in-out;
    transform-origin: 400px 400px;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -8px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-6px, 6px);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-4px, -7px);
    }
}

@keyframes float-4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(7px, -4px);
    }
}

/* Animating data packets along X axis paths */
.data-packet-1 {
    animation: slide-x1 3.5s infinite linear;
}

.data-packet-2 {
    animation: slide-x2 4s infinite linear;
}

.data-packet-3 {
    animation: slide-x3 3.8s infinite linear;
}

.data-packet-4 {
    animation: slide-x4 4.2s infinite linear;
}

@keyframes slide-x1 {
    0% {
        cx: 100;
        cy: 100;
        opacity: 1;
    }

    45% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    55% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    100% {
        cx: 400;
        cy: 400;
        opacity: 0;
    }
}

@keyframes slide-x2 {
    0% {
        cx: 400;
        cy: 100;
        opacity: 1;
    }

    45% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    55% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    100% {
        cx: 100;
        cy: 400;
        opacity: 0;
    }
}

@keyframes slide-x3 {
    0% {
        cx: 100;
        cy: 400;
        opacity: 1;
    }

    45% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    55% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    100% {
        cx: 400;
        cy: 100;
        opacity: 0;
    }
}

@keyframes slide-x4 {
    0% {
        cx: 400;
        cy: 400;
        opacity: 1;
    }

    45% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    55% {
        cx: 250;
        cy: 250;
        opacity: 1;
    }

    100% {
        cx: 100;
        cy: 100;
        opacity: 0;
    }
}

/* Logo Trust Strip */
.logo-strip {
    background-color: var(--bg-layout-alt);
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.strip-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.strip-label {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.strip-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-navy);
    opacity: 0.55;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(26, 44, 73, 0.15);
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

.partner-tag:hover {
    opacity: 0.95;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Sections Common Header */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4.5rem auto;
}

.section-tag {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary-red);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Verticals Grid Section */
.verticals-section {
    padding: 8rem 0;
    background-color: var(--bg-layout);
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.vertical-card {
    background-color: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    /* Changed to visible to prevent clipping the animated border glow */
    z-index: 1;
}

/* Conic gradient border container - triggers the rotating edge animation */
.vertical-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    background: conic-gradient(from var(--border-angle),
            #00f2fe 0%,
            /* Glowing Cyan */
            #2563eb 15%,
            /* Glowing Blue */
            #091830 30%,
            /* Fade to theme navy at 30% (~1/3rd perimeter) */
            transparent 30.1%,
            transparent 100%) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    /* Sits on top of the card edges */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    /* Hide static border on hover */
}

.vertical-card:hover::after {
    opacity: 1;
    animation: borderRotate 5s linear infinite;
    /* Slower speed of 5s */
}

.vertical-card-horizontal {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.vertical-card-horizontal .card-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vertical-card-horizontal .card-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-color);
    padding-left: 3rem;
    height: 100%;
}

.features-header-title {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.horizontal-features-list {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Highlighted middle card styled premium */
.vertical-card.highlighted-card {
    border-color: var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.vertical-card.highlighted-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.card-icon-wrapper {
    background-color: var(--bg-layout);
    width: 68px;
    height: 68px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.vertical-card:hover .card-icon-wrapper {
    background-color: rgba(9, 24, 48, 0.05);
    /* Navy hover bg instead of red */
    border-color: rgba(9, 24, 48, 0.2);
}

.vertical-card:hover .card-icon-wrapper svg {
    stroke: var(--primary-navy);
    /* Navy hover stroke instead of red */
}

.vertical-card.highlighted-card .card-icon-wrapper {
    background-color: rgba(9, 24, 48, 0.06);
    /* Theme navy instead of static dark navy */
    border-color: rgba(9, 24, 48, 0.12);
}

.vertical-card:hover .check-icon {
    color: var(--primary-navy);
    /* Hover checkmarks to theme navy instead of red */
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.card-meta {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-desc {
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.card-features li {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-headings);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.check-icon {
    color: var(--primary-red);
    flex-shrink: 0;
}

/* Engineering Strengths Section */
.strengths-section {
    padding: 8rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.strength-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-layout);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.strength-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.strength-illustration {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    padding: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.strength-card:hover .strength-illustration {
    border-color: rgba(14, 165, 233, 0.15);
}

.strength-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.strength-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* AI Scan bar animation */
.scan-bar {
    animation: scan-move 2.5s infinite alternate ease-in-out;
}

@keyframes scan-move {
    0% {
        y1: 35;
        y2: 35;
    }

    100% {
        y1: 85;
        y2: 85;
    }
}

/* About / FAQ Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-layout);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-text-content .lead-p {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-headings);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text-content p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.about-faq-container {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
}

.faq-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    color: var(--primary-navy);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-headings);
    transition: var(--transition-fast);
}

.faq-arrow {
    font-weight: 800;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, opacity 0.35s ease-out;
    opacity: 0;
}

.faq-panel p {
    padding-top: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Accordion Active States */
.faq-item.active .faq-trigger {
    color: var(--primary-navy);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-panel {
    max-height: 500px;
    opacity: 1;
}

/* Contact CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary-navy);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color-dark);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background-color: rgba(14, 165, 233, 0.06);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Modals Overlay & Layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 100%;
    max-width: 520px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2050;
    padding: 3rem 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-card {
    position: relative;
}

.modal-close {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    font-size: 2.25rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-title-text {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.modal-desc-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Form Styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-navy-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--text-headings);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy-light);
    box-shadow: 0 0 0 3px rgba(44, 66, 102, 0.15);
}

.btn-submit {
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
    transform: translateY(-1px);
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.form-success-message h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.form-success-message p {
    color: var(--text-muted);
}

/* ===== 3-PILLAR SERVICES SECTION ===== */
.services-section {
    background-color: var(--bg-layout);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 24, 48, 0.065) 0%, transparent 70%);
    pointer-events: none;
}

.services-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* --- Pillar Card --- */
.pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.4rem 2rem 2rem;
    position: relative;
    /* Transition all colour-bearing properties so the navy hover is silky */
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Navy hover: same look the old "featured" card had ── */
.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    box-shadow: 0 20px 55px rgba(9, 24, 48, 0.38);
}

/* --- Pillar Header row (number + icon) --- */
.pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pillar-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--border-color);
    letter-spacing: -2px;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-number {
    color: rgba(255, 255, 255, 0.14);
}

.pillar-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--bg-layout);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.pillar-icon-wrap svg {
    transition: stroke 0.35s ease;
}

.pillar-card:hover .pillar-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
}

.pillar-card:hover .pillar-icon-wrap svg {
    stroke: rgba(255, 255, 255, 0.88);
}

/* --- Text elements --- */
.pillar-title {
    font-family: var(--font-title);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--text-headings);
    line-height: 1.3;
    margin: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-title {
    color: #FFFFFF;
}

.pillar-tagline {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-red);
    margin: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-tagline {
    color: #FCD34D;
}

.pillar-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-main);
    margin: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-desc {
    color: rgba(255, 255, 255, 0.72);
}

/* --- Feature list --- */
.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.87rem;
    color: var(--text-main);
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-features li {
    color: rgba(255, 255, 255, 0.75);
}

.pillar-features .check-icon {
    color: var(--primary-navy);
    flex-shrink: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-features .check-icon {
    color: var(--primary-red);
}

/* --- CTA Row --- */
.pillar-cta-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    transition: border-top-color 0.35s ease;
}

.pillar-card:hover .pillar-cta-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.pillar-link {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 0.3px;
    transition: color 0.35s ease, letter-spacing 0.2s ease;
}

.pillar-card:hover .pillar-link {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.6px;
}

.pillar-btn-demo {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.3px;
    padding: 0;
    transition: color 0.35s ease, letter-spacing 0.2s ease, opacity 0.2s ease;
}

.pillar-card:hover .pillar-btn-demo {
    color: #ff6b6b;
    letter-spacing: 0.6px;
}

/* ===== CREDIBILITY / AUTHORITY STRIP ===== */
.credibility-section {
    background-color: var(--primary-navy-dark);
    border-top: 1px solid var(--border-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
    padding: 3.5rem 0;
}

.credibility-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cred-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.cred-number {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -1px;
}

.cred-plus {
    color: var(--primary-amber);
}

.cred-label {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.cred-label small {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
    letter-spacing: 0.6px;
}

.cred-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cred-quote {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.25rem;
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(0.92rem, 1.3vw, 1.08rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cred-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: 1.75rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-amber);
    opacity: 0.5;
    font-family: Georgia, serif;
    font-style: normal;
}

.cred-quote::after {
    content: '\201D';
    position: absolute;
    right: 0;
    bottom: 2.25rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-amber);
    opacity: 0.5;
    font-family: Georgia, serif;
    font-style: normal;
}

.cred-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-amber);
    margin-top: 1.5rem;
}

/* ===== FOUNDER / LEADERSHIP SECTION ===== */
.founder-section {
    padding: 8rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.founder-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: flex-start;
}

/* --- Photo side --- */
.founder-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    position: sticky;
    top: 110px;
}

.founder-photo-frame {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--border-radius-lg);
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

/* Decorative offset accent block behind photo */
.founder-photo-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    background: var(--primary-red);
    opacity: 0.12;
    z-index: 0;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.founder-cred-tag {
    font-family: var(--font-title);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-navy);
    background: var(--bg-layout);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

/* --- Bio side --- */
.founder-bio-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-name {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0.25rem 0 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.founder-bio-col .section-tag {
    color: var(--primary-red);
}

.founder-title {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-red);
    margin: 0;
    line-height: 1.5;
}

.founder-bio-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-headings);
    line-height: 1.6;
    margin: 0.5rem 0 0;
    border-left: 3px solid var(--primary-red);
    padding-left: 1.25rem;
}

.founder-bio-body {
    font-size: 0.97rem;
    color: var(--text-main);
    line-height: 1.75;
    margin: 0;
}

/* Signature + CTA row */
.founder-signature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-color);
}

.founder-sig-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-sig-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.25px;
}

.founder-sig-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-weight: 500;
}

.founder-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    background: var(--primary-navy);
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(9, 24, 48, 0.2);
    white-space: nowrap;
}

.founder-contact-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.32);
}

/* Responsive: founder section */
@media (max-width: 960px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-photo-col {
        position: static;
        flex-direction: row;
        align-items: flex-start;
    }

    .founder-photo-frame {
        width: 180px;
        height: 180px;
        flex-shrink: 0;
    }

    .founder-credentials {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .founder-photo-col {
        flex-direction: column;
        align-items: center;
    }

    .credibility-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cred-divider {
        width: 60px;
        height: 1px;
    }

    .founder-signature-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Section */
.footer-section {

    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 6rem 0 3rem 0;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 380px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-mantra {
    font-family: var(--font-title);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.footer-nav-title {
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-red);
    padding-left: 3px;
}

.footer-contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    height: 1px;
    background-color: var(--border-color-dark);
    margin-bottom: 2.5rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit {
    font-family: var(--font-title);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

/* Responsiveness adjustments (Media queries) */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

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

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

    .vertical-card-horizontal {
        grid-column: span 2;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vertical-card-horizontal .card-content-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
    }

    .vertical-card.highlighted-card {
        transform: scale(1);
    }

    .vertical-card.highlighted-card:hover {
        transform: translateY(-8px) scale(1);
    }

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

    .services-pillars {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

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

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .vertical-grid {
        grid-template-columns: 1fr;
    }

    .vertical-card-horizontal {
        grid-column: span 1;
    }

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

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .strip-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .modal {
        padding: 2.5rem 1.5rem;
        width: 90%;
    }

    .footer-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHATSAPP FLOATING ACTION BUTTON ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(11, 25, 44, 0.9);
    border: 1.5px solid rgba(0, 180, 182, 0.5);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.875rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(0, 180, 182, 0.2);
    z-index: 9000;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.whatsapp-fab svg {
    color: #00B4B6;
    transition: transform 0.25s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(0, 82, 204, 0.95);
    border-color: #00B4B6;
    box-shadow: 0 10px 32px rgba(0, 82, 204, 0.4), 0 0 20px rgba(0, 180, 182, 0.4);
    color: #FFFFFF;
}

.whatsapp-fab:hover svg {
    transform: scale(1.15);
}

.whatsapp-fab-label {
    display: inline;
}

@media (max-width: 480px) {
    .whatsapp-fab {
        padding: 0.9rem;
        border-radius: 50%;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .whatsapp-fab-label {
        display: none;
    }
}

/* ===== MODAL: DIRECT CONTACT ROW ===== */
.modal-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: var(--border-radius);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
    letter-spacing: 0.2px;
}

.modal-call-btn {
    background: var(--primary-navy);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(9, 24, 48, 0.2);
}

.modal-call-btn:hover {
    background: #0A1F3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(9, 24, 48, 0.3);
}

.modal-wa-btn {
    background: rgba(11, 25, 44, 0.92);
    border: 1.5px solid rgba(0, 180, 182, 0.45);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 180, 182, 0.2);
}

.modal-wa-btn svg {
    color: #00B4B6;
}

.modal-wa-btn:hover {
    background: #0052CC;
    border-color: #00B4B6;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 204, 0.4);
    color: #FFFFFF;
}

/* Divider between direct contact and callback form */
.modal-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    font-family: var(--font-title);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Footer phone number */
.footer-phone {
    font-weight: 600;
}

@media (max-width: 640px) {
    .modal-contact-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HOW WE WORK: PROCESS + TRANSFORMATION SECTION
   ============================================================ */
.process-section {
    padding: 8rem 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow at the top */
.process-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(14,165,233,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Section tag override for dark background */
.process-tag {
    color: var(--primary-amber) !important;
    border-color: rgba(245,158,11,0.25) !important;
    background: rgba(245,158,11,0.09) !important;
}

.process-title {
    color: #ffffff !important;
}

.process-subtitle {
    color: rgba(255,255,255,0.62) !important;
}

/* ---- Before / After Contrast Block ---- */
.transform-contrast {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    gap: 0;
    align-items: stretch;
    margin: 3.5rem 0 5rem;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.contrast-block {
    padding: 2.25rem 2rem;
}

.contrast-before {
    border-right: 1px solid rgba(255,255,255,0.07);
}

.contrast-label {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 1.25rem;
    display: block;
}

.contrast-label-bad  { color: #FCA5A5; }
.contrast-label-good { color: #6EE7B7; }

.contrast-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.contrast-list li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.68);
    padding-left: 1.6rem;
    position: relative;
    line-height: 1.55;
}

.contrast-item-bad::before {
    content: '\2715';
    position: absolute;
    left: 0;
    top: 1px;
    color: #FCA5A5;
    font-size: 0.75rem;
    font-weight: 700;
}

.contrast-item-good::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 1px;
    color: #6EE7B7;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Centre column: pulsing arrow */
.contrast-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 0.5rem;
    border-left: 1px solid rgba(255,255,255,0.07);
}

.contrast-arrow-icon {
    color: var(--primary-red);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0);    opacity: 0.65; }
    50%       { transform: translateX(5px); opacity: 1; }
}

.contrast-mid-label {
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* ---- 4-Step Process Timeline ---- */
.process-steps-wrapper {
    position: relative;
}

/* The grey "track" the animated line fills across */
.process-line-track {
    position: absolute;
    top: 2.5rem;          /* half of step-node height (5rem / 2) */
    left: 12.5%;          /* center of first column */
    right: 12.5%;         /* center of last column */
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

/* The animated fill — starts at 0 width, expands to 100% when .active added by JS */
.process-line-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-amber));
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.process-line-fill.active {
    width: 100%;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
    /* Start invisible — JS adds .process-step--visible on scroll */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered transition delays — applied by JS setTimeout instead */

.step-node {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.35s ease;
    position: relative;
}

/* Outer dashed ring decoration */
.step-node::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.08);
    transition: border-color 0.35s ease;
}

.process-step:hover .step-node {
    border-color: var(--primary-red);
    background: rgba(14,165,233,0.14);
    box-shadow: 0 0 28px rgba(14,165,233,0.25);
    transform: scale(1.1) translateY(-4px);
}

.process-step:hover .step-node::after {
    border-color: rgba(14,165,233,0.3);
}

/* Step 04: always lit as the destination */
.step-node--lit {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 32px rgba(14,165,233,0.4) !important;
}

.step-number {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.step-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.6rem;
}

.step-desc {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .transform-contrast {
        grid-template-columns: 1fr;
    }
    .contrast-before {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .contrast-mid {
        flex-direction: row;
        padding: 1.25rem 2rem;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        gap: 1rem;
    }
    .contrast-mid-label {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .contrast-arrow-icon svg {
        transform: rotate(90deg);
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
    .process-line-track {
        display: none;  /* hide line on tablet */
    }
}

@media (max-width: 560px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .process-section {
        padding: 5rem 0;
    }
}

/* ============================================================
   FOUNDER QUOTE SWEEPING UNDERLINE ACCENT
   ============================================================ */
.quote-underline-accent {
    width: 140px;
    height: 3px;
    margin: 1.5rem auto 1rem auto;
    background: linear-gradient(90deg, transparent, var(--primary-red), var(--primary-amber), transparent);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: sweepUnderline 3.5s linear infinite;
}

@keyframes sweepUnderline {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   SPECIFICATIONS LINK BUTTON IN VERTICAL CARD
   ============================================================ */
.card-action-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin-top: 1.55rem;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: fit-content;
}

.card-action-btn:hover {
    color: var(--primary-red-hover);
    transform: translateX(4px);
}

/* ============================================================
   INTERACTIVE SPECIFICATIONS MODAL (TABBED)
   ============================================================ */
.modal-wide {
    max-width: 920px !important;
}

.specs-modal-card {
    max-width: 100% !important;
    padding: 3rem !important;
}

.specs-modal-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.specs-tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1px;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.specs-tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.specs-tab-btn:hover {
    color: var(--primary-red);
}

.specs-tab-btn.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.specs-tabs-content {
    min-height: 280px;
    text-align: left;
}

.specs-tab-panel {
    display: none;
}

.specs-tab-panel.active {
    display: block;
    animation: fadeInTab 0.35s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.panel-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-features-grid li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-main);
    position: relative;
    padding-left: 1.25rem;
}

.panel-features-grid li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
    line-height: 1.2;
}

.panel-features-grid li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

@media (max-width: 680px) {
    .panel-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .specs-modal-card {
        padding: 2.25rem 1.75rem !important;
    }
}

/* ==========================================================================
   CENTROX HROS (HR OPERATING SYSTEM) — UPGRADED STYLES & FLOATING HUD
   ========================================================================== */

/* Body & General Helpers */
.hros-page-body {
    background-color: #060d17;
    color: #e2e8f0;
}

.text-green { color: #00B4B6 !important; }
.text-blue { color: #0052CC !important; }
.text-amber { color: #D97706 !important; }
.text-purple { color: #6366F1 !important; }
.text-white { color: #FFFFFF !important; }
.text-navy { color: #0B192C !important; }
.text-teal { color: #00B4B6 !important; }
.font-bold { font-weight: 700 !important; }
.text-red { color: var(--primary-red) !important; }

/* ==========================================================================
   1. PREMIUM TOP NAVBAR STYLING (HROS & ROS STANDOUT ENHANCEMENTS)
   ========================================================================== */

/* Standout Centrox ROS link on Dark Landing Page (index.html) */
.nav-link-ros-standout {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(234, 88, 12, 0.15) 100%);
    border: 1px solid rgba(245, 158, 11, 0.5) !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 999px !important;
    color: #FBBF24 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
    transition: all 0.25s ease !important;
    text-decoration: none;
}

.nav-link-ros-standout:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(234, 88, 12, 0.3) 100%);
    border-color: #F59E0B !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
    transform: translateY(-1px);
}

.drawer-link-ros-standout {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(234, 88, 12, 0.15) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #FBBF24 !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.badge-ros-glow {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    display: inline-block;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
    animation: pulseBeacon 2s infinite;
}

/* Standout Centrox HROS link on Dark Landing Page (index.html) */
.nav-link-hros-standout {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.15) 0%, rgba(0, 180, 182, 0.15) 100%);
    border: 1px solid rgba(0, 180, 182, 0.5) !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 999px !important;
    color: #38BDF8 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(0, 180, 182, 0.15);
    transition: all 0.25s ease !important;
    text-decoration: none;
}

.nav-link-hros-standout:hover {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.3) 0%, rgba(0, 180, 182, 0.3) 100%);
    border-color: #00B4B6 !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 20px rgba(0, 180, 182, 0.35);
    transform: translateY(-1px);
}

.drawer-link-hros-standout {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.15) 0%, rgba(0, 180, 182, 0.15) 100%);
    border: 1px solid rgba(0, 180, 182, 0.4) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #38BDF8 !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.badge-hros-glow {
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    display: inline-block;
    box-shadow: 0 0 8px rgba(0, 180, 182, 0.5);
    animation: pulseBeacon 2s infinite;
}

/* Light Drawer Standout Cross-Links (ros.html & hros.html) */
.ros-mobile-drawer .drawer-link-hros-standout,
.hros-mobile-drawer .drawer-link-hros-standout {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #E0F2FE !important;
    border: 1px solid #BAE6FD !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #0284C7 !important;
    font-weight: 700 !important;
    text-decoration: none;
    margin: 0.25rem 0;
}

.ros-mobile-drawer .drawer-link-hros-standout:hover,
.hros-mobile-drawer .drawer-link-hros-standout:hover {
    background: #BAE6FD !important;
    color: #0369A1 !important;
    padding-left: 1rem !important;
}

.ros-mobile-drawer .drawer-link-ros-standout,
.hros-mobile-drawer .drawer-link-ros-standout {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #FEF3C7 !important;
    border: 1px solid #FDE68A !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: #B45309 !important;
    font-weight: 700 !important;
    text-decoration: none;
    margin: 0.25rem 0;
}

.ros-mobile-drawer .drawer-link-ros-standout:hover,
.hros-mobile-drawer .drawer-link-ros-standout:hover {
    background: #FDE68A !important;
    color: #78350F !important;
    padding-left: 1rem !important;
}

.hros-nav-icon {
    font-size: 0.85rem;
    color: #00B4B6;
}

/* Light Header Navbar Links & Overrides on hros.html and ros.html */
.hros-light-header,
.hros-light-header.scrolled,
.ros-light-header,
.ros-light-header.scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.25s ease;
}

.hros-light-header .nav-link,
.ros-light-header .nav-link {
    color: #475569 !important;
    font-weight: 600;
    font-size: 0.88rem;
}

.hros-light-header .nav-link:hover,
.ros-light-header .nav-link:hover,
.hros-light-header .nav-link.active,
.ros-light-header .nav-link.active {
    color: #0F172A !important;
}

.hros-light-header .btn-portal,
.ros-light-header .btn-portal {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
    border-color: #0F172A !important;
    font-weight: 600;
}

.hros-light-header .btn-portal:hover,
.ros-light-header .btn-portal:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #FFFFFF !important;
}

/* Cross-links on light headers */
.hros-light-header .nav-link-ros-standout,
.ros-light-header .nav-link-ros-standout {
    background: #FEF3C7 !important;
    border-color: #FDE68A !important;
    color: #B45309 !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15) !important;
}

.hros-light-header .nav-link-ros-standout:hover,
.ros-light-header .nav-link-ros-standout:hover {
    background: #FDE68A !important;
    color: #78350F !important;
}

.hros-light-header .nav-link-hros-standout,
.ros-light-header .nav-link-hros-standout {
    background: #E0F2FE !important;
    border-color: #BAE6FD !important;
    color: #0284C7 !important;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15) !important;
}

.hros-light-header .nav-link-hros-standout:hover,
.ros-light-header .nav-link-hros-standout:hover {
    background: #BAE6FD !important;
    color: #0369A1 !important;
}

.hros-light-header .header-container,
.ros-light-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: height 0.25s ease;
}

.hros-light-header.scrolled .header-container,
.ros-light-header.scrolled .header-container {
    height: 70px;
}

.hros-light-header .logo-container,
.ros-light-header .logo-container {
    display: flex;
    align-items: center;
    margin-right: 2.5rem;
    flex-shrink: 0;
}

.hros-light-header .brand-logo,
.hros-light-header.scrolled .brand-logo,
.ros-light-header .brand-logo,
.ros-light-header.scrolled .brand-logo {
    height: 75px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    transition: height 0.25s ease;
}

.hros-light-header.scrolled .brand-logo,
.ros-light-header.scrolled .brand-logo {
    height: 62px !important;
}

.hros-light-header .desktop-nav,
.ros-light-header .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: nowrap;
    margin-left: auto;
}

.hros-light-header .desktop-nav .nav-link,
.hros-light-header.scrolled .desktop-nav .nav-link,
.ros-light-header .desktop-nav .nav-link,
.ros-light-header.scrolled .desktop-nav .nav-link {
    color: #0F172A !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
    padding: 0.4rem 0.6rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.hros-light-header .desktop-nav .nav-link:hover,
.hros-light-header.scrolled .desktop-nav .nav-link:hover,
.ros-light-header .desktop-nav .nav-link:hover,
.ros-light-header.scrolled .desktop-nav .nav-link:hover {
    color: #0052CC !important;
    background: #F0F9FF;
}

.hros-light-header .desktop-nav .nav-link.active,
.hros-light-header.scrolled .desktop-nav .nav-link.active,
.ros-light-header .desktop-nav .nav-link.active,
.ros-light-header.scrolled .desktop-nav .nav-link.active {
    color: #0052CC !important;
    font-weight: 700 !important;
    background: #EFF6FF;
}

.hros-light-header .nav-pricing-link,
.ros-light-header .nav-pricing-link {
    color: #0052CC !important;
    font-weight: 700 !important;
}

.hros-light-header .nav-pricing-link:hover,
.ros-light-header .nav-pricing-link:hover {
    color: #00B4B6 !important;
}

.hros-light-header .btn-portal,
.ros-light-header .btn-portal {
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #0052CC !important;
    font-size: 0.86rem !important;
    padding: 0.48rem 1.15rem !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.hros-light-header .btn-portal:hover,
.ros-light-header .btn-portal:hover {
    background: linear-gradient(135deg, #003D99 0%, #002B66 100%) !important;
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
    color: #FFFFFF !important;
}

.hros-light-header .mobile-nav-toggle .hamburger-bar,
.hros-light-header.scrolled .mobile-nav-toggle .hamburger-bar,
.ros-light-header .mobile-nav-toggle .hamburger-bar,
.ros-light-header.scrolled .mobile-nav-toggle .hamburger-bar {
    background-color: #0F172A !important;
}

/* ==========================================================================
   2. HROS LIGHT THEME CORE & HERO SECTION (POSAI COLOR PALETTE)
   ========================================================================== */

.hros-page-body.light-theme {
    background-color: #F8FAFC;
    color: #334155;
}

.hros-hero-section-light {
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
    background: radial-gradient(100% 85% at 50% 0%, #FFFFFF 0%, #F0F9FF 50%, #F8FAFC 100%);
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.hros-hero-container-light {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hros-hero-content-light {
    max-width: 860px;
    margin: 0 auto;
}

.hros-eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0052CC;
    background: #F0FDF4;
    background: linear-gradient(135deg, #F0F9FF 0%, #F0FDFA 100%);
    border: 1px solid #99F6E4;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.eyebrow-live-indicator {
    width: 7px;
    height: 7px;
    background: #00B4B6;
    border-radius: 50%;
    box-shadow: 0 0 8px #00B4B6;
    animation: pulseBeacon 1.6s infinite;
}

.hros-hero-title-light {
    font-size: 3.35rem;
    line-height: 1.16;
    color: #0B192C;
    margin-bottom: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Posai Signature Gradient: Deep Blue to Vivid Teal */
.brand-word-blue {
    color: #0052CC;
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hros-hero-subtitle-light {
    font-size: 1.12rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hros-hero-subtitle-light strong {
    color: #0F172A;
}

/* Hero Action Buttons */
.hros-hero-actions-light {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hros-btn-primary-light {
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    border: 1px solid #0052CC;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.hros-btn-primary-light:hover {
    background: linear-gradient(135deg, #003D99 0%, #002B66 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 82, 204, 0.45);
    color: #FFFFFF;
}

.hros-btn-calc-light {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #1E293B;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.hros-btn-calc-light:hover {
    background: #F8FAFC;
    border-color: #0052CC;
    color: #0052CC;
    transform: translateY(-2px);
}

/* Rotating Glowing Gradient Border Button */
.hros-btn-demo-light {
    position: relative;
    background: #FFFFFF;
    color: #0052CC;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
                conic-gradient(from var(--border-angle), #0052CC 0%, #00B4B6 25%, #38BDF8 50%, #0052CC 75%, #00B4B6 100%) border-box;
    animation: borderRotate 3s linear infinite;
    box-shadow: 0 4px 16px rgba(0, 180, 182, 0.25);
    transition: all 0.25s ease;
}

.hros-btn-demo-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 180, 182, 0.45);
    color: #003D99;
}

/* Trust Strip Light */
.hros-trust-strip-light {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.45rem;
    column-gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.trust-item-light {
    font-size: 0.84rem;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-check-green {
    color: #00B4B6;
    font-weight: 800;
}

/* ==========================================================================
   2.5 LIGHTWEIGHT COMPANION SUBDOMAIN POINTER SNIPPET
   ========================================================================== */

.hros-app-showcase-wrapper {
    margin-top: 1.35rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.subdomain-pointer-tooltip {
    position: relative;
    margin-bottom: 0.65rem;
    background: #FFFFFF;
    border: 1.5px solid transparent;
    border-radius: 50px;
    padding: 0.35rem 0.5rem 0.35rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.12), 0 0 0 1px rgba(0, 180, 182, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    z-index: 20;
    width: 470px;
    max-width: calc(100vw - 32px);
    height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* Moving gradient animated border */
.subdomain-pointer-tooltip::after {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -1.5px;
    right: -1.5px;
    bottom: -1.5px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    background: conic-gradient(
        from var(--border-angle),
        #0052CC 0%,
        #00B4B6 25%,
        #38BDF8 50%,
        #0052CC 75%,
        #00B4B6 100%
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 3.5s linear infinite;
}

.subdomain-pointer-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tooltip-body {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tooltip-sparkle {
    font-size: 0.95rem;
    flex-shrink: 0;
    animation: pulseBeacon 2s infinite;
}

.tooltip-label {
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.25s ease, max-width 0.25s ease, margin 0.25s ease;
    max-width: 220px;
    overflow: hidden;
}

/* Hide label smoothly when focused to give full room to text box */
.subdomain-pointer-tooltip.is-focused .tooltip-label {
    opacity: 0;
    max-width: 0;
    margin: 0;
    pointer-events: none;
}

.tooltip-inline-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    height: 100%;
}

.tooltip-input {
    padding: 0.35rem 0.85rem;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 50px;
    outline: none;
    flex: 1;
    min-width: 0;
    height: 34px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    text-overflow: ellipsis;
}

.tooltip-input:focus {
    background: #FFFFFF;
    border-color: #0052CC;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.15);
}

.tooltip-btn {
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0 1.1rem;
    height: 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.25);
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tooltip-btn:hover {
    background: linear-gradient(135deg, #003D99 0%, #002B66 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.35);
}

.tooltip-success-msg {
    display: none;
    font-family: var(--font-title);
    font-size: 0.82rem;
    color: #0F766E;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: fadeInTab 0.25s ease;
}

.tooltip-success-msg strong {
    color: #0052CC;
    font-family: 'JetBrains Mono', monospace;
}

.tooltip-check {
    color: #00B4B6;
    font-weight: 800;
    margin-right: 0.2rem;
}

.tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-right: 1.5px solid #00B4B6;
    border-bottom: 1.5px solid #00B4B6;
}

.subdomain-pointer-tooltip.showing-phone-step {
    width: 525px;
}

/* Step 2 Phone Input & Controls in Tooltip */
.tooltip-phone-step {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    height: 100%;
}

.phone-country-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F8FAFC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2364748B' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 8px 5px;
    padding: 0 22px 0 10px;
    font-family: 'JetBrains Mono', -apple-system, sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0F172A;
    border: 1.5px solid #CBD5E1;
    border-radius: 50px;
    height: 34px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.phone-country-select:hover {
    border-color: #0052CC;
    background-color: #FFFFFF;
}

.phone-country-select:focus {
    border-color: #0052CC;
    box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.15);
    background-color: #FFFFFF;
}

.tooltip-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 135px;
    display: flex;
    align-items: center;
    height: 100%;
}

.tooltip-input-wrapper .tooltip-phone-input {
    width: 100%;
    padding: 0.35rem 1.7rem 0.35rem 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
    font-size: 0.82rem;
    box-sizing: border-box;
}

.tooltip-clear-btn {
    position: absolute;
    right: 8px;
    background: #CBD5E1;
    border: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    color: #475569;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.tooltip-clear-btn:hover {
    background: #94A3B8;
    color: #0F172A;
}

.tooltip-phone-input.is-invalid {
    border-color: #EF4444 !important;
    background: #FEF2F2 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

.tooltip-btn-callback {
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    font-size: 0.78rem;
    padding: 0 0.95rem;
}

.tooltip-btn-callback:hover {
    background: linear-gradient(135deg, #003D99 0%, #0D9488 100%);
    transform: translateY(-1px);
}

.tooltip-skip-btn {
    background: none;
    border: none;
    color: #94A3B8;
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0.3rem;
    text-decoration: underline;
    transition: color 0.2s;
    flex-shrink: 0;
}

.tooltip-skip-btn:hover {
    color: #0F172A;
}

@media (max-width: 640px) {
    .subdomain-pointer-tooltip {
        width: 92%;
        height: auto;
        min-height: 48px;
        padding: 0.5rem 0.75rem;
    }
    .subdomain-pointer-tooltip.showing-phone-step {
        width: 95%;
    }
    .tooltip-arrow {
        display: none;
    }
    .tooltip-label {
        display: none;
    }
    .phone-country-select {
        max-width: 80px;
    }
}

/* ==========================================================================
   3. HERO APP SCREENSHOT SHOWCASE FRAME (CLEAN BROWSER WINDOW)
   ========================================================================== */

.hros-browser-frame {
    max-width: 1080px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 14px;
    box-shadow: 0 25px 65px -15px rgba(0, 82, 204, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hros-browser-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 80px -15px rgba(0, 82, 204, 0.16);
}

.browser-top-bar {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.dot-red {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF4444;
}

.dot-yellow {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F59E0B;
}

.dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00B4B6;
}

@property --beam-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes addressBarLaserBeam {
    0% {
        --beam-angle: 0deg;
    }
    100% {
        --beam-angle: 720deg; /* Exactly 2 full rotations around the box */
    }
}

@keyframes addressBarGlowPulse {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 180, 182, 0.2);
    }
    25% {
        box-shadow: 0 0 16px rgba(0, 180, 182, 0.5), 0 0 26px rgba(56, 189, 248, 0.3);
    }
    75% {
        box-shadow: 0 0 16px rgba(0, 180, 182, 0.5), 0 0 26px rgba(56, 189, 248, 0.3);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 180, 182, 0.25);
    }
}

.browser-address-bar {
    position: relative;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    padding: 0.35rem 0.95rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 60%;
    max-width: 580px;
    justify-content: center;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Shining Line Laser Beam tracing twice */
.browser-address-bar.beam-active {
    border-color: transparent !important;
    animation: addressBarGlowPulse 2.2s ease-out forwards;
}

.browser-address-bar.beam-active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    padding: 2px;
    background: conic-gradient(
        from var(--beam-angle, 0deg),
        transparent 0%,
        transparent 60%,
        #38BDF8 75%,
        #00B4B6 88%,
        #FFFFFF 95%,
        #0052CC 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: addressBarLaserBeam 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 2;
}

.browser-address-bar.slug-updated {
    border-color: #00B4B6;
    box-shadow: 0 0 12px rgba(0, 180, 182, 0.3);
}

#subdomain-slug-text {
    color: #0052CC;
    font-weight: 800;
    background: #EFF6FF;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tenant-status-pill {
    font-size: 0.62rem;
    font-weight: 700;
    color: #64748B;
    background: #F1F5F9;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    margin-left: 0.4rem;
}

.tenant-status-pill.pill-active {
    color: #0F766E;
    background: #CCFBF1;
}

.browser-meta-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: #00B4B6;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 640px) {
    .simulator-input-group {
        flex-direction: column;
    }
    .simulator-btn {
        width: 100%;
    }
    .browser-address-bar {
        width: 100%;
        font-size: 0.68rem;
    }
    .tenant-status-pill {
        display: none;
    }
}

.live-dot-green {
    width: 6px;
    height: 6px;
    background: #00B4B6;
    border-radius: 50%;
    box-shadow: 0 0 6px #00B4B6;
    animation: pulseBeacon 1.5s infinite;
}

.browser-screenshot-container {
    width: 100%;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
    container-type: inline-size;
}

/* In-Screenshot Top Navbar Company Name Overlay (Border-Free, White Background) */
.screenshot-navbar-name-overlay {
    position: absolute;
    top: 1.4%;
    left: 14.4%;
    min-height: 3.8%;
    min-width: 8.5cqw;
    background: #FFFFFF;
    color: #0F172A;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    font-size: clamp(0.55rem, 1.18cqw, 0.82rem);
    line-height: 1.25;
    padding: 0.1% 0.8% 0.1% 0.3%;
    z-index: 10;
    display: none;
    align-items: center;
    white-space: nowrap;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    box-sizing: border-box;
}

.screenshot-navbar-name-overlay.active {
    display: inline-flex;
}

/* In-Screenshot Welcome Card Company Name Overlay */
.screenshot-card-name-overlay {
    position: absolute;
    top: 18.2%;
    left: 18.2%;
    min-height: 3.2%;
    min-width: 7.5cqw;
    background: #FFFFFF;
    color: #475569;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: clamp(0.46rem, 0.95cqw, 0.68rem);
    line-height: 1.2;
    padding: 0.1% 0.6% 0.1% 0.2%;
    z-index: 10;
    display: none;
    align-items: center;
    white-space: nowrap;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    pointer-events: none;
    box-sizing: border-box;
}

.screenshot-card-name-overlay.active {
    display: inline-flex;
}

.hros-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   4. STATS BANNER (UNIFIED <300ms POSAI THEME)
   ========================================================================== */

.hros-stats-banner-light {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 2.75rem 0;
}

.stats-banner-container-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-banner-item-light {
    padding: 0 1rem;
    border-right: 1px solid #E2E8F0;
}

.stat-banner-item-light:last-child {
    border-right: none;
}

.stat-big-num-light {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: #0052CC;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

/* Unified harmonious color in <300ms */
.stat-unit-light {
    font-size: 1.35rem;
    color: #00B4B6;
    font-weight: 800;
}

.stat-label-light {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 0.2rem;
}

.stat-sub-light {
    font-size: 0.8rem;
    color: #64748B;
}

/* ==========================================================================
   5. 4-TIER MULTI-ENTITY ARCHITECTURE (LIGHT THEME)
   ========================================================================== */

.hros-arch-section-light {
    padding: 5.5rem 0;
    background: #F8FAFC;
}

.section-tag-light {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    font-weight: 700;
    color: #0052CC;
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-subtitle-light {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.hros-hierarchy-grid-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 3.5rem;
}

.hierarchy-card-light {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 1.4rem;
    position: relative;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.03);
    transition: all 0.25s ease;
}

.hierarchy-card-light:hover {
    transform: translateY(-4px);
    border-color: #00B4B6;
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.08);
}

.hierarchy-badge-light {
    position: absolute;
    top: -11px;
    left: 1.25rem;
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hierarchy-icon-light {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hierarchy-title-light {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hierarchy-desc-light {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.hierarchy-meta-light {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0052CC;
    border-top: 1px solid #F1F5F9;
    padding-top: 0.65rem;
}

.hierarchy-arrow-light {
    font-size: 1.5rem;
    color: #CBD5E1;
    font-weight: 700;
}

/* ==========================================================================
   6. LIVE INTERACTIVE TELEMETRY & KIOSK ENGINE SECTION
   ========================================================================== */

.hros-live-telemetry-section {
    padding: 5.5rem 0;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.telemetry-console-center-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.hros-console-card-light {
    width: 560px;
    max-width: 100%;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.06);
}

.console-card-header-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 1.15rem;
}

.console-title-light {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0B192C;
    letter-spacing: 0.02em;
}

.console-live-badge-light {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #00B4B6;
}

.live-pulse-green {
    width: 6px;
    height: 6px;
    background: #00B4B6;
    border-radius: 50%;
    box-shadow: 0 0 8px #00B4B6;
    animation: pulseBeacon 1.4s infinite;
}

/* KPIs Light */
.console-kpis-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.console-kpi-item-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.65rem 0.5rem;
    text-align: center;
}

.console-kpi-item-light .kpi-title-light {
    font-size: 0.66rem;
    color: #64748B;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.console-kpi-item-light .kpi-value-light {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0B192C;
}

.console-kpi-item-light .kpi-value-light small {
    font-size: 0.65rem;
    font-weight: 500;
    display: block;
}

/* Punch Stream Light */
.console-punch-section-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.85rem;
    margin-bottom: 1rem;
    height: 190px;
    box-sizing: border-box;
    overflow: hidden;
}

.punch-section-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}

.stream-title-light {
    font-size: 0.76rem;
    font-weight: 700;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stream-dot-green {
    color: #00B4B6;
}

.stream-badge-light {
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    color: #0F766E;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.64rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.punch-stream-list-light {
    height: 140px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.punch-card-light {
    height: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    margin-bottom: 0.45rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.punch-anim-enter {
    animation: slideDownFade 0.35s ease forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.punch-avatar-light {
    font-size: 1.3rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.punch-info-light {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.punch-name-light {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0B192C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.punch-name-light small {
    color: #64748B;
    font-weight: 400;
}

.punch-sub-light {
    font-size: 0.68rem;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.punch-sub-light strong {
    color: #0052CC;
}

.punch-status-tag-light {
    font-size: 0.64rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.status-ontime-light {
    background: #F0FDFA;
    color: #0F766E;
    border: 1px solid #99F6E4;
}

/* Payroll Strip Light */
.console-payroll-bar-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #F0F9FF 0%, #F0FDFA 100%);
    border: 1px solid #BAE6FD;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.payroll-bar-content-light {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    overflow: hidden;
}

.payroll-icon-light {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.payroll-title-light {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0052CC;
    white-space: nowrap;
}

.payroll-desc-light {
    font-size: 0.68rem;
    color: #475569;
    white-space: nowrap;
}

.payroll-approved-tag-light {
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    color: #0F766E;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   7. 6 CORE FEATURE PILLARS (LIGHT THEME)
   ========================================================================== */

.hros-pillars-section-light {
    padding: 5.5rem 0;
    background: #F8FAFC;
}

.hros-pillars-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.pillar-card-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2.2rem 1.85rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.03);
    transition: all 0.25s ease;
}

.pillar-card-light:hover {
    transform: translateY(-4px);
    border-color: #00B4B6;
    box-shadow: 0 16px 36px rgba(0, 82, 204, 0.08);
}

.pillar-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pillar-icon-box-light {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blue-subtle { background: rgba(0, 82, 204, 0.1); }
.bg-amber-subtle { background: rgba(0, 180, 182, 0.12); }
.bg-green-subtle { background: rgba(16, 185, 129, 0.12); }
.bg-purple-subtle { background: rgba(99, 102, 241, 0.12); }

.pillar-number-light {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: #CBD5E1;
}

.pillar-card-title-light {
    font-size: 1.2rem;
    color: #0B192C;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    font-weight: 700;
}

.pillar-card-desc-light {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.pillar-checklist-light {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.pillar-checklist-light li {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0.65rem;
    position: relative;
    padding-left: 1.2rem;
}

.pillar-checklist-light li:last-child {
    margin-bottom: 0;
}

.pillar-checklist-light li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0052CC;
    font-size: 1.1rem;
    line-height: 1;
}

.pillar-checklist-light li strong {
    color: #0B192C;
}

/* ==========================================================================
   8. HARDWARE & DEPLOYMENT HUB (LIGHT THEME)
   ========================================================================== */

.hros-hardware-section-light {
    padding: 5.5rem 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.hardware-cards-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.hw-card-light {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.hw-card-light:hover {
    transform: translateY(-4px);
    border-color: #00B4B6;
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.06);
}

.hw-icon-badge-light {
    display: inline-block;
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    color: #0F766E;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.hw-card-title-light {
    font-size: 1.2rem;
    color: #0B192C;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.hw-card-desc-light {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.hw-highlight-light {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0052CC;
    margin-bottom: 1.5rem;
}

.hw-pricing-note-light {
    margin-top: auto;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.45;
}

.hw-pricing-note-light strong {
    color: #0B192C;
}

/* ==========================================================================
   9. INTERACTIVE ROI & COST SAVINGS CALCULATOR (LIGHT THEME)
   ========================================================================== */

.hros-roi-section-light {
    padding: 5.5rem 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.roi-card-wrapper-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.05);
}

.roi-title-light {
    font-size: 2.25rem;
    color: #0B192C;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.roi-subtitle-light {
    font-size: 0.98rem;
    color: #64748B;
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.roi-grid-light {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.roi-input-group-light {
    margin-bottom: 2rem;
}

.roi-input-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.roi-input-header-light label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E293B;
}

.roi-slider-val-light {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0052CC;
    background: #F0F9FF;
    padding: 0.2rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #BAE6FD;
}

.roi-slider-light {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    outline: none;
    transition: var(--transition-fast);
}

.roi-slider-light::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.4);
    transition: transform 0.15s ease;
}

.roi-slider-light::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.roi-slider-light::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0052CC;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.4);
}

.roi-slider-limits-light {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94A3B8;
    margin-top: 0.4rem;
}

.roi-assumptions-box-light {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 1.15rem;
}

.assumption-title-light {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0052CC;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assumption-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assumption-list-light li {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.assumption-list-light li strong {
    color: #1E293B;
}

.roi-results-box-light {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.04);
}

.roi-results-header-light {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.roi-metrics-grid-light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.roi-metric-item-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.75rem;
}

.metric-title-light {
    font-size: 0.72rem;
    color: #64748B;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.metric-number-light {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 800;
}

.roi-total-savings-card-light {
    background: linear-gradient(135deg, #F0FDF4 0%, #F0FDFA 50%, #F0F9FF 100%);
    border: 1px solid #99F6E4;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.savings-label-light {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.savings-amount-light {
    font-family: var(--font-title);
    font-size: 2.3rem;
    font-weight: 800;
    color: #0F766E;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.savings-roi-badge-light {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0052CC;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}

/* ==========================================================================
   10. PRICING & PLANS (LIGHT THEME)
   ========================================================================== */

.hros-pricing-section-light {
    padding: 5.5rem 0;
    background: #FFFFFF;
}

.billing-switcher-wrapper-light {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 999px;
    padding: 0.45rem 1.15rem;
    margin-top: 1.75rem;
}

.billing-opt-light {
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: var(--transition-fast);
}

.billing-opt-light.active {
    color: #0B192C;
}

.pricing-cards-grid-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.pricing-card-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2.25rem 1.65rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.03);
    transition: all 0.25s ease;
}

.pricing-card-light:hover {
    transform: translateY(-5px);
    border-color: #00B4B6;
    box-shadow: 0 16px 36px rgba(0, 82, 204, 0.08);
}

.pricing-card-featured-light {
    border: 2px solid #0052CC;
    box-shadow: 0 16px 40px rgba(0, 82, 204, 0.12);
    transform: scale(1.03);
    z-index: 2;
    background: #FFFFFF;
}

.pricing-card-featured-light:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: #003D99;
}

.popular-ribbon-light {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0052CC 0%, #00B4B6 100%);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.22rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.3);
}

.plan-badge-tag-light {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.plan-tier-name-light {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0B192C;
    display: block;
    margin-bottom: 0.35rem;
}

.plan-target-light {
    font-size: 0.82rem;
    color: #64748B;
    margin-bottom: 1.25rem;
    min-height: 2.4rem;
    line-height: 1.45;
}

.plan-price-wrap-light {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.65rem;
}

.currency-light {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B192C;
}

.price-unit-block-light {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    color: #64748B;
    line-height: 1.2;
    margin-left: 0.25rem;
}

.price-custom-light {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0052CC;
    line-height: 1.2;
}

.plan-billing-pill-light {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #64748B;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.plan-billing-pill-light .pill-dot {
    width: 6px;
    height: 6px;
    background: #94A3B8;
    border-radius: 50%;
}

.pill-featured-light .pill-dot {
    background: #00B4B6;
}

.plan-action-light {
    margin-bottom: 1.5rem;
}

.btn-outline-plan-light {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0B192C;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-plan-light:hover {
    background: #F0F9FF;
    border-color: #0052CC;
    color: #0052CC;
}

.plan-features-divider-light {
    height: 1px;
    background: #E2E8F0;
    margin-bottom: 1.25rem;
}

.plan-features-title-light {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.plan-features-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-features-list-light li {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.plan-features-list-light li strong {
    color: #0B192C;
}

.feature-highlight-light {
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    padding: 0.4rem 0.55rem;
    border-radius: 6px;
}

/* Optional Addons Bar Light */
.hros-addons-bar-light {
    margin-top: 3.5rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.addons-title-light {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.addons-title-light strong {
    font-size: 1.05rem;
    color: #0B192C;
    display: block;
}

.addons-title-light p {
    font-size: 0.82rem;
    color: #64748B;
    margin: 0;
}

.addons-grid-light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.addon-item-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.85rem;
}

.addon-name-light {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 0.2rem;
}

.addon-price-light {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0052CC;
    margin-bottom: 0.25rem;
}

.addon-price-light small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #64748B;
}

.addon-desc-light {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.35;
}

/* ==========================================================================
   11. FEATURE COMPARISON MATRIX (LIGHT THEME)
   ========================================================================== */

.hros-comparison-section-light {
    padding: 5.5rem 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-table-wrapper-light {
    margin-top: 3.5rem;
    overflow-x: auto;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.04);
}

.comparison-table-light {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.comparison-table-light thead th {
    background: #F1F5F9;
    padding: 1.25rem 1rem;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0B192C;
    border-bottom: 2px solid #E2E8F0;
    position: sticky;
    top: 0;
}

.comparison-table-light thead th small {
    font-weight: 400;
    color: #0052CC;
}

.comparison-table-light th.feature-col-light {
    width: 46%;
    padding-left: 1.5rem;
}

.comparison-table-light th.plan-col-light {
    width: 18%;
    text-align: center;
}

.comparison-table-light th.featured-col-light {
    background: #F0FDFA;
    color: #0052CC;
    border-top: 3px solid #0052CC;
}

.table-group-header-light td {
    background: #F8FAFC;
    color: #0052CC;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.comparison-table-light tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #F1F5F9;
    color: #475569;
}

.comparison-table-light tbody tr:hover {
    background: #F8FAFC;
}

.comparison-table-light td.feature-name-light {
    padding-left: 1.5rem;
    color: #0B192C;
    font-weight: 500;
}

.comparison-table-light td.feature-check-light {
    text-align: center;
    font-weight: 600;
}

/* ==========================================================================
   12. COMPETITOR ADVANTAGE BENCHMARK (LIGHT THEME)
   ========================================================================== */

.hros-competitors-section-light {
    padding: 5.5rem 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.competitor-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.comp-card-light {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.comp-name-light {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B192C;
    margin-bottom: 0.4rem;
}

.comp-desc-light {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.comp-centrox-win-light {
    margin-top: auto;
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 0.82rem;
    color: #0F766E;
    line-height: 1.45;
}

.comp-centrox-win-light strong {
    color: #0052CC;
}

/* ==========================================================================
   13. FAQ & ACCORDION (LIGHT THEME)
   ========================================================================== */

.hros-faq-section-light {
    padding: 5.5rem 0;
    background: #F8FAFC;
}

.hros-faq-section-light .faq-container {
    max-width: 860px;
}

.faq-item-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item-light.active {
    border-color: #00B4B6;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.08);
}

.faq-trigger-light {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B192C;
    cursor: pointer;
}

.faq-trigger-light:hover {
    color: #0052CC;
}

.faq-icon-light {
    font-size: 1.3rem;
    color: #0052CC;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.faq-item-light.active .faq-icon-light {
    transform: rotate(45deg);
    color: #00B4B6;
}

.faq-answer-light {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
}

.faq-item-light.active .faq-answer-light {
    display: block;
    animation: fadeInTab 0.3s ease;
}

.faq-answer-light strong {
    color: #0B192C;
}

/* ==========================================================================
   14. FINAL CALL TO ACTION (DEEP NAVY GRADIENT & HIGH-CONTRAST TEXT)
   ========================================================================== */

.hros-final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #07152B 0%, #002B66 50%, #004D80 100%);
    border-top: 1px solid rgba(0, 180, 182, 0.3);
}

.final-cta-title {
    font-size: 2.6rem;
    color: #FFFFFF !important;
    margin-bottom: 1.15rem;
    font-weight: 800;
}

.final-cta-subtitle {
    font-size: 1.15rem !important;
    color: #E0F2FE !important;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 1 !important;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.cta-main-btn {
    padding: 0.95rem 2.25rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #00B4B6 0%, #0D9488 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 180, 182, 0.4);
    font-weight: 700;
}

.cta-main-btn:hover {
    background: linear-gradient(135deg, #0D9488 0%, #047857 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 182, 0.5);
}

.btn-wa-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(0, 180, 182, 0.4);
    color: #FFFFFF;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.95rem 1.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-wa-cta svg {
    color: #00B4B6;
    transition: transform 0.2s ease;
}

.btn-wa-cta:hover {
    background: rgba(0, 180, 182, 0.18);
    border-color: #00B4B6;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 180, 182, 0.35);
    color: #FFFFFF;
}

.btn-wa-cta:hover svg {
    transform: scale(1.1);
}

.btn-phone-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #F8FAFC;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95rem 1.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-phone-cta:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #00B4B6;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS FOR HROS
   ========================================================================== */

@media (max-width: 1100px) {
    .pricing-cards-grid-light {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-card-featured-light {
        transform: scale(1);
    }
    .pricing-card-featured-light:hover {
        transform: translateY(-5px);
    }
    .hros-pillars-grid-light,
    .hardware-cards-grid-light,
    .competitor-grid-light {
        grid-template-columns: repeat(2, 1fr);
    }
    .hros-hierarchy-grid-light {
        flex-wrap: wrap;
    }
    .hierarchy-arrow-light {
        display: none;
    }
    .hierarchy-card-light {
        flex: 1 1 calc(50% - 1rem);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 960px) {
    .hros-hero-title-light {
        font-size: 2.45rem;
    }
    .roi-grid-light {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-banner-container-light {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-banner-item-light {
        border-right: none;
    }
    .hros-addons-bar-light {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 680px) {
    .pricing-cards-grid-light {
        grid-template-columns: 1fr;
    }
    .hros-pillars-grid-light,
    .hardware-cards-grid-light,
    .competitor-grid-light {
        grid-template-columns: 1fr;
    }
    .hierarchy-card-light {
        flex: 1 1 100%;
    }
    .console-kpis-light {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-banner-container-light {
        grid-template-columns: 1fr;
    }
    .final-cta-title {
        font-size: 1.85rem;
    }
    .roi-card-wrapper-light {
        padding: 1.75rem 1.25rem;
    }
    .roi-title-light {
        font-size: 1.65rem;
    }
    .addons-grid-light {
        grid-template-columns: 1fr;
    }
    .hros-hero-actions-light {
        flex-direction: column;
        align-items: stretch;
    }
    .hros-hero-actions-light .hros-btn-primary-light,
    .hros-hero-actions-light .hros-btn-calc-light,
    .hros-hero-actions-light .hros-btn-demo-light {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hros-trust-strip-light {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }
    .browser-address-bar {
        display: none;
    }
}

/* ==========================================================================
   16. CENTROX ROS (RESTAURANT OPERATING SYSTEM) DEDICATED STYLES
   ========================================================================== */

:root {
    --ros-amber: #F59E0B;
    --ros-amber-dark: #D97706;
    --ros-amber-light: #FEF3C7;
    --ros-orange: #EA580C;
    --ros-navy: #0F172A;
    --ros-bg-light: #F8FAFC;
    --ros-border: #E2E8F0;
}

.ros-page-body {
    background-color: #F8FAFC;
    color: #1E293B;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.brand-word-amber {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pulse-amber {
    background-color: #F59E0B !important;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.ros-light-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ros-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.ros-hero-section-light {
    position: relative;
    padding: 7.5rem 0 5.5rem;
    background: radial-gradient(100% 85% at 50% 0%, #FFFFFF 0%, #FFFBEB 45%, #F8FAFC 100%);
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
}

.ros-hero-container-light {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 1280px !important;
    width: 100% !important;
}

.ros-hero-content-light {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
}

.ros-eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    color: #92400E;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
}

.ros-hero-title-light {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.ros-hero-subtitle-light {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #475569;
    max-width: 860px;
    margin: 0 auto 2.25rem;
}

.ros-hero-subtitle-light strong {
    color: #0F172A;
}

.ros-hero-actions-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.ros-btn-primary-light {
    background: linear-gradient(135deg, #EA580C 0%, #D97706 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.25s ease;
}

.ros-btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.ros-btn-calc-light {
    background: #FFFFFF;
    color: #0F172A !important;
    border: 1.5px solid #CBD5E1;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ros-btn-calc-light:hover {
    border-color: #F59E0B;
    background: #FFFBEB;
    color: #D97706 !important;
}

.ros-btn-demo-light {
    background: transparent;
    color: #0284C7;
    border: 1.5px solid #BAE6FD;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ros-btn-demo-light:hover {
    background: #F0F9FF;
    border-color: #0284C7;
}

.ros-trust-strip-light {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.1rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 1080px;
    margin: 0 auto;
}

/* ==========================================================================
   ROS REAL SCREENSHOT SHOWCASE & COMPANION TOOLTIP (FLAGSHIP TABLET FRAME)
   ========================================================================== */

.ros-app-showcase-wrapper {
    margin-top: 2.25rem;
    width: 100%;
    max-width: 1160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ros-subdomain-pointer-tooltip {
    position: relative;
    margin-bottom: 0.85rem;
    background: #FFFFFF;
    border: 1.5px solid transparent;
    border-radius: 50px;
    padding: 0.35rem 0.5rem 0.35rem 1rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    z-index: 20;
    width: 480px;
    max-width: calc(100vw - 32px);
    height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.ros-subdomain-pointer-tooltip::after {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -1.5px;
    right: -1.5px;
    bottom: -1.5px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    background: conic-gradient(
        from var(--border-angle),
        #F59E0B 0%,
        #EA580C 25%,
        #FBBF24 50%,
        #F59E0B 75%,
        #EA580C 100%
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 3.5s linear infinite;
}

.ros-subdomain-pointer-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ros-subdomain-pointer-tooltip.showing-phone-step {
    width: 535px;
}

.ros-subdomain-pointer-tooltip .tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: calc(50% - 24px);
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-right: 1.5px solid #F59E0B;
    border-bottom: 1.5px solid #F59E0B;
}

.ros-subdomain-pointer-tooltip .tooltip-btn {
    background: linear-gradient(135deg, #EA580C 0%, #D97706 100%);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.ros-subdomain-pointer-tooltip .tooltip-btn:hover {
    background: linear-gradient(135deg, #C2410C 0%, #B45309 100%);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.ros-subdomain-pointer-tooltip .tooltip-btn-callback {
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

.ros-subdomain-pointer-tooltip .tooltip-input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* Flagship Landscape Tablet Frame (Samsung / Mac Studio Tablet Style) */
.ros-tablet-frame {
    max-width: 1140px;
    width: 100%;
    background: #0B1120;
    border: 12px solid #1E293B;
    border-radius: 26px;
    box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.ros-tablet-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 45px 105px -15px rgba(245, 158, 11, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.3);
}

.tablet-top-bezel {
    height: 12px;
    background: #1E293B;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tablet-camera-lens {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #060A14;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 2px #000;
}

.ros-tablet-bar {
    background: #0F172A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ros-tablet-address-bar {
    background: #1E293B !important;
    border: 1.5px solid #334155 !important;
    color: #CBD5E1 !important;
    padding: 0.25rem 0.85rem !important;
    font-size: 0.74rem !important;
}

.ros-tablet-address-bar.slug-updated {
    border-color: #F59E0B !important;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.4) !important;
}

#ros-subdomain-slug-text {
    color: #FBBF24;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.15);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ros-screenshot-container {
    width: 100%;
    background: #060A14;
    position: relative;
    overflow: hidden;
    line-height: 0;
    display: block;
    container-type: inline-size;
}

.ros-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

/* In-Screenshot Top Branch Name Overlay */
.ros-overlay-branch-name {
    position: absolute;
    top: 1.8%;
    left: 34.6%;
    width: 22.8%;
    height: 4.6%;
    background: #060A14;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.48rem, 1.05cqw, 0.76rem);
    line-height: 1.2;
    padding: 0 0.5%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 6px;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.05);
    transition: opacity 0.3s ease;
}

/* In-Screenshot Donut Chart Top Branch Legend Overlay */
.ros-overlay-donut-legend {
    position: absolute;
    top: 77.2%;
    left: 75.8%;
    width: 13.8%;
    height: 3.4%;
    background: #0A0F1D;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.42rem, 0.95cqw, 0.68rem);
    line-height: 1.2;
    z-index: 10;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.3s ease;
}

/* 6 Pillars Grid */
.ros-pillars-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.pillars-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillar-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.25s ease;
}

.pillar-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #F59E0B;
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pillar-box h3 {
    font-size: 1.15rem;
    color: #0F172A;
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.pillar-box p {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.6;
}

/* Hardware Section */
.ros-hardware-section {
    padding: 5rem 0;
    background: #F1F5F9;
}

.hardware-kits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hardware-kit-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.25rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-kit {
    border: 2px solid #F59E0B;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.kit-badge {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: #E2E8F0;
    color: #334155;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.kit-badge-gold {
    background: #FEF3C7;
    color: #92400E;
}

.hardware-kit-card h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.kit-desc {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1.25rem;
}

.kit-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #EA580C;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F1F5F9;
}

.kit-price small {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

.kit-inclusions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #334155;
}

/* ROI Calculator */
.ros-roi-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.ros-calc-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.calc-sliders-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #0F172A;
    font-size: 0.95rem;
}

.slider-val-badge {
    background: #FEF3C7;
    color: #92400E;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #CBD5E1;
    outline: none;
    accent-color: #EA580C;
    cursor: pointer;
}

.slider-range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94A3B8;
}

.calc-info-note {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #1E40AF;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.results-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.res-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #475569;
}

.results-divider {
    border-top: 1.5px dashed #CBD5E1;
    margin: 0.5rem 0;
}

.res-grand-total {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.grand-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
}

.grand-val {
    font-size: 2rem;
    font-weight: 800;
    color: #16A34A;
}

.roi-multiplier-badge {
    background: #DCFCE7;
    color: #15803D;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.6rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 0.5rem;
}

/* Pricing Section Controls & Cards */
.ros-pricing-section-light {
    padding: 5rem 0;
    background: #F8FAFC;
}

.pricing-controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin: 2rem 0;
}

.currency-switcher {
    display: inline-flex;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 999px;
    padding: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.currency-btn {
    background: transparent;
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-btn.active {
    background: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.ros-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.plan-dinein-card-light {
    border: 2px solid #F59E0B;
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.12);
}

.plan-dinein-card-light .btn-glow-action {
    background: linear-gradient(135deg, #EA580C 0%, #D97706 100%);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.ros-addons-bar-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

/* FAQ Details */
.ros-faq-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.faq-accordion-grid {
    max-width: 860px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: all 0.2s ease;
}

.faq-card[open] {
    border-color: #CBD5E1;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0F172A;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-chevron {
    font-size: 1.2rem;
    color: #94A3B8;
    transition: transform 0.2s ease;
}

.faq-card[open] .faq-chevron {
    transform: rotate(180deg);
    color: #EA580C;
}

.faq-answer {
    margin-top: 0.85rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ROS Modal */
.ros-modal {
    max-width: 480px;
}

.badge-modal {
    background: #FEF3C7;
    color: #92400E;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.modal-country-select {
    border: 1px solid #CBD5E1;
    background: #F8FAFC;
    border-radius: 6px 0 0 6px;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
    border-right: none;
}

.input-with-prefix {
    display: flex;
}

.input-with-prefix .phone-field {
    border-radius: 0 6px 6px 0;
    flex: 1;
}

.modal-privacy-note {
    font-size: 0.75rem;
    color: #64748B;
    text-align: center;
    margin-top: 0.75rem;
}

/* Responsive Media Queries for ROS */
@media (max-width: 1200px) {
    .ros-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-dinein-card-light {
        transform: scale(1);
    }
    .kds-tickets-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .ros-hero-title-light {
        font-size: 2.35rem;
    }
    .panel-hero-grid,
    .waiter-preview-grid,
    .qr-preview-grid,
    .ros-calc-wrapper,
    .ros-addons-bar-light {
        grid-template-columns: 1fr;
    }
    .pillars-grid-3x2,
    .hardware-kits-grid,
    .inventory-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ros-pricing-grid {
        grid-template-columns: 1fr;
    }
    .ros-app-switcher-tabs {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.35rem;
    }
    .ros-tab-btn {
        white-space: nowrap;
    }
    .mock-pos-grid {
        grid-template-columns: 1fr;
    }
    .ros-hero-actions-light {
        flex-direction: column;
        width: 100%;
    }
    .ros-btn-primary-light,
    .ros-btn-calc-light,
    .ros-btn-demo-light {
        width: 100%;
        text-align: center;
    }
}