@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.cdnfonts.com/css/sofia-pro');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    /* Color Palette */
    --primary: rgb(212, 10, 67);          /* #d40a43 - Crimson */
    --primary-hover: rgb(190, 9, 60);
    --primary-glow: rgba(212, 10, 67, 0.4);
    --primary-tint: rgba(212, 10, 67, 0.08);
    --primary-tint-hover: rgba(212, 10, 67, 0.15);
    
    --navy-deep: rgb(15, 23, 42);         /* HSL 222, 47%, 11% - Header & Dark backgrounds */
    --navy-slate: rgb(30, 41, 59);        /* HSL 215, 28%, 17% - Section alternate / Card backgrounds */
    --navy-light: rgb(51, 65, 85);        /* HSL 215, 20%, 27% */
    
    --charcoal: rgb(43, 45, 47);          /* HSL 210, 4%, 18% - Logo text/Body text */
    --charcoal-light: rgb(100, 116, 139);  /* Muted body text */
    
    --ice-white: rgb(248, 250, 252);      /* HSL 210, 40%, 98% - Global light background */
    --pure-white: rgb(255, 255, 255);
    
    --success: rgb(16, 185, 129);         /* Green for checkmarks and metrics */
    --success-tint: rgba(16, 185, 129, 0.1);

    /* Fonts */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Sofia Pro', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-round: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 24px -8px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 30px rgba(212, 10, 67, 0.15);
    
    --container-width: 1280px;
    --nav-height: 80px;
}

/* --- RESET & CORE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 1.25;
    letter-spacing: 0 !important;
}

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

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

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-small {
    padding: 60px 0;
}

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

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

.bg-dark {
    background-color: var(--navy-deep);
    color: var(--pure-white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--pure-white);
}

/* --- BUTTONS & CALLS TO ACTION --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background: #d40a43;
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(212, 10, 67, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--pure-white);
    color: var(--navy-deep);
    border: 1px solid rgb(226, 232, 240);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--navy-deep);
    background-color: var(--ice-white);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background-color: var(--pure-white);
    color: var(--navy-deep);
    border-color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-ghost-orange {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid rgba(212, 10, 67, 0.3);
}

.btn-ghost-orange:hover {
    background-color: var(--primary-tint);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* --- LOGO COMPONENT --- */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--navy-deep);
}

.logo-white {
    color: var(--pure-white);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

/* Footer logo style (no filters since footer is white) */
.footer-logo-img {
    height: 55px;
    opacity: 0.9;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Miniature scaled logo for inside mock tablet screen headers */
.kiosk-logo-img {
    height: 20px;
    filter: brightness(0) invert(1);
}

/* --- NAVIGATION NAVBAR --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    transition: var(--transition-normal);
}

.header .logo-img {
    opacity: 0.95;
}

.header .logo-white-img {
    display: block;
}

.header .logo-color-img {
    display: none;
}

.header .nav-link {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.header .nav-link:hover {
    color: var(--primary);
}

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

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

.header #nav-cta-btn {
    background-color: transparent;
    color: var(--pure-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.header #nav-cta-btn:hover {
    background-color: var(--pure-white);
    color: var(--navy-deep);
    border-color: var(--pure-white);
}

.header .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--pure-white);
    border-radius: var(--radius-round);
    transition: var(--transition-fast);
}

/* Scrolled & Active Solid Navbar Style */
.header.scrolled,
.header.active {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.85); /* Premium translucent glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md), inset 0 1px 1px rgba(255, 255, 255, 0.6); /* Reflective internal highlight */
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* Logo toggles based on scrolled / mobile active state */
.header.scrolled .logo-white-img,
.header.active .logo-white-img {
    display: none;
}

.header.scrolled .logo-color-img,
.header.active .logo-color-img {
    display: block;
}

.header.scrolled .logo-img,
.header.active .logo-img {
    opacity: 1;
}

.header.scrolled .nav-link,
.header.active .nav-link {
    color: var(--navy-light);
}

.header.scrolled .nav-link:hover,
.header.active .nav-link:hover {
    color: var(--primary);
}

.header.scrolled #nav-cta-btn,
.header.active #nav-cta-btn {
    background-color: var(--primary);
    color: var(--pure-white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.header.scrolled #nav-cta-btn:hover,
.header.active #nav-cta-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(212, 10, 67, 0.5);
}

.header.scrolled .nav-toggle span,
.header.active .nav-toggle span {
    background-color: var(--navy-deep);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    cursor: pointer;
}

/* --- DROPDOWN NAVIGATION MENUS --- */
.nav-item {
    position: relative;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-link.dropdown-toggle .arrow {
    font-size: 8px;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link.dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Dropdown menus basic styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(255, 255, 255, 0.88); /* Translucent glass background */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6); /* Soft glass border */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 20px 40px -15px rgba(15, 23, 42, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.8); /* Internal reflective highlight */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 1000;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* Invisible hover bridge to span the gap between nav-item and dropdown-menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: transparent;
}

/* Adjust colors for scrolled state */
.header.scrolled .dropdown-menu {
    background-color: #ffffff;
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Solutions Dropdown (3 category items: Food, Cafes, Hospitality) */
.solutions-grid-dropdown {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
}

/* Products Dropdown (larger width, column categories) */
.products-dropdown {
    width: 440px;
    padding: 24px;
}

.dropdown-cols {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    gap: 20px;
}

.dropdown-col-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 6px;
}

.header.scrolled .dropdown-col-title {
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

.dropdown-col-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Dropdown items inside menus */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    color: #111111;
    text-align: left;
}

.header.scrolled .dropdown-item {
    color: var(--navy-light);
}

.dropdown-item:hover {
    background-color: var(--primary-tint);
    color: var(--primary);
}

.header.scrolled .dropdown-item:hover {
    background-color: var(--primary-tint);
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    overflow: hidden;
}

.hero > .container {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
    width: 100%;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(15, 23, 42, 0.60) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 860px;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-tint);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-round);
    margin-bottom: 24px;
    border: 1px solid rgba(212, 10, 67, 0.25);
    animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--pure-white);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-tint);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 760px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-description strong {
    color: var(--pure-white);
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 32px;
    max-width: 800px;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--success-tint);
    color: var(--success);
}

/* --- ABOUT SECTION STYLING --- */
.about-section {
    background-color: var(--ice-white);
}

.about-section.section-padding-large {
    padding: 80px 0;
}

.about-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 60px;
    border-radius: var(--radius-xl);
    background: none;
    box-shadow: none;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.about-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about-banner-content {
    position: relative;
    z-index: 2;
}

.about-banner h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-deep) !important;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-sublead {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.about-banner-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.differentiator-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.differentiator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 10, 67, 0.3);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 10, 67, 0.1);
}

.diff-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.diff-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.diff-bullets span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--pure-white);
}

.about-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Redesigned Card Container */
.about-col.premium-card {
    background-color: var(--pure-white);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.about-col.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(212, 10, 67, 0.5) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.about-col.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 20px 40px -15px rgba(212, 10, 67, 0.08);
    border-color: rgba(212, 10, 67, 0.2);
}

.about-col.premium-card:hover::before {
    opacity: 1;
}

/* Card Header Section */
.about-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

/* Icon Badges */
.about-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--primary-tint);
    border: 1.5px solid rgba(212, 10, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.about-icon-badge.badge-alt {
    background-color: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
    color: var(--navy-deep);
}

.about-col.premium-card:hover .about-icon-badge {
    transform: scale(1.08) rotate(5deg);
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--pure-white);
    box-shadow: 0 8px 20px -6px rgba(212, 10, 67, 0.4);
}

