/* Poppins Font Family - Local */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Lexoh Authentic Design - Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #008ba3;
    --cyan-dark: #007a8e;
    --cyan-light: #00a1b8;
    --cyan-hover: #006d7e;
    --dark-gray: #2c2c2c;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --mint: #d4f4f7;
    --blue-tint: #e8f4f8;
    --text: #333;
    --text-light: #666;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.18);
    --shadow-cyan: 0 8px 24px rgba(0, 188, 212, 0.3);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* padding-top: 80px; */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--dark-gray);
}
h1 { color: white;}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }

p {
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

section.all-white,
section.all-white h2,
section.all-white h3,
section.all-white h4 {
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-gray);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0px !important;
    height: 80px;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 20px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    height: 20px;
    padding: 0 15px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--cyan);
}

.nav-item.menu-active .nav-link {
    color: var(--cyan);
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.6;
    transition: transform 0.3s;
}

.nav-item.menu-active .arrow {
    transform: rotate(180deg);
}

.nav-right {
    display: flex;
    align-items: center;
}

.lang-selector {
    position: relative;
}

.lang {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.lang:hover {
    color: var(--cyan);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.lang-option:hover {
    background: var(--light-gray);
    color: var(--cyan);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
}

/* Mega Menu Overlay */
.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease, visibility 0.4s;
    z-index: 998;
    pointer-events: none;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

/* Mega Menu */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 0;
    overflow: hidden;
    transform-origin: top;
    transition: height 0.3s ease;
    z-index: 999;
}

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px;
    position: relative;
}

.mega-menu-panel {
    display: none;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    opacity: 0;
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    transition: opacity 0.3s ease;
}

