/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --primary-color: #00b74a;
    --primary-dark: #009639;
    --primary-light: #33c766;
    --secondary-color: #1e3a5f;
    --secondary-dark: #0f1d2f;
    --accent-color: #00d4ff;
    --success-color: #10b981;
    --warning-color: #f59e0b;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", monospace;

    /* Font Sizes */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.5rem; /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem; /* 36px */
    --text-5xl: 3rem; /* 48px */
    --text-6xl: 3.75rem; /* 60px */

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* Spacing */
    --space-1: 0.25rem; /* 4px */
    --space-2: 0.5rem; /* 8px */
    --space-3: 0.75rem; /* 12px */
    --space-4: 1rem; /* 16px */
    --space-5: 1.25rem; /* 20px */
    --space-6: 1.5rem; /* 24px */
    --space-8: 2rem; /* 32px */
    --space-10: 2.5rem; /* 40px */
    --space-12: 3rem; /* 48px */
    --space-16: 4rem; /* 64px */
    --space-20: 5rem; /* 80px */
    --space-24: 6rem; /* 96px */

    /* Border Radius */
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 0.75rem; /* 12px */
    --radius-xl: 1rem; /* 16px */
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --container-max-width: 1440px;
    --container-padding: var(--space-6);
    --grid-gap: var(--space-6);

    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    /* Force light mode */
    color-scheme: light only;
    background-color: #ffffff !important;
}

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: var(--leading-tight);
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-5xl);
}
h2 {
    font-size: var(--text-4xl);
}
h3 {
    font-size: var(--text-3xl);
}
h4 {
    font-size: var(--text-2xl);
}
h5 {
    font-size: var(--text-xl);
}
h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 183, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 25px rgba(0, 183, 74, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 183, 74, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 183, 74, 0.3);
}

/* Clean Get Quote button in navbar */
.nav-link.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.nav-link.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Remove underline animation from Get Quote button */
.nav-link.btn-secondary::after {
    display: none;
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.full-width {
    width: 100%;
}

/* ===== LAYOUT COMPONENTS ===== */
.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    max-width: 650px;
    margin: 0 auto var(--space-16);
    text-align: center;
    line-height: var(--leading-relaxed);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--container-padding);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-base);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--space-24)) 0 var(--space-24);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 183, 74, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-8);
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.hero-actions {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stats-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stats-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.stats-badge:hover::before {
    opacity: 1;
}

.stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
    transition: all var(--transition-base);
}

.stats-icon svg {
    width: 24px;
    height: 24px;
}

.stats-badge:hover .stats-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    min-width: 0;
}

