/* SAAAAITEX - Clean Evrnu-Inspired Design */
/* Modern, minimal, focused on content and clarity */

:root {
    /* Brand Colors - Navy Blue from SAAAAITEX */
    --navy-primary: #1e3a5f;
    --navy-dark: #152940;
    --navy-light: #2d5282;
    --navy-accent: #3b82f6;
    
    /* Neutral Palette */
    --primary: #1a1a1a;
    --secondary: #666666;
    --accent: var(--navy-primary);
    --background: #ffffff;
    --surface: #f8f8f8;
    --border: #e5e5e5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
}

/* Page Load Animation */
body {
    opacity: 0;
    animation: fadeInPage 0.6s ease-out forwards;
}

body.loaded {
    opacity: 1;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation - Ultra Clean */
.nav-clean {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoEntrance 0.8s ease-out;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Mobile logo - clean version */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.logo-wrapper:hover {
    transform: translateY(-3px);
}

.logo-wrapper:hover .logo-img {
    animation: logoPulse 0.6s ease-in-out;
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-item-cta {
    color: var(--navy-primary);
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--navy-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-cta:hover {
    background: var(--navy-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

/* Nav scroll effect - Shrink on scroll */
.nav-clean.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.nav-clean.scrolled .logo-img {
    height: 50px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item-cta {
        margin: 0.5rem 1.5rem 1rem 1.5rem;
        padding: 0.75rem 1.25rem;
        text-align: center;
        border: 1px solid var(--navy-primary);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-clean.scrolled .logo-img {
        height: 40px;
    }
}

/* Hero Section - Evrnu Style */
.hero-clean {
    padding: 12rem 0 8rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 95, 0.02) 100%);
    opacity: 0;
    animation: patternFadeIn 1.2s ease-out 0.3s forwards;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes patternFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero content fade in */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary-clean {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--navy-primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-clean::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;
}

.btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
    background: var(--navy-dark);
}

.btn-primary-clean:hover::before {
    left: 100%;
}

.link-arrow {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy-primary);
    transition: width 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow:hover::after {
    width: 100%;
}

/* Stats - Minimal */
.stats-clean {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to bottom, #ffffff, var(--surface));
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item-clean {
    text-align: center;
}

.stat-number-clean {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label-clean {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Collections Section */
.collections-clean {
    padding: 8rem 0;
    background: var(--background);
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-clean {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle-clean {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.collection-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.collection-card-clean {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.collection-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-primary), var(--navy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
    border-color: var(--navy-primary);
}

.collection-card-clean:hover::before {
    transform: scaleX(1);
}

.collection-header {
    margin-bottom: 1.5rem;
}

.collection-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--surface);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Brand color accents on tags */
.tag-foundation {
    background: rgba(30, 58, 95, 0.08);
    color: var(--navy-primary);
}

.tag-performance {
    background: rgba(59, 130, 246, 0.08);
    color: var(--navy-accent);
}

.tag-duty {
    background: rgba(30, 58, 95, 0.12);
    color: var(--navy-dark);
}

.collection-card-clean:hover .collection-tag {
    transform: translateY(-2px);
}

.collection-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.collection-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.collection-specs-clean {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec-item {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.section-footer-minimal {
    text-align: center;
}

.link-large {
    font-size: 1.125rem;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.link-large::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy-primary);
    transition: width 0.3s ease;
}

.link-large:hover {
    transform: translateX(8px);
}

.link-large:hover::after {
    width: calc(100% - 30px);
}

/* Applications Showcase */
.applications-showcase {
    padding: 8rem 0;
    background: var(--background);
    position: relative;
}

.applications-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.applications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.application-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-primary), var(--navy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
    border-color: var(--navy-primary);
}

.application-card:hover::before {
    transform: scaleX(1);
}

.application-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.application-card:hover .application-icon {
    transform: scale(1.15) rotate(5deg);
}

.application-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.application-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Approach Section */
.approach-clean {
    padding: 8rem 0;
    background: var(--surface);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.approach-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.approach-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.approach-item-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-clean {
    padding: 8rem 0;
    background: var(--text-primary);
    color: white;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.btn-cta-clean {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-clean:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Page Hero - For Interior Pages */
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--surface) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Page Hero with Background Image */
.page-hero-image {
    padding: 14rem 0 8rem;
    background: none;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.85) 0%,
        rgba(21, 41, 64, 0.75) 50%,
        rgba(30, 58, 95, 0.85) 100%
    );
    z-index: 2;
}

.page-hero-image .page-hero-container {
    position: relative;
    z-index: 3;
}

.page-hero-image::before {
    display: none;
}

.hero-title-light {
    color: white;
}

.hero-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background: var(--background);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.visual-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.visual-stat {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.visual-stat:last-child {
    border-bottom: none;
}

.visual-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.visual-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--surface);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-primary), var(--navy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--background);
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.team-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 2rem auto 4rem;
    max-width: 800px;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-highlight {
    text-align: left;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-primary);
}

.highlight-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products Detail Section */
.products-detail-section {
    padding: 4rem 0 8rem;
    background: var(--background);
}

.products-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.product-detail-block {
    margin-bottom: 8rem;
}

.product-detail-block:last-child {
    margin-bottom: 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.product-detail-grid.reverse {
    direction: rtl;
}

.product-detail-grid.reverse > * {
    direction: ltr;
}

.product-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(30, 58, 95, 0.08);
    color: var(--navy-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.category-performance {
    background: rgba(59, 130, 246, 0.08);
    color: var(--navy-accent);
}

.category-duty {
    background: rgba(30, 58, 95, 0.12);
    color: var(--navy-dark);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.product-detail-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.product-applications {
    margin-bottom: 2.5rem;
}

.applications-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.applications-list {
    list-style: none;
    padding: 0;
}

.applications-list li {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.applications-list li:last-child {
    border-bottom: none;
}

.product-specs-table {
    background: var(--surface);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.specs-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

.specs-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.spec-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-primary);
}

.product-detail-visual {
    position: relative;
}

.product-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.03) 0%,
        transparent 50%,
        rgba(30, 58, 95, 0.03) 100%
    );
    pointer-events: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-detail-block:hover .product-image {
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.15);
}

.product-detail-block:hover .product-img {
    transform: scale(1.05);
}

/* Custom Development Section */
.custom-dev-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    color: white;
}

.custom-dev-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.custom-dev-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.custom-dev-text {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-dev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.feature-check {
    font-size: 1.25rem;
    color: var(--navy-accent);
}

/* Capabilities Page Styles */
.capabilities-overview {
    padding: 8rem 0;
    background: var(--background);
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.capability-card {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
}

.capability-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--navy-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.capability-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.capability-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.capability-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--navy-primary);
}

.process-section {
    padding: 8rem 0;
    background: var(--surface);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Quality Page Styles */
.quality-commitment {
    padding: 8rem 0;
    background: var(--background);
}

.quality-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.quality-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.quality-intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
}

.quality-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.certification-section {
    padding: 8rem 0;
    background: var(--surface);
}

.certification-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.cert-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 2rem 0 3rem;
}

.cert-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.cert-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.benefit-icon {
    color: var(--navy-primary);
    font-weight: 600;
}

.testing-params {
    padding: 8rem 0;
    background: var(--background);
}

.testing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.param-card {
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.param-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
    border-color: var(--navy-primary);
}

.param-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy-primary);
}

.param-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 8rem 0;
    background: var(--background);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-icon {
    font-size: 1.5rem;
}

.detail-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.detail-value a {
    color: var(--navy-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.detail-value a:hover {
    opacity: 0.7;
}

.business-hours {
    padding: 2rem;
    background: var(--surface);
    border-radius: 4px;
}

.hours-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hours-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-full-width {
    width: 100%;
}

/* Modern Icon System */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(59, 130, 246, 0.08));
    position: relative;
    transition: all 0.3s ease;
}

.icon::before {
    content: '';
    position: absolute;
    font-size: 1.75rem;
    color: var(--navy-primary);
}

.icon-towel::before { content: ''; width: 24px; height: 30px; background: var(--navy-primary); border-radius: 2px; opacity: 0.7; }
.icon-table::before { content: ''; width: 28px; height: 4px; background: var(--navy-primary); border-radius: 1px; box-shadow: 0 8px 0 var(--navy-primary), 0 16px 0 var(--navy-primary); }
.icon-medical::before { content: '+'; font-size: 2rem; font-weight: 300; color: var(--navy-primary); }
.icon-hotel::before { content: ''; width: 28px; height: 24px; border: 2px solid var(--navy-primary); border-top: 8px solid var(--navy-primary); border-radius: 2px 2px 0 0; }
.icon-target::before { content: ''; width: 28px; height: 28px; border: 3px solid var(--navy-primary); border-radius: 50%; box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 8px var(--navy-primary); }
.icon-handshake::before { content: '⟷'; font-size: 2rem; color: var(--navy-primary); font-weight: 300; }
.icon-lightning::before { content: '⚡'; font-size: 2rem; filter: grayscale(1) brightness(0.3); }
.icon-globe::before { content: '◉'; font-size: 2rem; color: var(--navy-primary); }
.icon-location::before { content: '📍'; font-size: 1.75rem; filter: grayscale(0.5); }
.icon-email::before { content: '✉'; font-size: 1.75rem; filter: grayscale(1) brightness(0.3); }
.icon-phone::before { content: '☎'; font-size: 1.75rem; filter: grayscale(1) brightness(0.3); }

/* Large Application Icons */
.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-icon::before {
    font-size: 2.5rem;
    position: absolute;
}

.app-icon-towel::before {
    content: '';
    width: 32px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
    border-radius: 3px;
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.1);
}

.app-icon-table::before {
    content: '';
    width: 36px;
    height: 5px;
    background: var(--navy-primary);
    border-radius: 2px;
    box-shadow: 0 10px 0 var(--navy-primary), 0 20px 0 var(--navy-primary);
}

.app-icon-medical::before {
    content: '';
    width: 36px;
    height: 36px;
    background: 
        linear-gradient(var(--navy-primary), var(--navy-primary)) center/6px 100% no-repeat,
        linear-gradient(var(--navy-primary), var(--navy-primary)) center/100% 6px no-repeat;
}

.app-icon-hotel::before {
    content: '';
    width: 36px;
    height: 30px;
    border: 3px solid var(--navy-primary);
    border-top: 10px solid var(--navy-primary);
    border-radius: 3px 3px 0 0;
}

/* Value Icons */
.value-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.06), rgba(59, 130, 246, 0.06));
    border: 1px solid rgba(30, 58, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.value-icon-modern::before {
    content: '';
    position: absolute;
}

.icon-quality::before {
    width: 32px;
    height: 32px;
    border: 3px solid var(--navy-primary);
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 10px var(--navy-primary);
}

.icon-partnership::before {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid var(--navy-primary);
    box-shadow: 20px 0 0 var(--navy-primary);
}

.icon-efficiency::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid var(--navy-primary);
    border-radius: 3px;
    transform: rotate(45deg);
    box-shadow: inset 6px -6px 0 var(--navy-primary);
}

.icon-standards::before {
    width: 34px;
    height: 34px;
    border: 3px solid var(--navy-primary);
    border-radius: 50%;
    background: 
        linear-gradient(var(--navy-primary), var(--navy-primary)) center/2px 70% no-repeat,
        linear-gradient(var(--navy-primary), var(--navy-primary)) center/70% 2px no-repeat;
}

/* Pillar Icons for Quality Page */
.pillar-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.pillar-icon-modern::before {
    content: '';
    position: absolute;
}

.icon-microscope::before {
    width: 8px;
    height: 32px;
    background: var(--navy-primary);
    border-radius: 20px;
    box-shadow: 
        -12px -8px 0 -6px var(--navy-primary),
        12px -8px 0 -6px var(--navy-primary),
        0 18px 0 -4px var(--navy-primary);
}

.icon-gear::before {
    width: 36px;
    height: 36px;
    background: var(--navy-primary);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 
        79% 91%, 50% 70%, 21% 91%, 32% 57%, 
        2% 35%, 39% 35%
    );
}

