/* Import Fira Sans font */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 120px;
    gap: 60px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-spacer {
    flex: 1;
}

.logo-img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #205E6D;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #205E6D;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: #FBBF24;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #ffffff;
    color: #205E6D;
    border: 2px solid #205E6D;
}

.btn-primary:hover {
    background: #1A4A56;
    color: #ffffff;
    border: 2px solid #1A4A56;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 94, 109, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #205E6D;
}

.btn-outline {
    background: transparent;
    color: #205E6D;
    border: 2px solid #205E6D;
}

.btn-outline:hover {
    background: #205E6D;
    color: white;
}

/* YouTube Video Container */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.youtube-title {
    text-align: center;
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.youtube-subtitle {
    text-align: center;
    margin: 0 0 20px 0;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .youtube-title {
        font-size: 1.2rem;
    }
}

.scanner-device {
    position: relative;
    width: 300px;
    height: 400px;
    background: #1f2937;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.device-screen {
    width: 100%;
    height: 200px;
    background: #111827;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.health-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-point {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #20A05E;
    font-size: 0.875rem;
}

.data-label {
    font-weight: 500;
}

.data-value {
    font-weight: 700;
    font-size: 1.125rem;
}


.device-body {
    margin-top: 20px;
    height: 120px;
    background: #374151;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensor-array {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sensor {
    width: 30px;
    height: 30px;
    background: #20A05E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Used By Banner */
.used-by {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.used-by-content {
    text-align: center;
}

.used-by-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover .brand-img {
    filter: grayscale(0%);
}

/* Products Section */
.products {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

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

.product-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #205E6D;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-image {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.product-mockup-image {
    max-width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.device-mockup {
    width: 120px;
    height: 160px; /* Fallback for older browsers */
    aspect-ratio: 3/4;
    background: #1f2937;
    border-radius: 15px;
    padding: 15px;
    position: relative;
}

.device-mockup.classic {
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
}

.device-mockup.pro {
    background: url('../assets/scanus-diy-v1.png') center/cover no-repeat;
    background-size: contain;
}

.device-mockup.medical {
    background: linear-gradient(135deg, #2A7A8A 0%, #20A05E 100%);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.product-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.feature {
    background: #f0f9ff;
    color: #205E6D;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Technology Section */
.technology {
    padding: 140px 0 100px;
    background: white;
}

.ai-technology {
    padding: 100px 0 100px;
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.tech-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tech-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-text-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.tech-text-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.ai-visualization {
    width: 300px;
    height: 300px;
    position: relative;
}

.neural-network {
    width: 100%;
    height: 100%;
    position: relative;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #205E6D;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.node:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.node:nth-child(3) { top: 50%; left: 10%; animation-delay: 1s; }
.node:nth-child(4) { top: 50%; right: 10%; animation-delay: 1.5s; }
.node:nth-child(5) { bottom: 20%; left: 30%; animation-delay: 2s; }
.node:nth-child(6) { bottom: 20%; right: 30%; animation-delay: 2.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #205E6D, #20A05E);
    animation: flow 3s ease-in-out infinite;
}

.connection:nth-child(7) { top: 25%; left: 25%; width: 50%; transform: rotate(15deg); }
.connection:nth-child(8) { top: 45%; left: 15%; width: 70%; transform: rotate(-20deg); }
.connection:nth-child(9) { top: 65%; left: 25%; width: 50%; transform: rotate(10deg); }
.connection:nth-child(10) { top: 75%; left: 35%; width: 30%; transform: rotate(-15deg); }

@keyframes flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Testimonial Section */
.testimonial {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 2rem;
    font-weight: 300;
    color: #1f2937;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.4;
}

.author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-title {
    color: #6b7280;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: #1f2937;
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #205E6D;
}

.contact-info p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Products Overview */
.products-overview {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.product-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #205E6D;
    margin: 20px 0;
}

/* Comparison Table */
.comparison {
    padding: 140px 0 100px;
    background: white;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1f2937;
}

.comparison-table td {
    color: #6b7280;
}

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

/* Product Hero */
.product-hero {
    padding: 180px 0 80px;
    background: #f8fafc;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-badge {
    display: inline-block;
    background: #205E6D;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-badge.medical {
    background: #20A05E;
}

.product-info h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.product-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.device-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup.large {
    width: 200px;
    height: 267px; /* Fallback for older browsers */
    aspect-ratio: 3/4;
    transform: scale(1.2);
}

.health-dashboard,
.ai-dashboard,
.medical-dashboard {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
    font-size: 0.875rem;
}

.metric,
.ai-insight,
.patient-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label,
.insight-label,
.patient-label {
    font-weight: 500;
}

.metric-value,
.insight-value,
.patient-value {
    font-weight: 700;
    font-size: 1rem;
}

/* Product Features */
.product-features {
    padding: 140px 0 100px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* AI Features */
.ai-features {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ai-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.ai-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Advanced Features */
.advanced-features {
    padding: 140px 0 100px;
    background: white;
}

/* Medical Features */
.medical-features {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.medical-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.medical-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.medical-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.medical-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.medical-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.medical-feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Professional Features */
.professional-features {
    padding: 140px 0 100px;
    background: white;
}

/* Specifications */
.specifications {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.spec-label {
    font-weight: 600;
    color: #1f2937;
}

.spec-value {
    color: #6b7280;
    text-align: right;
}

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

.device-specs {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Certifications */
.certifications {
    padding: 140px 0 100px;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.certification-item {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.certification-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.certification-item p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Sensors Technology */
.sensors-technology {
    padding: 70px 0 100px;
    background: white;
}

.sensors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.sensor-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.sensor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sensor-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sensor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.sensor-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sensor-features {
    list-style: none;
    text-align: left;
}

.sensor-features li {
    padding: 4px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.sensor-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20A05E;
    font-weight: bold;
}

/* Configuration Services */
.configuration-services {
    padding: 140px 0 100px;
    background: white;
}

.configuration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.config-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #205E6D;
}

.config-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.config-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.config-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Data Processing */
.data-processing {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.processing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.processing-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #205E6D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.processing-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.processing-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Security */
.security {
    padding: 140px 0 100px;
    background: white;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.security-feature {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.security-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Innovation */
.innovation {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovation-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.innovation-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.innovation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #205E6D;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

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

.research-lab {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-equipment {
    display: flex;
    gap: 20px;
}

.equipment {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.equipment:nth-child(2) {
    animation-delay: 0.5s;
}

.equipment:nth-child(3) {
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .used-by {
        padding: 60px 0;
    }
    
    .brands-logos {
        gap: 20px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-img {
        max-height: 40px;
        max-width: 80px;
    }
    
    .used-by-title {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quote {
        font-size: 1.5rem;
    }
    
    .author {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .product-actions {
        justify-content: center;
    }
    
    .device-mockup.large {
        transform: scale(1);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
    
    .innovation-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .used-by {
        padding: 40px 0;
    }
    
    .brands-logos {
        gap: 15px;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .brand-img {
        max-height: 35px;
        max-width: 70px;
    }
    
    .used-by-title {
        font-size: 0.875rem;
        margin-bottom: 25px;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.company-story {
    padding: 180px 0 80px;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-text a {
    color: #205E6D;
    text-decoration: none;
    font-weight: 500;
}

.story-text a:hover {
    text-decoration: underline;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    background: #205E6D;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 60px;
    text-align: center;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.timeline-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values {
    padding: 180px 0 80px;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.team {
    padding: 180px 0 80px;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.photo-placeholder {
    color: white;
}

.team-member h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.member-role {
    color: #205E6D;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

.certifications {
    padding: 180px 0 80px;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.certification {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.certification:hover {
    transform: translateY(-3px);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.certification h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.certification p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #205E6D 0%, #2A7A8A 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Styles */
/* Luxury Showcase Section */
.luxury-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.luxury-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.luxury-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    animation: luxuryGlow 3s ease-in-out infinite alternate;
}

@keyframes luxuryGlow {
    0% { box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3); }
    100% { box-shadow: 0 12px 48px rgba(212, 175, 55, 0.5); }
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.luxury-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.luxury-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.luxury-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.luxury-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;  /* Increased size to make image larger */
    aspect-ratio: 1/1;  /* Square aspect ratio for balanced spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;  /* Ensure proper vertical alignment */
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 20px;  /* Slightly increased padding for better spacing */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 40px rgba(212, 175, 55, 0.1);
    box-sizing: border-box;  /* Ensure padding is included in dimensions */
}

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

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

.luxury-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Ensures image fits within frame */
    object-position: center;  /* Center the image within the frame */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    display: block;  /* Ensure proper display */
    margin: 0;  /* Remove any default margins */
}

.luxury-image:hover {
    transform: scale(1.05);
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.luxury-sparkle {
    position: absolute;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.luxury-details {
    color: #ffffff;
}

.luxury-description {
    margin-bottom: 20px;  /* Reduced from 40px */
}

.luxury-description p {
    font-size: 1rem;  /* Reduced from 1.2rem */
    line-height: 1.6;  /* Reduced from 1.8 */
    color: #e2e8f0;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* Limit to 3 lines */
    line-clamp: 3;  /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxury-specs {
    margin-bottom: 20px;  /* Reduced from 40px */
}

.spec-category {
    margin-bottom: 20px;  /* Reduced from 32px */
}

.spec-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;  /* Reduced from 1.3rem */
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;  /* Reduced from 20px */
    padding-bottom: 4px;  /* Reduced from 8px */
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.spec-icon {
    font-size: 1.5rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;  /* Further reduced for more compact layout */
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;  /* Further reduced for more compact layout */
    border-radius: 8px;  /* Slightly smaller radius */
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;  /* Stack label above value */
}

.spec-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.spec-label {
    font-size: 0.8rem;  /* Further reduced for more compact layout */
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 4px;  /* Slightly increased for better spacing above value */
    text-transform: uppercase;
    letter-spacing: 0.3px;  /* Reduced letter spacing */
    text-align: left;  /* Ensure left alignment */
}

.spec-value {
    font-size: 0.85rem;  /* Further reduced for more compact layout */
    color: #e2e8f0;
    line-height: 1.3;  /* Tighter line height */
}

.tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Two columns */
    gap: 8px;  /* Reduced from 12px */
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;  /* Reduced from 12px 16px */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
    max-width: 280px;  /* Limit width to make boxes narrower */
}

.tech-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}

.tech-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tech-text {
    color: #cbd5e1;
    font-size: 0.9rem;  /* Reduced from 0.95rem */
    line-height: 1.4;
}


.luxury-meta {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Carousel Styles */
.luxury-carousel {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 0;  /* No padding needed for single slide */
}

.carousel-track-container {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    width: 100%;
    min-height: 600px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    will-change: transform;
    width: 100%;
    height: 100%;
}

.carousel-track.dragging {
    cursor: grabbing;
    transition: none;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0;
    width: 100%;
    display: block;
    position: relative;
    min-height: 650px;  /* Consistent height */
}

/* Ensure carousel slides don't inherit conflicting styles */
.carousel-slide .luxury-hero {
    margin-bottom: 60px;
}

.carousel-slide .luxury-content {
    display: grid;
    grid-template-columns: 500px 1fr;  /* Square image column width */
    gap: 60px;  /* Reduced from 80px */
    align-items: start;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;  /* Higher z-index */
    background: rgba(212, 175, 55, 0.9);
    color: #0f172a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: none;  /* Hide arrows when only one slide */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.carousel-btn-left {
    left: -80px;  /* Move outside container */
}

.carousel-btn-right {
    right: -80px;  /* Move outside container */
}

.carousel-indicators {
    display: none;  /* Hide indicators when only one slide */
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #0f172a;
    border-radius: 50%;
}

/* Responsive Design for Luxury Showcase */
@media (max-width: 768px) {
    .luxury-showcase {
        padding: 60px 0;
    }
    
    .luxury-title {
        font-size: 2.5rem;
    }
    
    .luxury-subtitle {
        font-size: 1.2rem;
    }
    
    .luxury-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .luxury-image-container {
        height: 300px;
        max-width: 250px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-meta {
        flex-direction: column;
        gap: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-btn-left {
        left: 10px;  /* Mobile: put arrows back inside but at edges */
    }
    
    .carousel-btn-right {
        right: 10px;  /* Mobile: put arrows back inside but at edges */
    }
    
    .carousel-indicators {
        margin-top: 30px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .luxury-carousel {
        padding: 0;  /* Mobile: remove padding */
    }
    
    .carousel-slide .luxury-content {
        grid-template-columns: 1fr;  /* Mobile: single column */
        gap: 40px;
    }
    
    .luxury-image-container {
        max-width: 300px;  /* Mobile: smaller image */
        margin: 0 auto;
    }
}

/* Featured Product Section (Legacy - keeping for other pages) */
.featured-product {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e5e7eb;
}

.featured-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    position: relative;
    border: 2px solid #d4af37;
    max-width: 900px;
    margin: 0 auto;
    height: 350px;
}

.featured-product-image {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.featured-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.featured-product-info {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow-y: auto;
    max-height: 100%;
}

.featured-product-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    flex-shrink: 0;
}

.featured-product-info .product-description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
    flex-shrink: 0;
}

.featured-product-info .product-features {
    margin: 0;
    flex: 1;
    overflow-y: auto;
    padding-right: 12px;
    max-height: 200px;
}

.featured-product-info .feature-category {
    margin-bottom: 16px;
}

.featured-product-info .feature-category h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 8px;
    display: block;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index: 10;
}

.featured-product-info .feature-list {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.featured-product-info .feature-list li {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    background: rgba(212, 175, 55, 0.05);
    padding: 6px 8px 6px 20px;
    border-radius: 4px;
    border-left: 3px solid #d4af37;
}

.featured-product-info .feature-list li::before {
    content: "◆";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.featured-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

/* Custom scrollbar for featured product */
.featured-product-info::-webkit-scrollbar {
    width: 6px;
}

.featured-product-info::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.featured-product-info::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}

.featured-product-info::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

.gallery {
    padding: 40px 0 100px;
    background: #f8fafc;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.gallery-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #205E6D;
    background: #205E6D;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}


.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.featured-luxury {
    grid-column: span 2;
    border: 2px solid #d4af37;
}

.featured-luxury .gallery-image {
    height: 300px;
    aspect-ratio: 3/2;
}

.featured-luxury .gallery-image img {
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    position: relative;
    height: 250px; /* Fallback for older browsers */
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #205E6D;
    font-size: 3rem;
}

.placeholder-image p {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 500;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 16px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.gallery-btn:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-info {
    padding: 24px;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.product-badge[data-badge="LUXURY"] {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.product-badge[data-badge="PREMIUM"] {
    background: linear-gradient(135deg, #6366f1, #a5b4fc);
    color: white;
}

.product-badge[data-badge="FOUNDATION"] {
    background: linear-gradient(135deg, #10b981, #6ee7b7);
    color: white;
}

.product-badge[data-badge="MEDICAL"] {
    background: linear-gradient(135deg, #dc2626, #fca5a5);
    color: white;
}

.gallery-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.gallery-info p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-description {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
}

.product-features {
    margin: 20px 0;
}

.feature-category {
    margin-bottom: 16px;
}

.feature-category h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.feature-list li {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: #205E6D;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
}

.gallery-author {
    font-weight: 500;
}

.upload-section {
    text-align: center;
}

.upload-card {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.upload-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.upload-card p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.lightbox-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Code section styling for Getting Started page */
.code-section {
    padding: 80px 0;
    background: #f8fafc;
}

.code-block {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.code-block h3 {
    color: #205E6D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.code-block h3::before {
    content: "💻";
    font-size: 1.2rem;
}

.code-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 16px;
    background: #f1f5f9;
    border-left: 4px solid #205E6D;
    border-radius: 0 8px 8px 0;
}

.code-block pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    border: 1px solid #334155;
}

.code-block code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
}

/* Syntax highlighting for Python */
.code-block .python .keyword {
    color: #c792ea;
    font-weight: 600;
}

.code-block .python .string {
    color: #a5d6ff;
}

.code-block .python .comment {
    color: #6b7280;
    font-style: italic;
}

.code-block .python .function {
    color: #82aaff;
}

.code-block .python .number {
    color: #f78c6c;
}

.code-block .python .operator {
    color: #89ddff;
}

/* Next steps section */
.next-steps {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    color: #205E6D;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Responsive code blocks */
@media (max-width: 768px) {
    .code-block {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .code-block pre {
        padding: 16px;
        font-size: 12px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        padding: 24px;
    }
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-year {
        left: -40px;
        min-width: 50px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    .values-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-luxury {
        grid-column: span 1;
    }
    
    .featured-product-card {
        grid-template-columns: 1fr;
        margin: 0 20px;
        height: auto;
        max-width: 450px;
    }
    
    .featured-product-image {
        height: 220px;
    }
    
    .featured-product-info {
        padding: 24px;
        max-height: none;
    }
    
    .featured-product-info h2 {
        font-size: 1.6rem;
    }
    
    .featured-product-info .product-description {
        font-size: 0.95rem;
    }
    
    .featured-product-info .product-features {
        flex: none;
        overflow-y: visible;
        max-height: none;
    }
    
    .featured-product-info .feature-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .featured-product-info .feature-category h4 {
        position: static;
        background: none;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    .upload-card {
        padding: 40px 20px;
    }
    
    .lightbox-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Device description formatting */
.device-features {
    margin: 12px 0;
    padding: 0;
    list-style: none;
}

.device-features li {
    position: relative;
    padding: 4px 0 4px 20px;
    margin: 4px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.device-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.1rem;
}

.device-use-case {
    margin: 12px 0 0 0;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 3px solid #007bff;
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Cache buster Mon Sep 29 21:45:43 CEST 2025 */
/* Force refresh 1759175372 */