.mega-menu-panel.active {
    display: grid;
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.mega-menu-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mega-menu-item {
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-30px);
    background: var(--light-gray);
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.mega-menu-panel.active .mega-menu-item {
    animation: slideInLeft 0.5s ease forwards;
}

.mega-menu-panel.active .mega-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mega-menu-panel.active .mega-menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mega-menu-panel.active .mega-menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mega-menu-panel.active .mega-menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mega-menu-panel.active .mega-menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.mega-menu-panel.active .mega-menu-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-menu-item:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.mega-menu-item-content {
    flex: 1;
}

.menu-icon {
    width: 28px;
    height: 28px;
    color: black;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.mega-menu-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.mega-menu-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.mega-menu-right {
    display: flex;
    align-items: center;
}

.mega-promo {
    background: linear-gradient(135deg, var(--cyan), #0097a7);
    padding: 40px;
    border-radius: 20px;
    color: white;
    opacity: 0;
    transform: translateX(30px);
    box-shadow: var(--shadow-lg);
}

.mega-menu-panel.active .mega-promo {
    animation: slideInRight 0.6s ease forwards 0.3s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-promo:hover {
    transform: translateY(-5px);
    transition: transform 0.3s;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.mega-promo h4 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mega-promo p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-cyan-small {
    display: inline-block;
    background: white;
    color: var(--cyan);
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cyan-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Catalog Menu Styles */
.catalog-panel {
    grid-template-columns: 300px 1fr !important;
    gap: 0 !important;
}

.catalog-left {
    background: var(--light-gray);
    padding: 20px 0;
    border-radius: 12px;
}

.catalog-category {
    padding: 18px 30px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateX(-20px);
}

.catalog-panel.active .catalog-category {
    animation: slideInLeft 0.4s ease forwards;
}

.catalog-panel.active .catalog-category:nth-child(1) {
    animation-delay: 0.1s;
}

.catalog-panel.active .catalog-category:nth-child(2) {
    animation-delay: 0.15s;
}

.catalog-panel.active .catalog-category:nth-child(3) {
    animation-delay: 0.2s;
}

.catalog-panel.active .catalog-category:nth-child(4) {
    animation-delay: 0.25s;
}

.catalog-panel.active .catalog-category:nth-child(5) {
    animation-delay: 0.3s;
}

.catalog-panel.active .catalog-category:nth-child(6) {
    animation-delay: 0.35s;
}

.catalog-category:hover {
    background: rgba(255, 255, 255, 0.5);
    border-left-color: var(--cyan);
}

.catalog-category.active {
    background: white;
    border-left-color: var(--cyan);
}

.catalog-category h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0;
}

.catalog-right {
    padding: 0px 40px;
    position: relative;
    /* min-height: 400px; */
}

.catalog-products {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.catalog-products.active {
    display: grid;
    opacity: 1;
    transform: translateX(0);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.catalog-product {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.catalog-products.active .catalog-product {
    animation: slideInLeft 0.5s ease forwards;
}

.catalog-products.active .catalog-product:nth-child(1) {
    animation-delay: 0.1s;
}

.catalog-products.active .catalog-product:nth-child(2) {
    animation-delay: 0.15s;
}

.catalog-products.active .catalog-product:nth-child(3) {
    animation-delay: 0.2s;
}

.catalog-products.active .catalog-product:nth-child(4) {
    animation-delay: 0.25s;
}

.catalog-products.active .catalog-product:nth-child(5) {
    animation-delay: 0.3s;
}

.catalog-products.active .catalog-product:nth-child(6) {
    animation-delay: 0.35s;
}

.catalog-products.active .catalog-product:nth-child(7) {
    animation-delay: 0.4s;
}

.catalog-products.active .catalog-product:nth-child(8) {
    animation-delay: 0.45s;
}

.catalog-product a {
    text-decoration: none !important;
}

.catalog-product:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23667eea" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    max-width: 700px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-cyan {
    background: var(--cyan);
    color: white;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-base);
    display: inline-block;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn-cyan:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}

.btn-cyan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cyan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cyan:hover {
    background: var(--cyan-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

.btn-cyan:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-base);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--dark-gray);
    box-shadow: var(--shadow-md);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* Platform Section */
.platform {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.platform h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* Modern Platform Tabs */
.platform-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.platform-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    position: relative;
    margin-bottom: -2px;
    overflow: visible;
}

.platform-tab::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.platform-tab:hover:not(.active)::before {
    transform: scaleX(1) !important;
}

.platform-tab.active::before {
    transform: scaleX(1) !important;
    opacity: 1;
}

.platform-tab .tab-number {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    transition: color 0.3s ease;
}

.platform-tab .tab-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.platform-tab:hover .tab-number,
.platform-tab:hover .tab-label {
    color: var(--text);
}

.platform-tab.active {
    border-bottom-color: var(--cyan);
}

.platform-tab.active .tab-number {
    color: var(--cyan);
    font-weight: 600;
}

.platform-tab.active .tab-label {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Platform Content - Infinite Carousel */
.platform-content {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    z-index: auto;
}

.platform-panels-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    padding: 0 calc(50vw - 700px);
    position: relative;
    z-index: auto;
}

.platform-panel {
    flex-shrink: 0;
    width: 1400px;
    max-width: 1400px;
    min-width: 1400px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 0;
    box-sizing: border-box;
    background: rgb(240, 243, 248);
    border-radius: 24px;
}

.platform-panel.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
    position: relative;
}

.platform-panel.side-panel {
    opacity: 0.5;
    transform: scale(0.85);
    z-index: 1;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-container {
    display: grid;
    grid-template-columns: 1fr 700px;
    gap: 0;
    align-items: stretch;
    height: 100%;
    min-height: 280px;
}

.panel-left {
    position: relative;
    order: 2;
    height: 100%;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}

.panel-right {
    order: 1;
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-visual {
    background: linear-gradient(135deg, #e8f5f7 0%, #d4f1f4 100%);
    padding: 0;
    min-height: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.panel-visual:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.panel-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300bcd4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Placeholder graphics for each tab - using background images */
.deploy-visual {
    background-image: url('../assets/small01-47-32_00001__png.webp');
    background-size: cover;
    background-position: center;
}

.scale-visual {
    background-image: url('../assets/scalability_png.webp');
    background-size: cover;
    background-position: center;
}

.secure-visual {
    background-image: url('../assets/small00-59-41_00002_-1_png.webp');
    background-size: cover;
    background-position: center;
}

.integration-visual {
    background-image: url('../assets/small07-17-26_00001__png.webp');
    background-size: cover;
    background-position: center;
}

.anytime-visual {
    background-image: url('../assets/small08-26-03_00001__png.webp');
    background-size: cover;
    background-position: center;
}

.panel-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.panel-right h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.3;
}

.panel-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Feature List with Icons */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}

.feature-item span {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    padding-top: 4px;
}

.link-discover {
    display: inline-flex;
    align-items: center;
    color: var(--cyan);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 8px;
}

.link-discover::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-discover:hover {
    color: #00acc1;
}

.link-discover:hover::after {
    transform: translateX(4px);
}

/* Kiosk Section */
.kiosk {
    padding: 100px 0;
    background: var(--light-gray);
}

.kiosk-header {
    margin-bottom: 60px;
}

.badge {
    background: var(--cyan);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.kiosk-header h2 {
    font-size: 36px;
    font-weight: 300;
    color: var(--dark-gray);
}

.kiosk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.kiosk-info {
    display: flex;
    flex-direction: column;
}

.kiosk-info h3 {
    font-size: 32px;
    font-weight: 200;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.model {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.features-list {
    margin-top: 40px;
}

.feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    font-size: 13px;
    color: var(--text);
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.feat:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.feat .icon {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}


@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.kiosk-3d {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.kiosk-3d::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(1200px 700px at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%),
        radial-gradient(500px 300px at 70% 30%, rgba(255,255,255,0.08), transparent 70%);
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: 2;
}

/* Enhanced kiosk visual container */
.kiosk-visual {
    border-radius: 20px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* Ensure canvas is under overlays */
.kiosk-3d canvas{ position: relative; z-index: 1; display:block; }

/* Preset buttons */
.kiosk-3d-presets{
    position: absolute;
    left: 14px; right: 14px; bottom: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}
.kiosk-3d-presets button{
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(10, 14, 24, 0.38);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.92);
    font-weight: 650;
    letter-spacing: 0.2px;
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.kiosk-3d-presets button:hover{
    transform: translateY(-1px);
    background: rgba(10, 14, 24, 0.55);
    border-color: rgba(255,255,255,0.22);
}
.kiosk-3d-presets button:active{
    transform: translateY(0) scale(0.98);
}

.kiosk-3d-gate-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 65px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}
.kiosk-3d-gate-controls button {
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 14, 24, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 650;
    letter-spacing: 0.2px;
    transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.kiosk-3d-gate-controls button:nth-child(1) {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}
.kiosk-3d-gate-controls button:nth-child(1):hover {
    background: rgba(76, 175, 80, 0.3);
}

.kiosk-3d-gate-controls button:nth-child(2) {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}
.kiosk-3d-gate-controls button:nth-child(2):hover {
    background-color: rgba(244, 67, 54, 0.3);
}

.kiosk-3d-gate-controls button:hover{
    transform: translateY(-1px);
}
.kiosk-3d-gate-controls button:active{
    transform: translateY(0) scale(0.98);
}

/* Platform Section Responsive Design */
@media (max-width: 1200px) {
    .platform-panel {
        width: 95vw;
        max-width: 95vw;
        min-width: 95vw;
    }
    .platform-panels-wrapper {
        padding: 0 2.5vw;
    }
    .panel-container {
        grid-template-columns: 1fr 600px;
    }
}

@media (max-width: 1024px) {
    .platform-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 0 10px 0;
        justify-content: flex-start;
    }
    .platform-tabs::-webkit-scrollbar {
        display: none;
    }
    .platform-tab {
        flex-shrink: 0;
        min-width: 160px;
    }
    .panel-container {
        grid-template-columns: 1fr 500px;
    }
    .panel-right {
        padding: 30px 35px;
    }
    .panel-right h3 {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .platform-content {
        margin-left: -23px;
        width: 100vw !important;
    }
    .platform-panels-wrapper {
        padding: 0 20px;
    }
    .platform-panel {
        width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
    }
    .panel-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        min-height: auto;
    }
    .panel-left {
        order: 1;
        height: 280px;
        border-radius: 24px 24px 0 0;
    }
    .panel-right {
        order: 2;
        padding: 30px 25px;
        border-radius: 0 0 24px 24px;
    }
    .panel-visual {
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .platform {
        padding: 60px 0;
    }
    .platform .container h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .platform .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .platform-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    .platform-tab {
        min-width: 140px;
        padding: 12px 16px;
    }
    .tab-number {
        font-size: 10px;
    }
    .tab-label {
        font-size: 12px;
    }
    .platform-panel {
        width: calc(100vw - 50px);
        max-width: calc(100vw - 50px);
        min-width: calc(100vw - 50px);
        border-radius: 16px;
    }
    .panel-left {
        height: 200px;
        border-radius: 16px 16px 0 0;
    }
    .panel-right {
        padding: 25px 20px;
        border-radius: 0 0 16px 16px;
    }
    .panel-visual {
        min-height: 220px;
        height: 220px;
        border-radius: 16px 16px 0 0;
    }
    .panel-number {
        font-size: 11px;
        margin-bottom: 10px;
    }
    .panel-right h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .panel-desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .feature-list {
        gap: 10px;
        margin-bottom: 18px;
    }
    .feature-icon {
        width: 28px;
        height: 28px;
    }
    .feature-icon svg {
        width: 14px;
        height: 14px;
    }
    .feature-item span {
        font-size: 12px;
    }
    .link-discover {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .platform-tab {
        min-width: 120px;
        padding: 10px 14px;
    }
    .tab-label {
        font-size: 11px;
    }
    .platform-panels-wrapper {
        padding: 0 15px;
    }
    .platform-panel {
        width: calc(100vw - 50px);
        max-width: calc(100vw - 50px);
        min-width: calc(100vw - 50px);
    }
    .panel-left {
        height: 180px;
    }
    .panel-right {
        padding: 18px 15px;
    }
    .panel-visual {
        min-height: 180px;
        height: 180px;
    }
    .panel-right h3 {
        font-size: 18px;
    }
    .panel-desc {
        font-size: 12px;
    }
    .feature-item span {
        font-size: 11px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kiosk-visual {
        padding: 40px 20px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .kiosk-visual {
        padding: 30px 15px;
        min-height: 350px;
    }
}

.kiosk-3d{
    position:relative;
    min-height:480px;
    border-radius:24px;
    overflow:hidden;

    /* Background plate behind the transparent WebGL canvas */
    background:
    radial-gradient(900px 520px at 70% 20%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 520px at 20% 80%, rgba(0,158,255,0.10), transparent 60%),
    linear-gradient(180deg, #05060a 0%, #0b0f18 45%, #06070c 100%);
    box-shadow: 0 18px 55px rgba(0,0,0,0.30), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.kiosk-3d::before{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    background:
    radial-gradient(1200px 700px at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%),
    radial-gradient(420px 260px at 70% 28%, rgba(255,255,255,0.08), transparent 70%);
    opacity: 0.9;
    z-index: 2;
}
.kiosk-3d canvas{ position:relative; z-index:1; display:block; background:transparent !important; }

.kiosk-3d-presets{
    position:absolute;
    left:14px; right:14px; bottom:14px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    pointer-events:none;
    z-index:3;
}
.kiosk-3d-presets button{
    pointer-events:auto;
    cursor:pointer;
    user-select:none;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.16);
    background:rgba(10, 14, 24, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color:rgba(255,255,255,0.92);
    font-weight:650;
    letter-spacing:0.2px;
    transition:transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.kiosk-3d-presets button:hover{
    transform: translateY(-1px);
    background: rgba(10, 14, 24, 0.55);
    border-color: rgba(255,255,255,0.24);
}
.kiosk-3d-presets button:active{ transform: translateY(0) scale(0.985); }

.kiosk-3d-overlay{
    position:absolute; inset:0;
    display:grid; place-items:center;
    z-index:4;
    pointer-events:none;
    padding:18px;
    font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:rgba(255,255,255,0.92);
}
.kiosk-3d-overlay .box{
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.14);
    background:rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align:center;
    max-width: 520px;
}
.kiosk-3d-spinner{
    width:18px;
    height:18px;
    border-radius:999px;
    border:2px solid rgba(255,255,255,0.20);
    border-top-color: rgba(255,255,255,0.85);
    display:inline-block;
    animation: kioskSpin 900ms linear infinite;
    vertical-align:-3px;
    margin-right:10px;
}
@keyframes kioskSpin { to { transform: rotate(360deg); } }

.kiosk-desc {
    margin: 0 auto;
}

.kiosk-desc p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Flipped kiosk content layout */
.kiosk-content-flipped {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

/* Municipalities */
.municipalities {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.municipalities h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 8px;
}

.testimonial {
    max-width: 700px;
    margin: 60px auto;
}

.avatar {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    font-size: 14px;
    color: var(--text-light);
}

.author strong {
    color: var(--text);
}

/* Enhanced Gallery */
.gallery {
    padding: 60px 0;
    background: var(--light-gray);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-tile {
    position: relative;
    width: 100%;
    height: 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.gallery-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-tile:hover img {
    transform: scale(1.05);
}

.gallery-tile .placeholder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.gallery-tile .placeholder-content {
    cursor: default;
}

.gallery-tile:has(.placeholder-content):hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 19000 !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-modal-image-container {
    position: relative;
    max-width: 80vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container img {
    height: 75vh;
    width: auto;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.gallery-modal-close {
    position: absolute;
    top: -35px;
    right: -70px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 300;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-modal-info {
    margin-top: 30px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.gallery-modal-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.gallery-modal-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.gallery-modal-counter {
    font-size: 14px;
    opacity: 0.7;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-tile {
        height: 200px;
    }

    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .gallery-modal-image-container {
        max-width: 90vw;
        max-height: 60vh;
    }

    .gallery-modal-close {
        top: 0px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        z-index: 1;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 28px;
        z-index: 1;
    }

    .gallery-prev {
        left: 10px;
        z-index: 1;
    }

    .gallery-next {
        right: 10px;
        z-index: 1;
    }

    .gallery-modal-info {
        margin-top: 20px;
        padding: 0 20px;
    }

    .gallery-modal-info h3 {
        font-size: 20px;
    }

    .gallery-modal-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-modal-image-container {
        max-width: 95vw !important;
        max-height: 75vh !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    .gallery-modal-image-container img {
        width: 100% !important;
        height: auto !important;
        max-height: 75vh !important;
        max-width: 95vw !important;
        object-fit: contain !important;
        min-width: 0 !important;
    }
}

/* Access Control */
.access-control {
    padding: 100px 0;
    background: var(--blue-tint);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-visual {
    position: relative;
}

.map-mockup {
    width: 100%;
    padding: 10px 10px 0px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.map-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
}

.label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.split-text h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--dark-gray);
    line-height: 1.4;
}

.split-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Video Monitoring */
.video-monitoring {
    padding: 100px 0;
    background: white;
}

.video-monitoring h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-gray);
    line-height: 1.4;
}

.video-mockup {
    width: 100%;
    max-height: 500px;
    background: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 50px;
}

.video-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.desc-col p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
/* Customer Logos Scrolling Section */
.customer-logos-section {
    padding: 50px 0 40px;
    background: #ededef;
    overflow: hidden;
}

.logos-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logos-scroll {
    display: flex;
    gap: 10px;
    animation: scroll-logos 40s linear infinite;
    width: max-content;
}

.logos-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.customer-logo {
    max-height: 100%;
    /* max-width: 180px; */
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.6); */
    transition: all 0.3s ease;
}

.logo-item:hover .customer-logo {
    /* filter: grayscale(0%) opacity(1); */
    transform: scale(1.1);
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #999;
    background: var(--light-gray);
    border-radius: 8px;
    min-width: 140px;
    height: 60px;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-placeholder {
    color: var(--cyan);
    background: rgba(0, 188, 212, 0.05);
    transform: translateY(-5px);
}

.footer {
    padding: 80px 0 40px;
    background: var(--dark-gray);
    color: #bbb;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col .footer-heading {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--cyan);
}

.badge-compliance {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.badge-compliance strong {
    color: white;
}

.badge-compliance small {
    font-size: 11px;
    color: #aaa;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 12px;
    color: #aaa;
}

.social {
    display: flex;
    gap: 15px;
}

.social a {
    color: #aaa;
    transition: color 0.3s;
}

.social a:hover {
    color: var(--cyan);
}

/* Responsive */
@media (max-width: 1024px) {
    .panel-grid, .kiosk-content, .split, .video-desc {
        grid-template-columns: 1fr;
    }

    .panel-grid.reverse {
        direction: ltr;
    }

    .mega-menu-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mega-menu-left {
        grid-template-columns: 1fr;
    }

    .catalog-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .catalog-products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        height: 60px;
        z-index: 10000 !important;
    }

    .navbar .container-fluid {
        height: 60px;
        padding: 0px;
        position: relative;
        justify-content: center;
        display: flex;
        align-items: center;
        max-width: 100%;
        z-index: 10001;
    }

    .logo {
        font-size: 20px;
        z-index: 10002;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 40px !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 100%;
        width: auto;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0 !important;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        height: auto;
        padding: 15px 10px;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link .arrow {
        transition: transform 0.3s ease;
    }

    .nav-item.menu-active .nav-link .arrow {
        transform: rotate(180deg);
    }

    .nav-right {
        position: static;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .lang-selector {
        display: none;
    }

    /* Show language links directly in mobile menu */
    .nav-right::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: var(--light-gray);
        margin: 10px 0;
    }

    .lang-dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block !important;
        background: transparent;
    }

    .lang-option {
        padding: 15px 10px;
        display: block;
        color: var(--dark-gray);
        text-decoration: none;
        font-size: 16px;
        transition: background 0.3s ease;
    }

    .lang-option:hover {
        background: var(--light-gray);
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        z-index: 10002;
        padding: 10px;
        position: absolute;
        right: 10px;
        transition: transform 0.3s ease;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-toggle.active {
        /* No rotation on the button itself */
    }
    
    .mobile-toggle span {
        transition: all 0.3s ease;
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark-gray);
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Mega Menu */
    .mega-menu {
        position: static;
        top: auto;
        width: 100%;
        box-shadow: none;
        height: auto !important;
        overflow: visible;
        background: transparent;
        margin-top: 0;
    }
    
    .mega-menu-overlay {
        display: none;
    }
    
    .mega-menu-content {
        padding: 0;
        max-width: 100%;
    }
    
    /* Mega menu panels inside nav items on mobile */
    .nav-item .mega-menu-panel {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        opacity: 1;
        padding: 0;
        background: var(--light-gray);
        border-radius: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .nav-item .mega-menu-panel.active {
        display: block;
        max-height: 2000px;
    }
    
    .mega-menu-left {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .mega-menu-item {
        border-radius: 0;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
        transform: none;
        opacity: 1;
        animation: none !important;
        background: white;
    }
    
    .mega-menu-item h3 {
        font-size: 14px;
    }
    
    .mega-menu-item p {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .menu-icon {
        width: 20px;
        height: 20px;
    }
    
    .mega-menu-right {
        display: none;
    }
    
    /* Mobile Catalog Menu */
    .catalog-panel {
        grid-template-columns: 1fr;
        gap: 0;
        background: var(--light-gray);
    }
    
    .catalog-left {
        background: white;
        padding: 0;
        border-radius: 0;
        gap: 0;
    }
    
    .catalog-category {
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid #e0e0e0;
        border-left: none !important;
        animation: none !important;
        transform: none;
        opacity: 1;
        font-size: 14px;
    }
    
    .catalog-category.active {
        background: var(--light-gray);
        border-left: none !important;
        color: var(--cyan);
    }
    
    .catalog-right {
        padding: 15px;
        background: white;
        margin-top: 1px;
    }
    
    .catalog-products {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        animation: none !important;
        transform: none !important;
    }
    
    .catalog-product {
        border-radius: 8px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info h4 {
        font-size: 14px;
    }

    .product-info p {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
    }

    /* Platform Section Mobile */
    .platform-tabs {
        flex-wrap: wrap;
        border-bottom: none;
        gap: 10px;
        margin-bottom: 40px;
    }

    .platform-tab {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 12px 20px;
        margin-bottom: 0;
        flex: 1 1 calc(50% - 5px);
        min-width: 140px;
    }

    .platform-tab.active {
        border-color: var(--cyan);
        background: rgba(0, 188, 212, 0.05);
    }

    .platform-content {
        /* padding: 0 20px; */
    }

    .panel-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .panel-visual {
        min-height: 300px;
        padding: 40px 30px;
    }

    .panel-right h3 {
        font-size: 26px;
    }

    .feature-list {
        gap: 20px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-item span {
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container, .container-fluid, .container-wide {
        padding: 0 20px;
    }

    .logos-scroll {
        gap: 0 !important;
    }

    .logo-item {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .catalog-products {
        grid-template-columns: 1fr !important;
    }

    .nav-right {
        right: 60px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Scroll reveal elements */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ENHANCED FORM STYLES ===== */
.floating-label-group {
    position: relative;
    margin-bottom: 28px;
}

.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    padding: 18px 18px 8px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: all var(--transition-base);
    outline: none;
}

.floating-label-group input:focus,
.floating-label-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.floating-label-group label {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 15px;
    color: var(--text-light);
    transition: all var(--transition-fast);
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group textarea:focus + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 14px;
    font-size: 12px;
    color: var(--cyan);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

/* ===== ENHANCED CARD STYLES ===== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ===== ENHANCED KIOSK ICON STYLES ===== */
.feat .icon svg {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    transition: all var(--transition-base);
}

.feat:hover .icon svg {
    transform: scale(1.1);
    color: var(--cyan-dark);
}

/* ===== RIPPLE EFFECT ===== */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ===== LOADING STATES ===== */
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

/* ===== ENHANCED MOBILE TOUCH TARGETS ===== */
@media (max-width: 768px) {
    button,
    a.btn-cyan,
    a.btn-outline,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* ===== IMPROVED SPACING ===== */
section {
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }

    .container,
    .container-fluid,
    .container-wide {
        padding: 0 var(--spacing-md);
    }
}

/* ===== ENHANCED HOVER STATES ===== */
a:not(.btn-cyan):not(.btn-outline) {
    transition: color var(--transition-fast);
}

a:not(.btn-cyan):not(.btn-outline):hover {
    color: var(--cyan);
}

/* ===== PROFESSIONAL IMAGE LOADING ===== */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:not([src]), img[src=""] {
    opacity: 0;
}

.logo img,
.navbar img {
    opacity: 1 !important;
}

img.loaded {
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ENHANCED FOCUS STATES FOR ACCESSIBILITY ===== */
*:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
}

/* ===== SMOOTH CARD INTERACTIONS ===== */
.card-interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-interactive:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-interactive:active {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== ENHANCED BUTTON STATES ===== */
button,
.btn-primary,
.btn-cyan,
.btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:disabled,
.btn-primary:disabled,
.btn-cyan:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== SMOOTH GRADIENT ANIMATIONS ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 100%);
}

.roi-header {
    text-align: center;
    margin-bottom: 60px;
}

.roi-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.roi-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.roi-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.roi-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark-gray);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.roi-results {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.roi-results h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(0, 188, 212, 0.05);
}

.result-icon {
    width: 48px;
    height: 48px;
    background: var(--cyan);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.result-icon svg {
    width: 24px;
    height: 24px;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
}

.roi-summary {
    background: rgba(0, 188, 212, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--cyan);
    margin-bottom: 30px;
}

.roi-summary h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.roi-summary p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.roi-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ROI Calculator Mobile Styles */
@media (max-width: 768px) {
    .roi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .roi-form,
    .roi-results {
        padding: 30px 20px;
    }
    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .result-card {
        padding: 20px;
    }
    .result-value {
        font-size: 20px;
    }
    .roi-actions {
        flex-direction: column;
    }
    .roi-actions a {
        text-align: center;
    }
}

/* ROI Help Tooltip */
.roi-help-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--cyan);
    color: white;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 600;
    cursor: help;
    position: relative;
    transition: all var(--transition-base);
    opacity: 1;
    transform: scale(1);
}

.roi-help-tooltip:hover {
    background: var(--cyan-dark);
    transform: scale(1.1);
}

.roi-help-tooltip.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

/* Tooltip using the native title attribute - enhanced styling */
.roi-help-tooltip::after {
    content: attr(title);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.roi-help-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.roi-help-tooltip:hover::after,
.roi-help-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Remove default title tooltip */
.roi-help-tooltip {
    position: relative;
}

.roi-help-tooltip[title] {
    position: relative;
}

/* ===== QUOTE BUILDER STYLES ===== */
/* Quote Hero Section */
.quote-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.quote-hero-content h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.quote-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Quote Builder Section */
.quote-builder {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Progress Indicator */
.quote-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.quote-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
    transition: all var(--transition-base);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.progress-step span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    width: 100%;
    transition: color var(--transition-base);
}

.progress-step.active .step-number {
    background: var(--cyan);
    color: white;
}

.progress-step.active span {
    color: var(--cyan);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #4caf50;
    color: white;
}

.progress-step.completed span {
    color: #4caf50;
}

/* Quote Form */
.quote-form {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 60px;
    min-height: 600px;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.step-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Hardware Categories */
.hardware-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.hardware-selection {
    flex: 1;
}

.hardware-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hardware-category h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-gray);
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 10px;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hardware-item {
    position: relative;
}

.hardware-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: left;
}

.hardware-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hardware-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hardware-icon img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
}

.hardware-info {
    flex: 1;
}

.hardware-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.hardware-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Equipment Recap Panel */
.equipment-recap {
    position: sticky;
    top: 100px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.recap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.recap-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.item-count {
    background: var(--cyan);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.recap-content {
    flex: 1;
    overflow-y: auto;
}

.empty-message {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    padding: 40px 20px;
    line-height: 1.6;
}

.equipment-item {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    transition: all var(--transition-base);
}

.equipment-item:hover {
    box-shadow: var(--shadow-sm);
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.equipment-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.equipment-actions {
    display: flex;
    gap: 8px;
}

.equipment-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 6px;
    transition: all var(--transition-base);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.equipment-btn:hover {
    color: var(--cyan);
    background: rgba(0, 139, 163, 0.1);
}

.equipment-btn.delete:hover {
    color: #e53935;
    background: rgba(229, 57, 53, 0.1);
}

.equipment-details {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.equipment-details div {
    margin-bottom: 2px;
}

/* Configuration Modals */
.config-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.config-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

.modal-content.modal-wide {
    max-width: 900px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px;
    border-bottom: 2px solid var(--border-light);
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
}

.modal-close:hover {
    color: var(--text);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-body.modal-split {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px;
}

.modal-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-features {
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4caf50;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.included-features p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

.included-features strong {
    color: #4caf50;
    font-weight: 600;
}

.config-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.option-item {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: all var(--transition-base);
}

.option-item:hover {
    background: rgba(0, 188, 212, 0.05);
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px 24px;
    border-top: 2px solid var(--border-light);
}

.modal-footer button {
    min-width: 120px;
    outline: none;
}

.modal-footer button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.feature-item {
    position: relative;
    display: flex;
}
.feature-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.feature-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    height: 100%;
    transition: all var(--transition-base);
}
.feature-label:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-item input:checked + .feature-label {
    border-color: var(--cyan);
    background: rgba(0, 188, 212, 0.05);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}
.feature-info {
    flex: 1;
}
.feature-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}
.feature-info span {
    font-size: 14px;
    color: var(--text-light);
}
/* Quote Summary */
.quote-summary {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}
.quote-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
}
.summary-content {
    display: grid;
    gap: 12px;
}
.summary-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.summary-section:last-child {
    border-bottom: none;
}
.summary-section strong {
    font-weight: 600;
    color: var(--dark-gray);
}
.summary-section span {
    color: var(--text-light);
}
/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--border-light);
}
.form-navigation button {
    min-width: 140px;
    background: var(--cyan);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    outline: none;
}

.form-navigation button:hover {
    background: var(--cyan-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.form-navigation button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.3);
}

.form-navigation button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-navigation .btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-light);
}

.form-navigation .btn-secondary:hover {
    background: var(--light-gray);
    border-color: var(--text);
    transform: translateY(-1px);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.success-content {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 550px;
    margin: 0 20px;
    box-shadow: var(--shadow-xl);
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}
.success-icon svg {
    width: 40px;
    height: 40px;
}
.success-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}
.success-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .quote-hero {
        padding: 100px 0 60px;
    }
    .quote-hero-content h1 {
        font-size: 32px;
    }
    .quote-progress {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }
    .quote-progress::before {
        display: none;
    }
    .progress-step {
        flex: 1;
        min-width: 120px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .form-step {
        padding: 30px 20px;
        min-height: auto;
    }
    .step-header {
        margin-bottom: 30px;
    }
    .step-header h2 {
        font-size: 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .hardware-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .equipment-recap {
        position: static;
        max-height: none;
        order: -1;
    }
    .hardware-label,
    .feature-label {
        padding: 16px;
    }
    .hardware-card {
        padding: 16px;
    }
    .hardware-icon {
        width: 50px;
        height: 50px;
    }
    .hardware-icon img {
        max-width: 35px;
        max-height: 35px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    .modal-content.modal-wide {
        max-width: 95%;
    }
    .modal-body.modal-split {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .modal-image {
        max-height: 200px;
        padding: 15px;
    }
    .modal-image img {
        max-height: 180px;
    }
    .modal-header {
        padding: 20px 16px 16px;
    }
    .modal-body {
        padding: 20px 16px;
    }
    .modal-footer {
        padding: 16px;
        flex-direction: column;
    }
    .modal-footer button {
        width: 100%;
    }
    .form-navigation {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    .form-navigation button {
        width: 100%;
        min-width: auto;
    }
    .success-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .success-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    .success-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* ===== DOCUMENTATION STYLES ===== */
/* Documentation Section Styling */
.doc-section {
    scroll-margin-top: 100px;
}

/* Documentation Sidebar Menu */
.side-menu-link {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
    margin-bottom: 4px;
}

.side-menu-link:hover {
    background-color: rgba(0, 151, 167, 0.05);
    color: #0097a7;
    padding-left: 16px;
}

.side-menu-link.active {
    background-color: rgba(0, 151, 167, 0.1);
    color: #0097a7;
    font-weight: 600;
    border-left: 3px solid #0097a7;
    padding-left: 13px;
}

/* Feature Grid for Documentation */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0097a7;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Device Type Display */
.device-type {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.device-icon {
    width: 50px;
    height: 50px;
    background: #0097a7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

/* Step Numbers for Documentation */
.documentation-content .step-number,
.quick-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #0097a7;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Quick Start Specific Styles */
.quick-step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #00bcd4;
    transition: all 0.3s ease;
}

.quick-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.quick-step .step-number {
    width: 35px;
    height: 35px;
    background: #00bcd4;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Requirement Items */
.requirement-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 6px;
}

.requirement-icon {
    width: 20px;
    height: 20px;
    background: #e8f5e9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Feature Highlights */
.feature-highlight {
    background: linear-gradient(135deg, #e0f2f1 0%, #f3e5f5 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #00bcd4;
}

/* Common Documentation JavaScript Functions */
.documentation-interactive {
    /* Styles for interactive documentation elements */
}

/* Documentation Layout - Mobile Responsive */
@media (max-width: 768px) {
    /* Documentation container with sidebar and content */
    .content-section .container > div[style*="display: flex"] {
        flex-direction: column !important;
    }
    /* Sidebar - make it appear above content on mobile */
    .content-section aside {
        width: 100% !important;
        position: static !important;
        margin-bottom: 20px;
        order: -1; /* Ensures sidebar appears first */
    }
    /* Doc content - full width on mobile */
    .doc-content {
        width: 100% !important;
        flex: 1 !important;
    }
    .content-section main {
        max-width: 100% !important;
    }

    /* Rate limiting cards - wrap on mobile */
    .doc-content div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    /* Product page feature sections - responsive on mobile */
    section div[style*="min-width: 400px"],
    section div[style*="min-width: 350px"] {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    /* Product page images and mockups - prevent overflow */
    section div[style*="aspect-ratio"] {
        max-width: 100% !important;
    }

    /* Captcha buttons - show mobile button, hide desktop button */
    .captcha-refresh-desktop {
        display: none !important;
    }

    .captcha-refresh-mobile {
        display: block !important;
    }

    /* Lead form name fields - stack vertically on mobile */
    .name-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact page layout - stack and reorder on mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-info {
        order: 1;
    }

    .contact-form-wrapper {
        order: 2;
    }

    /* Prevent page overflow on mobile */
    .lead-form-section .container,
    .content-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }

    .lead-form,
    .contact-form-wrapper > div {
        padding: 30px 20px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Ensure all inputs and form elements fit */
    input, textarea, button, select {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* About page and general content - prevent overflow */
    .hero,
    .hero .container,
    .hero-content,
    .features,
    .features .container,
    .section-header,
    .section-title,
    .section-subtitle,
    .features-grid,
    .feature-card,
    .feature-title,
    .feature-description,
    .product-section,
    .product-section .container,
    .product-content,
    .product-text,
    .product-title,
    .product-features,
    .product-visual {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* Ensure all headings and text fit */
    h1, h2, h3, h4, h5, h6, p, ul, li {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }

    /* Container padding adjustment */
    .hero .container,
    .features .container,
    .product-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Features grid - stack on mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Product content - stack on mobile */
    .product-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Our Values cards - single column on mobile */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Why Choose section - reorder on mobile */
    .why-choose-content {
        display: flex !important;
        flex-direction: column !important;
    }

    .why-choose-text {
        order: 2;
    }

    .why-choose-visual {
        order: 1;
    }

    /* Mission section - single column on mobile */
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Hero buttons - stack vertically on mobile */
    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
    }

    .hero-btns a {
        width: 100% !important;
        text-align: center !important;
    }

    /* Platform tabs - stack vertically on mobile */
    .platform-tabs {
        flex-direction: column !important;
        gap: 0 !important;
        border-bottom: none !important;
    }

    .platform-tab {
        width: 100% !important;
        text-align: left !important;
        border-bottom: 2px solid #e5e5e5 !important;
        border-left: 3px solid transparent !important;
        margin-bottom: 10px !important
    }

    .platform-tab.active {
        border-left: 3px solid var(--cyan) !important;
        border-bottom: 2px solid #e5e5e5 !important;
    }

    /* ROI tooltip - prevent overflow on mobile */
    .roi-help-tooltip::after {
        white-space: normal !important;
        max-width: 200px !important;
        left: auto !important;
        right: 0 !important;
        transform: none !important;
    }

    .roi-help-tooltip::before {
        left: auto !important;
        right: 10px !important;
        transform: none !important;
    }
}