.icon-checkmark::before {
    width: 12px;
    height: 24px;
    border-right: 4px solid var(--navy-primary);
    border-bottom: 4px solid var(--navy-primary);
    transform: rotate(45deg) translateY(-4px);
}

.icon-chart::before {
    width: 32px;
    height: 28px;
    background: 
        linear-gradient(var(--navy-primary), var(--navy-primary)) 0% 100%/6px 60% no-repeat,
        linear-gradient(var(--navy-primary), var(--navy-primary)) 40% 100%/6px 80% no-repeat,
        linear-gradient(var(--navy-primary), var(--navy-primary)) 80% 100%/6px 40% no-repeat;
}

/* Contact Detail Icons */
.detail-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.detail-icon-modern::before {
    content: '';
    position: absolute;
}

.icon-pin::before {
    width: 20px;
    height: 28px;
    background: var(--navy-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: inset 4px 4px 0 #fff;
}

.icon-envelope::before {
    width: 28px;
    height: 20px;
    border: 3px solid var(--navy-primary);
    border-radius: 2px;
    box-shadow: inset 0 -10px 0 -7px var(--navy-primary);
}

.icon-telephone::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--navy-primary);
    border-radius: 5px;
    transform: rotate(-30deg);
    box-shadow: inset 6px -6px 0 -3px var(--navy-primary);
}