.stats-number {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.stats-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

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

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

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.value-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.icon {
    width: 32px;
    height: 32px;
}

.value-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.value-description {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.value-comparison {
    margin-top: var(--space-4);
}

.comparison-bar {
    background: var(--gray-200);
    height: 24px;
    border-radius: var(--radius-lg);
    margin: var(--space-3) 0;
    overflow: hidden;
}

.comparison-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    width: var(--width);
    transition: width 1s ease;
    display: flex;
    align-items: center;
    padding: 0 var(--space-3);
    font-size: var(--text-sm);
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.comparison-fill.traditional {
    background: var(--gray-400);
}

.space-visual {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: end;
}

.space-old,
.space-new {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 500;
}

.space-old::before {
    content: "";
    display: block;
    width: 60px;
    height: 40px;
    background: var(--gray-400);
    margin: 0 auto var(--space-2);
    border-radius: var(--radius-sm);
}

.space-new::before {
    content: "";
    display: block;
    width: 24px;
    height: 40px;
    background: var(--primary-color);
    margin: 0 auto var(--space-2);
    border-radius: var(--radius-sm);
}

.smart-features {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
    height: auto;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.product-card .product-header {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 5;
}
.product-card .product-header-2 {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 5;
}

.product-badge {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.product-badge.enterprise {
    background: var(--gray-800);
    color: var(--white);
}

.product-badge.upcoming {
    background: var(--accent-color);
    color: var(--white);
}

.product-image {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-6);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.upcoming-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.upcoming-icon svg {
    width: 40px;
    height: 40px;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.product-meta {
    margin-bottom: var(--space-4);
}

.product-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.product-capacity {
    font-size: var(--text-sm);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.product-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-700);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: var(--space-3);
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
}

.product-card.coming-soon {
    opacity: 0.9;
}

.product-card.coming-soon .product-content {
    position: relative;
}

.product-card.coming-soon .product-features li {
    color: var(--gray-600);
}

.product-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

/* Old carousel CSS removed - now using grid layout */

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.product-name {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.product-capacity {
    font-size: var(--text-lg);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.product-features {
    margin-bottom: var(--space-8);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    color: var(--gray-600);
}

.product-features li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    flex-shrink: 0;
}

.coming-soon {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--warning-color);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all var(--transition-base);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: var(--space-4);
}

.carousel-btn.next {
    right: var(--space-4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    transition: all var(--transition-base);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== TECHNOLOGY COMPARISON ===== */
.technology-comparison {
    background: var(--white);
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gray-50);
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.comparison-col {
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

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

.traditional-col {
    color: var(--gray-600);
}

.comparison-logo {
    width: 24px;
    height: 24px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-value {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.value-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--text-lg);
}

.progress-bar {
    width: 80px;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: var(--width);
    border-radius: var(--radius-full);
    transition: width 1s ease 0.5s;
}

.progress-fill.traditional {
    background: var(--gray-400);
}

.space-indicator {
    width: 40px;
    height: 20px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    margin: 0 auto;
}

.space-indicator.small {
    width: 20px;
}

.space-indicator.large {
    width: 40px;
    background: var(--gray-400);
}

/* ===== USE CASES ===== */
.use-cases {
    background: var(--gray-50);
}

.use-cases-container {
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-12);
    background: var(--white);
    padding: var(--space-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    transition: all var(--transition-base);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-icon {
    width: 20px;
    height: 20px;
}

.tab-content {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    transform: translateY(20px);
}

.tab-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    background: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.use-case-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.use-case-info h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.benefit-list {
    margin-bottom: var(--space-8);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

.benefit-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.case-study-link .link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.case-study-link .link:hover {
    gap: var(--space-3);
}

/* ===== GREEN COMMITMENT ===== */
/* ===== GREEN COMMITMENT SECTION ===== */
.green-commitment {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.green-commitment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(107, 114, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.green-commitment .section-title,
.green-commitment .section-subtitle {
    color: var(--white);
}

/* Green Hero Section */
.green-hero {
    padding: var(--space-8) 0 var(--space-6);
}

.green-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-6);
    align-items: start;
}

.green-hero-text .section-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.green-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.green-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.green-feature-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.green-feature span {
    font-weight: 600;
    color: var(--white);
}

/* Impact Visualization */
.impact-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-top: var(--space-4);
}

.earth-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-large {
    width: 100px;
    height: 100px;
    color: var(--white);
    position: relative;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    animation: pulse 2s linear infinite;
}

.pulse-ring-delay {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Impact Metrics */
.impact-metrics {
    padding: var(--space-8) 0 var(--space-6);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-light) 100%);
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.metric-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.metric-number {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.metric-unit {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.metric-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.metric-comparison {
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Sustainability Commitment */
.sustainability-commitment {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    margin-top: var(--space-6);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-align: center;
}

.commitment-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-10);
    line-height: 1.6;
}

.commitment-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.goal-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.goal-year {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--space-3);
}

.goal-text {
    color: var(--white);
    font-weight: 600;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cert-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon .icon {
    width: 16px;
    height: 16px;
    color: var(--white);
}

/* ===== TECHNOLOGY INNOVATION ===== */
.tech-innovation {
    background: var(--gray-50);
}

.tech-content {
    max-width: 1400px;
    margin: 0 auto;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.innovation-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.innovation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.innovation-icon .icon {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.innovation-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.innovation-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.innovation-stats {
    display: flex;
    gap: var(--space-6);
}

.innovation-stats .stat {
    flex: 1;
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.innovation-stats .stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.innovation-stats .stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.tech-certifications {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.cert-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.cert-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cert-icon {
    width: 20px;
    height: 20px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: var(--gray-50);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-700);
    font-weight: 500;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ===== FORMS ===== */
.contact-form {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-6);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-4) var(--space-4) var(--space-3);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group label {
    position: absolute;
    left: var(--space-4);
    top: var(--space-4);
    font-size: var(--text-base);
    color: var(--gray-500);
    pointer-events: none;
    transition: all var(--transition-base);
    background: var(--white);
    padding: 0 var(--space-1);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -8px;
    font-size: var(--text-sm);
    color: var(--primary-color);
}

.form-alternative {
    margin-top: var(--space-8);
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-200);
}

.contact-email {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--text-lg);
    margin: var(--space-4) 0;
    transition: color var(--transition-base);
}

.contact-email:hover {
    color: var(--primary-dark);
}

.alternative-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.alt-link {
    color: var(--gray-600);
    font-weight: 500;
    transition: color var(--transition-base);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: var(--space-6);
}

.footer-description {
    color: var(--gray-400);
    line-height: var(--leading-relaxed);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-list a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-list a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
}

.footer-copyright {
    color: var(--gray-500);
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--gray-500);
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===== PRODUCT PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb-section {
    padding: calc(80px + var(--space-4)) 0 var(--space-4);
    background: var(--gray-50);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.breadcrumb-link {
    color: var(--gray-500);
    transition: color var(--transition-base);
}

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

.breadcrumb-separator {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-800);
    font-weight: 500;
}

/* Product Header */
.product-header {
    padding: var(--space-8) 0;
    background: var(--white);
}

.product-header-2 {
    padding: var(--space-8) 0;
    background: transparent;
}

.product-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.stars {
    display: flex;
    gap: var(--space-1);
}

.star {
    color: var(--gray-300);
    font-size: var(--text-lg);
}

.star.active {
    color: var(--warning-color);
}

.rating-text {
    color: var(--gray-500);
    font-size: var(--text-sm);
}

.quick-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
}

.spec-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.spec-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-1);
}

.spec-value {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-900);
    font-size: var(--text-base);
}

/* Product Main Section */
.product-main {
    padding: var(--space-16) 0;
    background: var(--gray-50);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image-container {
    position: relative;
    margin-bottom: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.gallery-fullscreen {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.gallery-fullscreen:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-fullscreen svg {
    width: 20px;
    height: 20px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 183, 74, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info > * {
    margin-bottom: var(--space-8);
}

.capacity-selector h3,
.key-features h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.capacity-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.capacity-btn {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-base);
    cursor: pointer;
}

.capacity-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.capacity-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.feature-text p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.product-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-actions .btn {
    flex: 1;
}

.availability {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--success-color);
    font-weight: 500;
}

.availability-icon {
    width: 16px;
    height: 16px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 700;
}

/* Product Specs */
.product-specs {
    padding: var(--space-20) 0;
    background: var(--white);
}

.specs-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.specs-tabs {
    display: flex;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.spec-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: transparent;
    color: var(--gray-600);
    font-family: var(--font-primary);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.spec-tab-btn:hover {
    background: rgba(0, 183, 74, 0.05);
    color: var(--primary-color);
}

.spec-tab-btn.active {
    background: var(--white);
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-icon {
    width: 18px;
    height: 18px;
}

.specs-content {
    min-height: 400px;
}

.spec-panel {
    display: none;
    padding: var(--space-8);
}

.spec-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

/* Overview Tab Styles */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.overview-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.overview-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.overview-icon svg {
    width: 40px;
    height: 40px;
}

.overview-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.overview-card p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.image-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ===== PRODUCT PAGE COMPARISON SECTION ===== */
.comparison-section {
    background: var(--gray-50);
    padding: var(--space-16) 0;
}

.comparison-tool {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: start;
}

.comparison-column {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.comparison-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.comparison-header {
    padding: var(--space-6);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.bye-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.traditional-header {
    background: var(--gray-100);
    color: var(--gray-700);
}

.comparison-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0;
    margin-top: var(--space-3);
}

.comparison-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.comparison-features {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.comparison-feature {
    text-align: center;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
}

.feature-value {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.traditional-column .feature-value {
    color: var(--gray-600);
}

.feature-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-12);
}

/* ===== INSTALLATION & SUPPORT SECTION ===== */
.installation-section {
    background: var(--white);
    padding: var(--space-16) 0;
}

.installation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.installation-text h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.installation-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

.installation-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.step-content p {
    color: var(--gray-600);
    font-size: var(--text-base);
}

.support-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-item {
    color: var(--gray-700);
}

.contact-item strong {
    color: var(--gray-900);
    margin-right: var(--space-2);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.installation-visual {
    position: relative;
}

.installation-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.warranty-badge {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.warranty-icon {
    font-size: var(--text-2xl);
}

.warranty-text strong {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
}

.warranty-text span {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ===== RELATED PRODUCTS SECTION ===== */
.related-products {
    background: var(--gray-50);
    padding: var(--space-16) 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.related-product {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.related-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.related-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--accent-color);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.related-info {
    padding: var(--space-6);
}

.related-info h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.related-info p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.related-specs {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.related-specs span {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ===== PRODUCT CTA SECTION ===== */
/* Learn More Section - Redesigned */
.learn-more-section {
    background: var(--gray-50);
    padding: var(--space-20) 0;
}

.learn-more-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.learn-more-header h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.learn-more-header p {
    font-size: var(--text-xl);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.info-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.info-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.info-card > p {
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.resource-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-6);
}

.resource-list li {
    color: var(--gray-700);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.resource-list li:last-child {
    border-bottom: none;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.card-link:hover {
    color: var(--primary-dark);
}

.learn-more-cta {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 183, 74, 0.1);
}

.cta-highlight {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-6);
    align-items: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cta-content h4 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.cta-content p {
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(0, 183, 74, 0.3);
    border: 2px solid transparent;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 183, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 183, 74, 0.1);
}

.cta-actions .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 183, 74, 0.4);
    border-color: var(--primary-color);
}

.cta-actions .btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: transform 0.1s ease;
}