.about-col.premium-card:hover .about-icon-badge.badge-alt {
    background-color: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--pure-white);
    box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.4);
}

/* Header Text elements */
.about-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-mini-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.about-icon-badge.badge-alt + .about-header-text .card-mini-tag {
    color: var(--charcoal-light);
}

.about-col.premium-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-deep);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Card content details */
.about-col-lead {
    font-size: 16px;
    font-weight: 400;
    color: var(--navy-light);
    line-height: 1.5;
}

.about-col-body {
    font-size: 14.5px;
    color: var(--charcoal-light);
    line-height: 1.6;
}

/* Modern Pill Tags */
.about-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-round);
    background-color: var(--ice-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 13px;
    font-weight: 400;
    color: var(--navy-light);
    transition: var(--transition-fast);
}

.pillar-tag i {
    color: var(--primary);
    font-size: 12px;
}

.pillar-tag:hover {
    background-color: var(--primary-tint);
    border-color: rgba(212, 10, 67, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
}

/* What We Do - Premium List */
.premium-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.premium-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.premium-list-item:hover {
    background-color: var(--ice-white);
    transform: translateX(6px);
}

.list-item-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--success-tint);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.premium-list-item:hover .list-item-check {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--pure-white);
    transform: scale(1.1);
}

.list-item-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-deep);
}

.item-desc {
    font-size: 13px;
    color: var(--charcoal-light);
    line-height: 1.4;
}

/* --- ABOUT HERO STANDALONE PAGE --- */
.about-hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-slate) 100%);
    color: var(--pure-white);
    text-align: left;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

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

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--pure-white) !important;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.about-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 760px;
}

/* --- CONTACT HERO STANDALONE PAGE --- */
.contact-hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-slate) 100%);
    color: var(--pure-white);
    text-align: left;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

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

.contact-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--pure-white) !important;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.contact-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 760px;
}

/* Standalone Contact layout details */
.contact-page-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.7); /* Premium glassmorphism translucent background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5); /* Soft light reflective border */
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md), inset 0 1px 2px rgba(255, 255, 255, 0.8); /* Internal reflective sheen highlight */
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 10, 67, 0.3); /* Stronger logo colored highlight border on hover */
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-tint);
    color: var(--primary);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 500;
    color: #747a90;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 17px;
    color: var(--charcoal-light);
    line-height: 1.5;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--pure-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-normal);
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 10px 20px -5px rgba(15, 23, 42, 0.08);
    border-color: rgba(212, 10, 67, 0.25);
}

.metric-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    background-color: var(--ice-white);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.metric-item:hover .metric-icon-circle {
    background-color: var(--primary-tint);
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.metric-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal-light);
}

/* --- TRUST METRICS FULL WIDTH REDESIGN --- */
.about-metrics-section {
    background-color: rgb(190, 9, 60); /* Vibrant Brand Orange */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-metrics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.about-metrics-section .container {
    position: relative;
    z-index: 2;
}

/* Translucent Glassmorphic Cards on Orange */
.about-metrics-section .metric-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--pure-white);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
    transition: var(--transition-normal);
}

.about-metrics-section .metric-item:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.25), 0 0 20px rgba(255, 255, 255, 0.1);
}

.about-metrics-section .metric-icon-circle {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    transition: var(--transition-normal);
}

.about-metrics-section .metric-item:hover .metric-icon-circle {
    background-color: var(--pure-white);
    color: rgb(190, 9, 60);
    border-color: var(--pure-white);
    transform: scale(1.06);
}

.about-metrics-section .metric-number {
    color: var(--pure-white);
}

.about-metrics-section .metric-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--charcoal-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background-color: var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgb(241, 245, 249);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    border-color: rgba(212, 10, 67, 0.2);
}

.solution-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background-color: var(--ice-white);
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.solution-card:hover .solution-image {
    transform: scale(1.08);
}

.solution-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.solution-description {
    font-size: 15px;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    flex: 1;
}

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

.solution-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-light);
}

.solution-bullet-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.solution-card .btn {
    width: 100%;
}

/* --- SMART FEATURES SECTION --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card-span-4 {
    grid-column: span 4;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.7); /* Premium glassmorphism translucent background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Soft light reflective border */
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm), inset 0 1px 1px rgba(255, 255, 255, 0.8); /* Internal reflective sheen highlight */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover {
    box-shadow: var(--shadow-md), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    border-color: rgba(212, 10, 67, 0.25);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--pure-white);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--charcoal-light);
}

/* --- CONNECTED ECOSYSTEM VISUALIZER --- */
.ecosystem-section {
    background-color: var(--navy-deep);
    color: var(--pure-white);
    overflow: hidden;
}

.ecosystem-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.ecosystem-text h2 {
    color: var(--pure-white);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.ecosystem-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.ecosystem-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.ecosystem-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ecosystem-bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(212, 10, 67, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 11px;
}

.ecosystem-bullet-text h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--pure-white);
}

.ecosystem-bullet-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Visualizer Graphic Canvas */
.ecosystem-canvas {
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 4/3;
    padding: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ecosystem-canvas::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.ecosystem-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animated Flow Paths */
.flow-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

.flow-line-active {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 40 180;
    stroke-dashoffset: 0;
    animation: flowPulse 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.ecosystem-canvas.active-flow-kiosk-kds .flow-kiosk-kds,
.ecosystem-canvas.active-flow-kiosk-cloud .flow-kiosk-cloud,
.ecosystem-canvas.active-flow-kiosk-print .flow-kiosk-print,
.ecosystem-canvas.active-flow-kds-cds .flow-kds-cds,
.ecosystem-canvas.active-flow-cloud-kiosk .flow-cloud-kiosk {
    opacity: 1;
}

/* Nodes Layout */
.node {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.node:hover {
    transform: translateY(-5px);
}

.node-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--navy-slate);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.node-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.node:hover .node-icon, .node.active .node-icon {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(212, 10, 67, 0.6);
}

.node.active .node-icon::after {
    border-color: var(--primary);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.node-label {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.node:hover .node-label, .node.active .node-label {
    color: var(--pure-white);
}

/* Node coordinates */
.node-central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.node-central:hover {
    transform: translate(-50%, -58%);
}

.node-top-left {
    top: 15%;
    left: 15%;
}

.node-top-right {
    top: 15%;
    right: 15%;
}

.node-bottom-left {
    bottom: 15%;
    left: 15%;
}

.node-bottom-right {
    bottom: 15%;
    right: 15%;
}

/* Info popup overlay inside visualizer */
.visualizer-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
    transform: translateY(120%);
    opacity: 0;
}

.visualizer-overlay.show {
    transform: translateY(0);
    opacity: 1;
}

.visualizer-overlay-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(212, 10, 67, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.visualizer-overlay-text h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.visualizer-overlay-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* --- TARGET BUSINESSES (MARKETS) --- */
.market-section-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 64px;
    align-items: center;
}

.market-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.market-nav-buttons {
    display: flex;
    gap: 16px;
    margin: 24px 0 32px 0;
}

.market-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--charcoal-light);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--navy-deep);
}

.market-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08);
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--navy-deep);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    transition: var(--transition-fast);
}

.view-all-link:hover {
    color: var(--primary);
    letter-spacing: 2px;
}

.market-cards-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.market-cards-wrapper {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-card {
    position: relative;
    flex: 0 0 320px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-normal);
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    border-color: rgba(212, 10, 67, 0.2);
}

.market-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.market-card:hover .market-card-img {
    transform: scale(1.06);
}

.market-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
}