/* Hover effects */
.app-icon:hover,
.value-icon-modern:hover,
.pillar-icon-modern:hover,
.icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.15);
}

.value-card:hover .value-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.application-card:hover .app-icon {
    transform: translateY(-8px) scale(1.08);
}

.pillar-card:hover .pillar-icon-modern {
    transform: scale(1.1);
    border-color: var(--navy-primary);
}

/* Footer */
.footer-clean {
    padding: 4rem 0 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .collection-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation handled above */
    
    .hero-clean {
        padding: 8rem 0 4rem;
    }
    
    .nav-clean {
        padding: 1rem 0;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .collections-container {
        padding: 0 1.5rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-container {
        padding: 0 1.5rem;
    }
    
    .app-icon {
        width: 70px;
        height: 70px;
    }
    
    .application-title {
        font-size: 1.125rem;
    }
    
    .application-text {
        font-size: 0.875rem;
    }
    
    .section-title-clean {
        font-size: 2rem;
    }
    
    .approach-container {
        padding: 0 1.5rem;
    }
    
    .approach-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    /* Mobile product images */
    .product-image {
        height: 300px;
    }
    
    /* Mobile contact form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Better mobile spacing */
    .section-title-clean {
        font-size: 2rem;
    }
    
    .approach-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}