.market-card-title {
    position: absolute;
    bottom: 28px;
    left: 28px;
    color: var(--pure-white) !important;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* --- COMPLETE HARDWARE & SOFTWARE SOLUTION --- */
.solution-suite-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.suite-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.suite-bullet-card {
    background-color: var(--pure-white);
    border: 1px solid rgb(241, 245, 249);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-normal);
}

.suite-bullet-card:hover {
    border-color: rgba(212, 10, 67, 0.15);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.suite-bullet-card svg {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.suite-bullet-card h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 4px;
}

.suite-bullet-card p {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.4;
}

.suite-cta-box {
    background-color: var(--navy-slate);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.suite-cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.suite-cta-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.suite-cta-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-tint);
    color: var(--primary);
    font-weight: 500;
    font-size: 11px;
    border-radius: var(--radius-round);
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 10, 67, 0.1);
}

/* --- WHY CHOOSE US (BENEFITS) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-card {
    background-color: var(--pure-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid rgb(241, 245, 249);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(212, 10, 67, 0.15);
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.benefit-card:hover .benefit-icon-box{
        background-color: var(--primary);
    color: var(--pure-white);
    transform: scale(1.05);
}

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

.benefit-card p {
    font-size: 15px;
    color: var(--charcoal-light);
}

/* --- INTERACTIVE ROI CALCULATOR --- */
.roi-section {
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--ice-white) 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.roi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.roi-text h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.roi-text p {
    font-size: 17px;
    color: var(--charcoal-light);
    margin-bottom: 32px;
}

.roi-visualizer-box {
    background-color: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label-row span {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-deep);
}

.slider-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    background-color: var(--primary-tint);
    padding: 4px 12px;
    border-radius: var(--radius-round);
    border: 1px solid rgba(212, 10, 67, 0.1);
}

.roi-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-round);
    background: #e2e8f0;
    outline: none;
}

.roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(212, 10, 67, 0.4);
    transition: var(--transition-fast);
}

.roi-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background-color: var(--primary-hover);
}

/* Outputs Cards */
.roi-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}

.result-box {
    background-color: var(--ice-white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.result-box.highlight {
    background-color: var(--primary-tint);
    border-color: rgba(212, 10, 67, 0.15);
}

.result-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-deep);
}

.result-box.highlight .result-number {
    color: var(--primary);
}

.result-subtitle {
    font-size: 11px;
    color: var(--charcoal-light);
    margin-top: 4px;
}

/* --- CALL TO ACTION SECTION --- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-slate) 100%);
    color: var(--pure-white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 10, 67, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 10, 67, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Contact form glassmorphic card */
.cta-form-box {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-form-box h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--pure-white);
}

.cta-form-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input-wrapper label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--pure-white);
    font-size: 15px;
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 12px rgba(212, 10, 67, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.cta-form-box .btn {
    width: 100%;
    margin-top: 12px;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.form-status.success {
    background-color: var(--success-tint);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- LIGHT SECTION ADAPTATIONS FOR CTA FORM BOX --- */
.about-section .cta-form-box {
    background-color: var(--pure-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-lg), 0 20px 40px -15px rgba(15, 23, 42, 0.05);
}

.about-section .cta-form-box h3 {
    color: var(--navy-deep);
}

.about-section .cta-form-box p {
    color: var(--charcoal-light);
}

.about-section .cta-form-box .form-input-wrapper label {
    color: var(--navy-light);
}

.about-section .cta-form-box .form-control {
    background-color: var(--ice-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--charcoal);
}

.about-section .cta-form-box .form-control:focus {
    border-color: var(--primary);
    background-color: var(--pure-white);
    box-shadow: 0 0 12px rgba(212, 10, 67, 0.15);
}

.about-section .cta-form-box .form-control::placeholder {
    color: var(--charcoal-light);
    opacity: 0.6;
}

.about-section .cta-form-box select.form-control {
    background-color: var(--ice-white) !important;
    color: var(--charcoal) !important;
}

.about-section .cta-form-box select.form-control option {
    background-color: var(--pure-white) !important;
    color: var(--charcoal) !important;
}

/* --- FOOTER --- */
.footer {
    background-color: #ffffff;
    color: var(--charcoal-light);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--navy-deep);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter p {
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    background-color: var(--ice-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-round);
    padding: 10px 16px;
    color: var(--navy-deep);
    font-size: 14px;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background-color: var(--pure-white);
}

.newsletter-submit {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.newsletter-submit:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

.footer-bottom p {
    font-size: 15px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulseGlow {
    from {
        transform: scale(0.9);
        opacity: 0.7;
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70%, 100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes flowPulse {
    from {
        stroke-dashoffset: 220px;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-banner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px;
    }
    .about-banner-badge-wrapper {
        justify-content: flex-start;
    }
    .differentiator-card {
        max-width: none;
    }
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-features {
        max-width: 600px;
        margin: 0;
        gap: 12px 20px;
    }
    .trust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .solutions-grid > *:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card-span-4 {
        grid-column: span 2;
    }
    .ecosystem-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .market-section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .market-cards-container {
        overflow-x: auto;
        padding-bottom: 15px;
    }
    .solution-suite-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .roi-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px 0;
    }
    .contact-hero-title {
        font-size: 36px;
    }
    .contact-info-card {
        padding: 24px;
    }
    .about-banner {
        padding: 30px 24px;
    }
    .about-banner h2 {
        font-size: 28px;
    }
    .about-col {
        padding: 24px;
    }
    .section-padding {
        padding: 70px 0;
    }
    .section-padding-large {
        padding: 90px 0;
    }
    .about-section.section-padding-large {
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-description {
        font-size: 16px;
    }
    .nav-menu {
        display: none;
    }
    .nav-actions .btn {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    
    /* Responsive Mobile Menu Drawer */
    .header.active .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        animation: fadeInDown 0.3s ease-out;
    }
    .header.active .nav-actions .btn {
        display: flex;
        width: 100%;
    }
    .header.active .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .header.active .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .header.active .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .nav-item.dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        width: 100%;
    }
    
    .nav-item.dropdown .nav-link .arrow {
        font-size: 10px;
        transition: transform var(--transition-fast);
    }
    
    .nav-item.dropdown.open-mobile .nav-link .arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: var(--ice-white) !important;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: var(--radius-md);
        padding: 12px;
        width: 100% !important;
        display: none;
        pointer-events: auto;
        margin-top: 8px;
    }
    
    .nav-item.dropdown.open-mobile .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease-out;
    }
    
    .solutions-grid-dropdown {
        width: 100% !important;
        gap: 4px;
    }
    
    .products-dropdown {
        width: 100% !important;
        padding: 16px;
    }
    
    .dropdown-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dropdown-col-title {
        border-bottom-color: rgba(226, 232, 240, 0.8) !important;
        margin-top: 8px;
        color: var(--primary);
    }
    
    .dropdown-item {
        color: var(--navy-light) !important;
        padding: 8px 10px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid > *:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-span-4 {
        grid-column: span 1;
    }
    .ecosystem-canvas {
        aspect-ratio: 1/1;
    }
    .node-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .node-label {
        font-size: 10px;
    }
    .market-cards-container::-webkit-scrollbar {
        display: none;
    }
    .suite-bullets {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .trust-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .roi-visualizer-box {
        padding: 24px;
    }
    .roi-results {
        grid-template-columns: 1fr;
    }
    .cta-form-box {
        padding: 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- PREMIUM SPECIFICATIONS TABLE --- */
.premium-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 36px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--charcoal-light);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.premium-specs-table th {
    background-color: var(--navy-deep);
    color: var(--pure-white);
    padding: 16px 20px;
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border: none;
    text-align: left;
}

.premium-specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-fast);
}

.premium-specs-table tr:last-child td {
    border-bottom: none;
}

.premium-specs-table tr:nth-child(even) {
    background-color: rgba(248, 250, 252, 0.6); /* Muted slate alternating rows */
}

.premium-specs-table tr:hover {
    background-color: var(--primary-tint);
}

.premium-specs-table td.spec-item {
    font-weight: 500;
    color: var(--navy-deep);
    width: 30%;
    border-right: 1px solid rgba(226, 232, 240, 0.4);
}

.premium-specs-table td.spec-value {
    color: var(--charcoal);
    font-weight: 500;
}

/* --- PREMIUM PRODUCT SPEC FLYER (IMAGE STYLE) --- */
.spec-flyer-container {
    width: 100%;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease-out;
}

.spec-flyer-header {
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(226, 232, 240, 0.6);
    padding-bottom: 16px;
}

.spec-flyer-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: #1e3a8a; /* Deep tech-blue */
    letter-spacing: 0.5px;
}

.spec-flyer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-flyer-item {
    display: grid;
    grid-template-columns: 24px 130px 1fr;
    gap: 16px;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.spec-flyer-item:hover {
    background-color: rgba(37, 99, 235, 0.05); /* Extremely soft primary-blue tint */
}

.spec-flyer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb; /* Vibrantly sharp royal blue */
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
}

.spec-flyer-item:hover .spec-flyer-icon {
    transform: scale(1.18) translateY(-1px);
    color: var(--primary); /* shifts to highlight theme red-orange on hover */
}

.spec-flyer-label {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--navy-deep);
    font-size: 15px;
}

.spec-flyer-value {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--charcoal-light);
    font-size: 15px;
    line-height: 1.4;
}

/* Inline SVG styling */
.spec-flyer-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
}

@media (max-width: 768px) {
    .spec-flyer-title {
        font-size: 26px;
    }
    .spec-flyer-subtitle {
        font-size: 18px;
    }
    .spec-flyer-item {
        grid-template-columns: 24px 110px 1fr;
        gap: 12px;
        padding: 6px 8px;
    }
    .spec-flyer-label, .spec-flyer-value {
        font-size: 14px;
    }
}



/* ==========================================================================
   EXTRACTED COMMON UTILITY AND COMPONENT STYLES
   ========================================================================== */

.legal-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.color-primary {
    color: var(--primary);
}

.cta-container {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--pure-white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.btn-cta-primary {
    padding: 16px 40px;
    font-size: 16px;
}

.margin-top-xs {
    margin-top: 2px;
}

.padding-top-xs {
    padding-top: 2px;
}

.legal-p {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 680px;
    line-height: 1.6;
}

.w-full {
    width: 100%;
}

.align-items-start {
    align-items: flex-start;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-secondary-hero-outline {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: var(--radius-round);
    font-family: var(--font-heading);
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    background: transparent;
    transition: var(--transition-fast);
}
.btn-secondary-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.max-width-md {
    max-width: 680px;
}

.product-price-badge {
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: var(--radius-round);
    box-shadow: 0 4px 14px var(--primary-glow);
    display: none;
}

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

.product-grid-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.margin-bottom-xs {
    margin-bottom: 8px;
}

.product-visual-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 700px;
    gap: 32px;
}

.margin-left-xs {
    margin-left: 8px;
}

.spec-flyer-item-wide {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
}

.max-width-md-left {
    max-width: 680px;
    margin: 0 auto 0 0;
}

.cta-desc-sm {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 620px;
    line-height: 1.6;
}

.contact-subheading {
    font-weight: 400;
    color: var(--navy-deep);
    margin-top: 8px;
}

.product-image-tall {
    height: 700px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
}

.carousel-card-clean {
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-image-container {
    background: none;
    border: none;
    box-shadow: none;
    aspect-ratio: auto;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100%;
}

.carousel-image-element {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: transform var(--transition-normal);
}

.carousel-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: opacity var(--transition-fast);
}
.carousel-link:hover {
    opacity: 0.85;
}


/* ==========================================================================
   EXTRACTED ONE-OFF ELEMENT STYLES
   ========================================================================== */

.custom-style-1 {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.custom-style-2 {
    padding: 15px 36px;
    font-size: 16px;
    border-radius: var(--radius-round);
}
.custom-style-3 {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    display:block;
}
.custom-style-4 {
    color: #ff6b47;
}
.custom-style-5 {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius-round);
}
.custom-style-6 {
    height: auto;
    width: 100%;
    max-width: 440px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
    border-radius: var(--radius-md);
}
.custom-style-7 {
    margin-top: 0;
    box-shadow: var(--shadow-lg);
}
.custom-style-8 {
    resize: vertical;
    min-height: 110px;
}
.custom-style-9 {
    position: relative;
    z-index: 10;
    margin-top: -280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 900px;
    gap: 32px;
}
.custom-style-10 {
    height: 900px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
}
.custom-style-11 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.custom-style-12 {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}
.custom-style-13 {
    padding: 16px 32px;
    font-size: 15px;
}
.custom-style-14 {
    color: #a5b4fc;
}
.custom-style-15 {
    margin-left: 6px;
}
.custom-style-16 {
    padding: 16px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.custom-style-17 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.custom-style-18 {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.custom-style-19 {
    margin-top: 12px;
    margin-bottom: 20px;
}
.custom-style-20 {
    font-size: 16px;
    color: var(--charcoal-light);
    margin-bottom: 32px;
    line-height: 1.7;
}
.custom-style-21 {
    font-size: 18px;
    color: var(--charcoal-light);
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.custom-style-22 {
    font-size: 13px;
    font-weight: normal;
    color: var(--primary);
    opacity: 0.85;
}
.custom-style-23 {
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:24px;
}
.custom-style-24 {
    display:flex;
    gap:12px;
    align-items:flex-start;
}
.custom-style-25 {
    font-size:20px;
}
.custom-style-26 {
    color:var(--primary);
}
.custom-style-27 {
    font-size:14px;
    color:var(--charcoal-light);
}
.custom-style-28 {
    max-width: 960px;
}
.custom-style-29 {
    padding: 48px;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.custom-style-30 {
    font-size: 15px;
    color: var(--charcoal-light);
    margin-bottom: 32px;
    font-weight: 500;
}
.custom-style-31 {
    margin-right: 6px;
    color: var(--primary);
}
.custom-style-32 {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.7;
}
.custom-style-33 {
    color: var(--primary);
    font-weight: 400;
    text-decoration: underline;
}
.custom-style-34 {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.7;
    margin-bottom: 0;
}
.custom-style-35 {
    background-color: var(--pure-white);
    padding-top: 100px;
    padding-bottom: 80px;
}
.custom-style-36 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.custom-style-37 {
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}
.custom-style-38 {
    display:flex;
    flex-direction:column;
    gap:16px;
}
.custom-style-39 {
    font-size:22px;
    color: var(--primary);
}
.custom-style-40 {
    font-family:var(--font-heading);
    font-size:16px;
    color:var(--navy-deep);
}
.custom-style-41 {
    font-size:14.5px;
    color:var(--charcoal-light);
}
.custom-style-42 {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.custom-style-43 {
    position:relative;
    z-index:10;
}
.custom-style-44 {
    padding: 100px 0;
}
.custom-style-45 {
    max-width:760px;
    margin:0 auto 60px auto;
    text-align:center;
}
.custom-style-46 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--navy-deep);
    font-weight: 800;
}
.custom-style-47 {
    color:var(--charcoal-light);
    font-size:16px;
    margin-top:12px;
}
.custom-style-48 {
    text-align: center;
}
.custom-style-49 {
    color: var(--primary);
    display:block;
    margin-bottom:12px;
}
.custom-style-50 {
    font-family: var(--font-heading);
    font-size:36px;
    color:var(--pure-white);
    font-weight:800;
    letter-spacing:-1px;
}
.custom-style-51 {
    color: rgba(255,255,255,0.7);
    max-width:640px;
    margin:8px auto 0 auto;
    font-size:15px;
}
.custom-style-52 {
    background-color: var(--pure-white);
    padding: 100px 0;
}
.custom-style-53 {
    font-family:var(--font-heading);
    font-size:30px;
    color:var(--navy-deep);
    font-weight:800;
    line-height:1.2;
}
.custom-style-54 {
    font-family:var(--font-heading);
    font-size:20px;
    color:var(--pure-white);
    margin-bottom:12px;
    font-weight:700;
}
.custom-style-55 {
    font-size:14px;
    color:rgba(255,255,255,0.8);
    margin-bottom:24px;
}
.custom-style-56 {
    width:100%;
}

/* ==========================================================================
   Extracted from cafes.html
   ========================================================================== */

/* -- Hero -- */
        .cafe-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            padding: 130px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .cafe-hero::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(255,69,29,0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cafe-hero::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -80px;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cafe-hero-inner {
            position: relative; z-index: 2;
            max-width: 780px;
        }
        .cafe-hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,69,29,0.12);
            border: 1px solid rgba(255,69,29,0.3);
            color: #ff6b47;
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 28px;
        }
        .cafe-hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }
        .cafe-hero h1 span {
            background: linear-gradient(90deg, #d40a43, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cafe-hero-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 640px;
        }
        .cafe-hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-hero-outline {
            padding: 14px 32px;
            border: 2px solid rgba(255,255,255,0.35);
            border-radius: var(--radius-round);
            color: white;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 15px;
            background: transparent;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: white;
        }

        /* -- Intro Section -- */
        .cafe-intro {
            padding: 100px 0;
            background: #ffffff;
        }
        .cafe-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .cafe-intro-text h2 {
            font-family: var(--font-heading);
            font-size: 38px;
            font-weight: 800;
            color: var(--navy-deep);
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .cafe-intro-text p {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .suitable-for-label {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 14px;
            margin-top: 32px;
        }
        .suitable-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .suitable-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-tint);
            border: 1px solid rgba(255,69,29,0.2);
            color: var(--primary);
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 400;
            padding: 6px 14px;
            border-radius: 50px;
        }
        .suitable-tag i { font-size: 11px; }
        .cafe-intro-visual {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(226,232,240,0.6);
            box-shadow: 0 20px 60px rgba(15,23,42,0.12);
            min-height: 480px;
            display: flex;
        }
        .cafe-intro-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* -- Features Section -- */
        .cafe-features {
            padding: 100px 0;
            background: #f8fafc;
        }
        .section-label-sm {
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
            display: block;
        }
        .section-title-lg {
            font-family: var(--font-heading);
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            color: var(--navy-deep);
            letter-spacing: -1px;
            margin-bottom: 14px;
        }
        .section-sub {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.7;
            max-width: 620px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .feature-card {
            background: white;
            border-radius: 18px;
            padding: 32px 26px;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feature-card:hover {
            border-color: rgba(255,69,29,0.2);
            box-shadow: 0 12px 32px rgba(15,23,42,0.1);
            transform: translateY(-5px);
        }
        .feature-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255,69,29,0.1), rgba(255,140,66,0.08));
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
        }
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), #ff8c42);
            color: white;
            box-shadow: 0 6px 16px rgba(255,69,29,0.35);
        }
        .feature-title {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .feature-desc {
            font-size: 14px;
            color: var(--charcoal-light);
            line-height: 1.65;
        }

        /* -- Hardware Section -- */
        .cafe-hardware {
            padding: 100px 0;
            background: white;
        }
        .hardware-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 56px;
        }
        .hw-card {
            border-radius: 20px;
            padding: 40px 32px;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.25s ease;
            border: 1.5px solid rgba(226,232,240,0.8);
            background: #f8fafc;
        }
        .hw-card:hover {
            background: white;
            border-color: rgba(255,69,29,0.25);
            box-shadow: 0 16px 40px rgba(15,23,42,0.1);
            transform: translateY(-6px);
        }
        .hw-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 26px;
            color: #2563eb;
        }
        .hw-card:hover .hw-icon {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: white;
            box-shadow: 0 6px 16px rgba(37,99,235,0.35);
        }
        .hw-title {
            font-family: var(--font-heading);
            font-size: 19px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .hw-desc {
            font-size: 14.5px;
            color: var(--charcoal-light);
            line-height: 1.65;
            flex: 1;
        }
        .hw-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            color: var(--primary);
            margin-top: 4px;
        }

        /* -- Why Choose Section -- */
        .cafe-why {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }
        .cafe-why::before {
            content: '';
            position: absolute;
            top: -80px; right: -60px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,69,29,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative; z-index: 2;
        }
        .why-text h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: white;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        .why-text p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 36px;
        }
        .why-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .why-item {
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255,255,255,0.85);
            font-size: 15px;
        }
        .why-check {
            width: 28px; height: 28px;
            background: rgba(255,69,29,0.2);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #ff6b47;
            font-size: 12px;
            flex-shrink: 0;
        }

        /* -- Integration Section -- */
        .cafe-integrations {
            padding: 100px 0;
            background: #f8fafc;
        }
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .integration-card {
            background: white;
            border: 1.5px solid rgba(226,232,240,0.8);
            border-radius: 16px;
            padding: 28px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.2s ease;
        }
        .integration-card:hover {
            border-color: rgba(37,99,235,0.25);
            box-shadow: 0 8px 24px rgba(15,23,42,0.08);
            transform: translateY(-3px);
        }
        .integration-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            color: #2563eb;
            flex-shrink: 0;
        }
        .integration-name {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .integration-sub {
            font-size: 12.5px;
            color: var(--charcoal-light);
            margin-top: 2px;
        }

        /* -- Responsive -- */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .cafe-intro-grid,
            .why-grid { grid-template-columns: 1fr; gap: 48px; }
            .features-grid { grid-template-columns: 1fr; }
            .hardware-grid { grid-template-columns: 1fr; }
            .integrations-grid { grid-template-columns: 1fr; }
            .cafe-hero { padding: 100px 0 70px; }
        }

/* ==========================================================================
   Extracted from food.html
   ========================================================================== */

/* -- Hero -- */
        .food-hero {
            background: linear-gradient(135deg, #0a1628 0%, #0f2341 50%, #0a1628 100%);
            padding: 130px 0 110px;
            position: relative;
            overflow: hidden;
        }
        .food-hero::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,69,29,0.12) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .food-hero::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .food-hero-inner {
            position: relative; z-index: 2;
            max-width: 820px;
        }
        .food-hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,69,29,0.12);
            border: 1px solid rgba(255,69,29,0.3);
            color: #ff6b47;
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 28px;
        }
        .food-hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.08;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }
        .food-hero h1 span {
            background: linear-gradient(90deg, #d40a43, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .food-hero-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.75;
            margin-bottom: 16px;
            max-width: 680px;
        }
        .food-hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 680px;
        }
        .food-hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-outline-white {
            padding: 14px 32px;
            border: 2px solid rgba(255,255,255,0.35);
            border-radius: var(--radius-round);
            color: white;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 15px;
            background: transparent;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        /* -- Section Helpers -- */
        .section-label-sm {
            display: block;
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
        }
        .section-title-lg {
            font-family: var(--font-heading);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            color: var(--navy-deep);
            letter-spacing: -1px;
            margin-bottom: 14px;
        }
        .section-sub {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.75;
            max-width: 640px;
        }

        /* -- Overview -- */
        .food-overview {
            padding: 100px 0;
            background: #ffffff;
        }
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .overview-text h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: var(--navy-deep);
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .overview-text p {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.8;
            margin-bottom: 14px;
        }
        .perfect-for-label {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-top: 32px;
            margin-bottom: 14px;
        }
        .perfect-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .perfect-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-tint);
            border: 1px solid rgba(255,69,29,0.2);
            color: var(--primary);
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 400;
            padding: 6px 14px;
            border-radius: 50px;
        }
        .overview-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(15,23,42,0.14);
            min-height: 520px;
            display: flex;
        }
        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* -- Smart Features -- */
        .food-features {
            padding: 100px 0;
            background: #ffffff;
        }
        .features-grid-food {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .feat-card {
            background: #f8fafc;
            border-radius: 18px;
            padding: 30px 24px;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feat-card:hover {
            background: white;
            border-color: rgba(255,69,29,0.2);
            box-shadow: 0 12px 32px rgba(15,23,42,0.09);
            transform: translateY(-5px);
        }
        .feat-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255,69,29,0.1), rgba(255,140,66,0.07));
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
        }
        .feat-card:hover .feat-icon {
            background: linear-gradient(135deg, var(--primary), #ff8c42);
            color: white;
            box-shadow: 0 6px 16px rgba(255,69,29,0.35);
        }
        .feat-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 400;
            color: var(--navy-deep);
        }
        .feat-desc {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.4;
        }

        /* -- Why Choose -- */
        .food-why {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }
        .food-why::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(255,69,29,0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .why-grid-food {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative; z-index: 2;
        }
        .why-text-food h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: white;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        .why-text-food p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin-bottom: 36px;
        }
        .why-checklist {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 24px;
        }
        .why-item-food {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.85);
            font-size: 15px;
        }
        .why-dot {
            width: 26px; height: 26px;
            background: rgba(255,69,29,0.2);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #ff6b47;
            font-size: 11px;
            flex-shrink: 0;
        }

        /* -- Integrations -- */
        .food-integrations {
            padding: 100px 0;
            background: #f8fafc;
        }
        .integrations-grid-food {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .int-card {
            background: white;
            border: 1.5px solid rgba(226,232,240,0.8);
            border-radius: 16px;
            padding: 24px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.2s ease;
        }
        .int-card:hover {
            border-color: rgba(37,99,235,0.25);
            box-shadow: 0 8px 24px rgba(15,23,42,0.08);
            transform: translateY(-3px);
        }
        .int-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            color: #2563eb;
            flex-shrink: 0;
        }
        .int-name {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .int-sub {
            font-size: 16px;
            color: var(--charcoal-light);
            margin-top: 2px;
        }

        /* -- Industries -- */
        .food-industries {
            padding: 100px 0;
            background: white;
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .industry-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 32px 20px;
            text-align: center;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: center;
        }
        .industry-card:hover {
            background: white;
            border-color: rgba(255,69,29,0.2);
            box-shadow: 0 12px 30px rgba(15,23,42,0.09);
            transform: translateY(-5px);
        }
        .industry-icon {
            width: 60px; height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255,69,29,0.1), rgba(255,140,66,0.07));
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            color: var(--primary);
        }
        .industry-card:hover .industry-icon {
            background: linear-gradient(135deg, var(--primary), #ff8c42);
            color: white;
            box-shadow: 0 6px 16px rgba(255,69,29,0.3);
        }
        .industry-title {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .industry-desc {
            font-size: 15px;
            color: var(--charcoal-light);
            line-height: 1.4;
        }

        /* -- Responsive -- */
        @media (max-width: 1100px) {
            .features-grid-food { grid-template-columns: repeat(2, 1fr); }
            .industries-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .overview-grid,
            .why-grid-food { grid-template-columns: 1fr; gap: 48px; }
            .features-grid-food { grid-template-columns: 1fr; }
            .integrations-grid-food { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: repeat(2, 1fr); }
            .why-checklist { grid-template-columns: 1fr; }
            .food-hero { padding: 100px 0 70px; }
        }
        @media (max-width: 480px) {
            .industries-grid { grid-template-columns: 1fr; }
        }

/* ==========================================================================
   Extracted from hospitality.html
   ========================================================================== */

/* -- Hero -- */
        .hosp-hero {
            background: linear-gradient(135deg, #0b1120 0%, #111c35 45%, #0e1929 100%);
            padding: 130px 0 110px;
            position: relative;
            overflow: hidden;
        }
        .hosp-hero::before {
            content: '';
            position: absolute;
            top: -120px; right: -80px;
            width: 580px; height: 580px;
            background: radial-gradient(circle, rgba(99,102,241,0.13) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hosp-hero::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 5%;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(255,69,29,0.09) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hosp-hero-inner {
            position: relative; z-index: 2;
            max-width: 820px;
        }
        .hosp-hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(99,102,241,0.15);
            border: 1px solid rgba(99,102,241,0.35);
            color: #a5b4fc;
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 28px;
        }
        .hosp-hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.08;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }
        .hosp-hero h1 span {
            background: linear-gradient(90deg, #818cf8, #c4b5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hosp-hero-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.72);
            line-height: 1.75;
            margin-bottom: 16px;
            max-width: 700px;
        }
        .hosp-hero-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin-bottom: 42px;
            max-width: 680px;
        }
        .hosp-hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-hosp-primary {
            padding: 15px 36px;
            background: linear-gradient(135deg, #6366f1, #818cf8);
            border: none;
            border-radius: var(--radius-round);
            color: white;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            box-shadow: 0 8px 24px rgba(99,102,241,0.35);
        }
        .btn-hosp-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(99,102,241,0.5);
        }
        .btn-hosp-outline {
            padding: 15px 32px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: var(--radius-round);
            color: white;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 15px;
            background: transparent;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        .btn-hosp-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: white;
        }

        /* -- Section Helpers -- */
        .section-label-hosp {
            display: block;
            font-family: var(--font-heading);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom: 14px;
        }
        .section-title-lg {
            font-family: var(--font-heading);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            color: var(--navy-deep);
            letter-spacing: -1px;
            margin-bottom: 14px;
        }
        .section-sub {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.75;
            max-width: 640px;
        }

        /* -- Overview -- */
        .hosp-overview {
            padding: 100px 0;
            background: #ffffff;
        }
        .overview-grid-hosp {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .overview-text-hosp h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: var(--navy-deep);
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .overview-text-hosp p {
            font-size: 16px;
            color: var(--charcoal-light);
            line-height: 1.8;
            margin-bottom: 14px;
        }
        .perfect-for-label-hosp {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6366f1;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        .perfect-tags-hosp {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .perfect-tag-hosp {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(99,102,241,0.08);
            border: 1px solid rgba(99,102,241,0.2);
            color: #6366f1;
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 400;
            padding: 6px 14px;
            border-radius: 50px;
        }
        .overview-image-hosp {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(15,23,42,0.14);
            min-height: 520px;
            display: flex;
        }
        .overview-image-hosp img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* -- Smart Features -- */
        .hosp-features {
            padding: 100px 0;
            background: #ffffff;
        }
        .features-grid-hosp {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .feat-card-hosp {
            background: #f8fafc;
            border-radius: 18px;
            padding: 30px 24px;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feat-card-hosp:hover {
            background: white;
            border-color: rgba(99,102,241,0.2);
            box-shadow: 0 12px 32px rgba(15,23,42,0.09);
            transform: translateY(-5px);
        }
        .feat-icon-hosp {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: rgba(99,102,241,0.1);
            color: #6366f1;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
        }
        .feat-card-hosp:hover .feat-icon-hosp {
            background: linear-gradient(135deg, #6366f1, #818cf8);
            color: white;
            box-shadow: 0 6px 16px rgba(99,102,241,0.35);
        }
        .feat-title-hosp {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .feat-desc-hosp {
            font-size: 14px;
            color: var(--charcoal-light);
            line-height: 1.65;
        }

        /* -- Why Choose -- */
        .hosp-why {
            padding: 100px 0;
            background: linear-gradient(135deg, #0b1120 0%, #111c35 100%);
            position: relative;
            overflow: hidden;
        }
        .hosp-why::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 440px; height: 440px;
            background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hosp-why::after {
            content: '';
            position: absolute;
            bottom: -60px; left: -40px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(255,69,29,0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .why-grid-hosp {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative; z-index: 2;
        }
        .why-text-hosp h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: white;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        .why-text-hosp p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin-bottom: 36px;
        }
        .why-checklist-hosp {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 24px;
        }
        .why-item-hosp {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.85);
            font-size: 15px;
        }
        .why-dot-hosp {
            width: 26px; height: 26px;
            background: rgba(99,102,241,0.2);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #a5b4fc;
            font-size: 11px;
            flex-shrink: 0;
        }

        /* -- Integrations -- */
        .hosp-integrations {
            padding: 100px 0;
            background: #f8fafc;
        }
        .integrations-grid-hosp {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 56px;
        }
        .int-card-hosp {
            background: white;
            border: 1.5px solid rgba(226,232,240,0.8);
            border-radius: 16px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            transition: all 0.2s ease;
        }
        .int-card-hosp:hover {
            border-color: rgba(99,102,241,0.25);
            box-shadow: 0 8px 24px rgba(15,23,42,0.08);
            transform: translateY(-4px);
        }
        .int-icon-hosp {
            width: 48px; height: 48px;
            background: rgba(99,102,241,0.1);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            color: #6366f1;
        }
        .int-card-hosp:hover .int-icon-hosp {
            background: linear-gradient(135deg, #6366f1, #818cf8);
            color: white;
            box-shadow: 0 4px 14px rgba(99,102,241,0.35);
        }
        .int-name-hosp {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            color: var(--navy-deep);
            line-height: 1.4;
        }

        /* -- Industries -- */
        .hosp-industries {
            padding: 100px 0;
            background: white;
        }
        .industries-grid-hosp {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 56px;
        }
        .industry-card-hosp {
            background: #f8fafc;
            border-radius: 20px;
            padding: 34px 20px;
            text-align: center;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: center;
        }
        .industry-card-hosp:hover {
            background: white;
            border-color: rgba(99,102,241,0.2);
            box-shadow: 0 12px 30px rgba(15,23,42,0.09);
            transform: translateY(-5px);
        }
        .industry-icon-hosp {
            width: 60px; height: 60px;
            border-radius: 16px;
            background: rgba(99,102,241,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            color: #6366f1;
        }
        .industry-card-hosp:hover .industry-icon-hosp {
            background: linear-gradient(135deg, #6366f1, #818cf8);
            color: white;
            box-shadow: 0 6px 16px rgba(99,102,241,0.3);
        }
        .industry-title-hosp {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 500;
            color: var(--navy-deep);
        }
        .industry-desc-hosp {
            font-size: 13px;
            color: var(--charcoal-light);
            line-height: 1.6;
        }

        /* -- Responsive -- */
        @media (max-width: 1100px) {
            .features-grid-hosp { grid-template-columns: repeat(2, 1fr); }
            .integrations-grid-hosp { grid-template-columns: repeat(3, 1fr); }
            .industries-grid-hosp { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .overview-grid-hosp,
            .why-grid-hosp { grid-template-columns: 1fr; gap: 48px; }
            .features-grid-hosp { grid-template-columns: 1fr; }
            .integrations-grid-hosp { grid-template-columns: repeat(2, 1fr); }
            .industries-grid-hosp { grid-template-columns: repeat(2, 1fr); }
            .why-checklist-hosp { grid-template-columns: 1fr; }
            .hosp-hero { padding: 100px 0 70px; }
        }
        @media (max-width: 480px) {
            .integrations-grid-hosp,
            .industries-grid-hosp { grid-template-columns: 1fr; }
        }

/* ==========================================================================
   Extracted from software-integrations.html
   ========================================================================== */

/* --- DEDICATED ECOSYSTEM PAGE STYLES --- */
        .integration-wrapper {
            display: grid;
            grid-template-columns: 1.12fr 0.88fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .integration-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* Hero Callout Styling */
        .hero-callout-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(212, 10, 67, 0.15) 0%, rgba(212, 10, 67, 0.15) 100%);
            color: var(--pure-white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 18px;
            border-radius: var(--radius-round);
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* --- ECOSYSTEM DYNAMIC VISUALIZER --- */
        .visualizer-card {
            background-color: var(--navy-slate);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 32px;
            box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .visualizer-canvas {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            position: relative;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Dotted Radial Lines SVG */
        .visualizer-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .visualizer-line {
            stroke: rgba(255, 255, 255, 0.12);
            stroke-width: 2;
            stroke-dasharray: 6 4;
        }

        .visualizer-pulse-trail {
            stroke: var(--primary);
            stroke-width: 2.5;
            stroke-dasharray: 10 30;
            stroke-linecap: round;
            stroke-dashoffset: 0;
            animation: pulse-flow 4s linear infinite;
            opacity: 0.15;
            transition: opacity 0.3s ease, stroke 0.3s ease;
        }

        .visualizer-pulse-trail.active {
            opacity: 1;
            stroke: var(--primary);
            animation-duration: 2s;
        }

        @keyframes pulse-flow {
            to {
                stroke-dashoffset: -120;
            }
        }

        /* Interactive Nodes */
        .node-wrapper {
            position: absolute;
            width: 68px;
            height: 68px;
            z-index: 5;
        }

        .v-node {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--navy-deep);
            border: 2.5px solid rgba(255, 255, 255, 0.15);
            color: var(--pure-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .v-node:hover, .v-node.active {
            border-color: var(--primary);
            background-color: var(--primary);
            box-shadow: 0 0 25px rgba(212, 10, 67, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .v-node.active {
            border-color: var(--primary);
            background-color: var(--primary);
            box-shadow: 0 0 25px var(--primary-glow), inset 0 1px 1px rgba(255, 255, 255, 0.3);
        }

        /* Hub Kiosk node */
        .v-node-hub {
            width: 90px;
            height: 90px;
            background-color: var(--pure-white);
            border: 3.5px solid var(--primary);
            color: var(--navy-deep);
            font-size: 32px;
            z-index: 10;
            cursor: default;
            box-shadow: var(--shadow-md), 0 0 35px rgba(212, 10, 67, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .v-node-hub:hover {
            transform: none;
            background-color: var(--pure-white);
            border-color: var(--primary);
        }

        .v-node-hub-label {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--primary);
            margin-top: 2px;
            font-family: var(--font-heading);
        }

        /* Radial Placements (X/Y coordinates) - Pulled inward for safe label sizing */
        .node-pos-1 { top: 6%; left: 43%; }      /* POS / EPOS Integration (Top) */
        .node-pos-2 { top: 18%; left: 74%; }     /* Customer Display System (CDS) */
        .node-pos-3 { top: 43%; left: 80%; }     /* Payment Integration */
        .node-pos-4 { top: 68%; left: 74%; }     /* Online Ordering */
        .node-pos-5 { top: 80%; left: 43%; }     /* Loyalty & Rewards */
        .node-pos-6 { top: 68%; left: 12%; }      /* Cloud Management */
        .node-pos-7 { top: 43%; left: 6%; }      /* Thermal Printer */
        .node-pos-8 { top: 18%; left: 12%; }      /* Kitchen Display System (KDS) */

        /* Visualizer Detail Overlay Box */
        .v-overlay-box {
            width: 100%;
            background-color: var(--navy-deep);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px;
            margin-top: 16px;
            min-height: 150px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
        }

        .v-overlay-icon {
            font-size: 32px;
            color: var(--primary);
            background-color: rgba(212, 10, 67, 0.1);
            width: 60px;
            height: 60px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .active-orange .v-overlay-icon {
            color: var(--primary);
            background-color: var(--primary-tint);
        }

        .v-overlay-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: left;
        }

        .v-overlay-title {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--pure-white);
            font-weight: 500;
        }

        .v-overlay-subtitle {
            font-size: 12px;
            font-weight: 500;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: -2px;
        }

        .v-overlay-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        /* Floating label guides */
        .node-guide-txt {
            position: absolute;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            text-transform: uppercase;
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }
        .v-node:hover + .node-guide-txt, .v-node.active + .node-guide-txt {
            color: var(--pure-white);
        }

        .guide-pos-1 { top: -26px; left: 50%; transform: translateX(-50%); }
        .guide-pos-2 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-3 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-4 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-5 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-6 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-7 { top: 76px; left: 50%; transform: translateX(-50%); }
        .guide-pos-8 { top: 76px; left: 50%; transform: translateX(-50%); }

        /* --- INTEGRATED SOLUTIONS GRID SECTION --- */
        .solutions-showcase-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        @media (max-width: 1200px) {
            .solutions-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .solutions-showcase-grid {
                grid-template-columns: 1fr;
            }
        }

        .solution-card-box {
            background-color: var(--pure-white);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--radius-md);
            padding: 30px 24px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            text-align: left;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .solution-card-box:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 10, 67, 0.2);
        }

        .solution-card-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary);
            opacity: 0.1;
            transition: all var(--transition-fast);
        }

        .solution-card-box:hover::before {
            background-color: var(--primary);
            opacity: 1;
        }

        .solution-card-icon {
            font-size: 28px;
            color: var(--primary);
            width: 54px;
            height: 54px;
            background-color: rgba(212, 10, 67, 0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
        }

        .solution-card-box:hover .solution-card-icon {
            color: var(--pure-white);
            background-color: var(--primary);
            box-shadow: 0 4px 12px var(--primary-glow);
        }

        .solution-card-title {
            font-family: var(--font-heading);
            font-size: 17px;
            color: var(--navy-deep);
            font-weight: 500;
        }

        .solution-card-desc {
            font-size: 14px;
            color: var(--charcoal-light);
            line-height: 1.5;
        }

        /* --- KEY BENEFITS SECTION --- */
        .benefits-showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        @media (max-width: 992px) {
            .benefits-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .benefits-showcase-grid {
                grid-template-columns: 1fr;
            }
        }

        .benefit-card-box {
            background-color: var(--ice-white);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1.5px solid transparent;
            transition: all var(--transition-normal);
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .benefit-card-box:hover {
            background-color: var(--pure-white);
            border-color: rgba(212, 10, 67, 0.2);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .benefit-card-check {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--primary-tint);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: inset 0 1px 2px var(--primary-tint);
        }

        .benefit-card-title {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--navy-deep);
            font-weight: 500;
        }

        .benefit-card-desc {
            font-size: 14.5px;
            color: var(--charcoal-light);
            line-height: 1.6;
        }

        /* --- PERFECT FOR SLANTED NICHE BAR --- */
        .perfect-for-section {
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-slate) 100%);
            color: var(--pure-white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--primary);
        }

        .perfect-for-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 10, 67, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .perfect-for-pills-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }

        .perfect-pill {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1.5px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 24px;
            border-radius: var(--radius-round);
            transition: all var(--transition-fast);
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-sm);
        }

        .perfect-pill:hover {
            border-color: var(--primary);
            background-color: var(--primary-tint);
            color: var(--primary);
            box-shadow: 0 0 15px rgba(212, 10, 67, 0.2);
            transform: scale(1.05);
        }

        /* --- FINAL DUAL SYSTEM HIGHLIGHT CARD (CTA SUPPORT) --- */
        .highlight-cta-banner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            background: linear-gradient(135deg, var(--ice-white) 0%, rgba(212, 10, 67, 0.03) 100%);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--radius-xl);
            padding: 60px;
            box-shadow: var(--shadow-md);
            align-items: center;
            text-align: left;
            margin-top: 60px;
        }

        @media (max-width: 992px) {
            .highlight-cta-banner {
                grid-template-columns: 1fr;
                padding: 40px;
                gap: 28px;
            }
        }

        .highlight-badge {
            background-color: var(--primary-tint);
            color: var(--primary);
            border: 1px solid rgba(255,69,29,0.2);
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: var(--radius-round);
            display: inline-block;
            margin-bottom: 16px;
        }

        .highlight-banner-body {
            font-size: 16.5px;
            color: var(--charcoal-light);
            line-height: 1.6;
            margin-top: 12px;
        }

        .highlight-cta-box {
            background-color: var(--navy-deep);
            color: var(--pure-white);
            padding: 36px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Override standard guides responsive display */
        @media (max-width: 480px) {
            .v-node {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
            .v-node-hub {
                width: 70px;
                height: 70px;
                font-size: 24px;
            }
            .v-node-hub-label {
                font-size: 8px;
            }
            .node-guide-txt {
                display: none; /* Hide guide texts on super small screens to save layout */
            }
            .v-overlay-box {
                flex-direction: column;
                gap: 12px;
            }
            .v-overlay-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }

/* ==========================================================================
   Payment Integrations Page Styles
   ========================================================================== */

.payment-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.payment-section.bg-light {
    background-color: var(--ice-white);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.payment-grid.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-badge {
    background-color: var(--primary-tint);
    border: 1px solid rgba(212, 10, 67, 0.2);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-round);
    display: inline-block;
    width: fit-content;
}

.payment-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.25;
}

.payment-desc {
    font-size: 16px;
    color: var(--charcoal-light);
    line-height: 1.75;
}

.payment-benefits-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-top: 10px;
}

.payment-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-top: 8px;
}

.payment-benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.payment-benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-benefit-text {
    font-size: 14.5px;
    color: var(--charcoal);
    line-height: 1.5;
    font-weight: 500;
}

.payment-benefit-text strong {
    color: var(--primary); /* Resolves to #d40a43 */
    font-weight: 700;
}

.payment-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.payment-image-wrapper img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
    transition: transform var(--transition-normal);
}

.payment-image-wrapper img:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .payment-grid, .payment-grid.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .payment-grid .payment-image-wrapper {
        order: 2; /* push image below text on mobile */
    }
    .payment-grid.reverse .payment-image-wrapper {
        order: 2;
    }
    .payment-title {
        font-size: 28px;
    }
    .payment-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}