:root {
    /* Tech Blue Theme Colors */
    --primary-color: #0F172A;        /* Deep Blue - Main brand color */
    --secondary-color: #3B82F6;      /* Electric Blue - Interactive elements */
    --accent-color: #06B6D4;         /* Cyan - Accents and highlights */
    --accent-orange: #F59E0B;        /* Amber - Warnings */
    --success-color: #10B981;        /* Emerald - Success states */

    /* Backgrounds */
    --light-bg: #F8FAFC;             /* Light gray background */
    --card-bg: #FFFFFF;              /* White cards */
    --dark-bg: #0F172A;              /* Dark sections */

    /* Text Colors */
    --light-text: #1E293B;           /* Main text */
    --text-gray: #64748b;            /* Secondary text */
    --text-muted: #94a3b8;           /* Muted text */

    /* Borders & Dividers */
    --border-color: #E2E8F0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-text: linear-gradient(135deg, #3B82F6, #06B6D4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    min-height: 100vh;
    text-align: left;
}

/* Ensure paragraphs are left-aligned by default */
p {
    text-align: left;
}

html {
    scroll-behavior: smooth;
    background-color: var(--light-bg);
}

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

/* Navigation - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: 100px 20px;
    text-align: center;
    background: var(--gradient-primary);
    border-bottom: none;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Animated background blobs */
.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p:first-of-type {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero section secondary buttons - blue background like primary */
.hero-section .btn-secondary {
    background: var(--gradient-blue);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hero-section .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

/* Modern Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #FFFFFF;
}

.features-section:first-of-type {
    padding-top: 40px;
}

.features-section:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 40px;
}

.features-section h2,
.section-header h1,
.product-details h2,
.company-info-section h2,
.address-section h2,
.contact-section h2,
.faq-section h2,
.about-header h1,
.about-content h2,
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
}

/* Horizontal Scrolling Carousel */
.features-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.25rem;
    scroll-behavior: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Future Areas of Work - Optimized spacing with consistent card heights */
#future-innovations .features-grid {
    gap: 1rem;
    align-items: stretch;
}

#future-innovations .feature-card {
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

#future-innovations .feature-card * {
    box-sizing: border-box;
}

#future-innovations .product-header {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

#future-innovations .product-header-icon {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    width: 90px !important;
    height: 90px !important;
    padding: 0.5rem !important;
}

#future-innovations .product-header h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    padding: 0 !important;
}

#future-innovations .feature-card > p {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

#future-innovations .feature-card p:last-of-type {
    margin-bottom: 1rem !important;
}

#future-innovations .features-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

#future-innovations .features-list li {
    padding: 0.4rem 0 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

#future-innovations .features-list li:last-child {
    padding-bottom: 0 !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.features-grid::-webkit-scrollbar {
    display: none;
}

/* Auto-scroll animation */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

.features-grid.auto-scroll {
    overflow-x: hidden;
    display: flex;
    flex-wrap: nowrap;
}

.features-grid.auto-scroll .feature-card {
    animation: scroll-carousel 20s linear infinite;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
}

.feature-card > * {
    flex-shrink: 0;
}

.feature-card p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-align: center;
    font-size: 0.9rem;
}

.feature-card p:last-of-type {
    margin-bottom: 0;
}

.feature-card .features-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card .btn {
    align-self: center;
    margin-top: auto;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    width: auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

@media (min-width: 768px) {
    .feature-card {
        flex: 0 0 400px;
        min-width: 400px;
    }
}

@media (min-width: 1200px) {
    .feature-card {
        flex: 1;
        min-width: 350px;
    }
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 43, 96, 0.15);
}

.feature-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Feature Images */
.feature-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

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

.feature-card:hover .feature-image img,
.highlight-item:hover .feature-image img {
    transform: scale(1.05);
}

/* Future Area Cards - Show full logos */
.future-area-card .feature-image {
    height: 140px;
    padding: 1rem;
}

.future-area-card .feature-image img {
    object-fit: contain;
}

.future-area-card {
    transition: all 0.3s ease;
}

.future-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.future-area-card:hover .feature-image img {
    transform: scale(1.08);
}

.future-area-card:hover h3 {
    color: var(--secondary-color);
}

/* Product Cards - Show full logos for specific products */
.product-card .product-image {
    height: 180px;
}

.product-card .product-image img {
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    text-align: center;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-gray);
    text-align: left;
}

/* Simple Disclaimer Section */
.simple-disclaimer-section {
    padding: 0;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-top: 2px solid var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
}

.simple-disclaimer {
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.simple-disclaimer strong {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.05rem;
}

.disclaimer-link {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Responsive Simple Disclaimer */
@media (max-width: 768px) {
    .simple-disclaimer {
        font-size: 0.9rem;
        padding: 1.25rem 1.5rem;
        line-height: 1.6;
    }

    .disclaimer-link {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Product Tabs */
.product-tabs {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem 0;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--primary-color);
    background: rgba(47, 43, 96, 0.05);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px 3px 0 0;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

/* Horizontal Tabs */
.horizontal-tabs-container {
    margin-top: 1.5rem;
}

.horizontal-tab-buttons {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.horizontal-tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.horizontal-tab-button:hover {
    color: var(--primary-color);
    background: rgba(15, 23, 42, 0.05);
}

.horizontal-tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.horizontal-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.horizontal-tab-content.active {
    display: block;
}

/* Values Scroll Banners - Horizontal Scrolling */
.values-scroll-container {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.values-scroll-banners {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
    padding-bottom: 0.5rem;
}

.values-scroll-banners::-webkit-scrollbar {
    height: 6px;
}

.values-scroll-banners::-webkit-scrollbar-track {
    background: transparent;
}

.values-scroll-banners::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 3px;
}

.value-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1.25rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 120px;
    white-space: nowrap;
}

.value-banner:hover {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.05);
    transform: translateY(-3px);
}

.value-banner.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1E293B 100%);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.value-banner.active .value-icon {
    transform: scale(1.1);
}

.value-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    display: block;
}

.value-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.value-banner.active .value-name {
    color: white;
}

.value-content-wrapper {
    position: relative;
    min-height: 150px;
}

.value-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.value-content.active {
    display: block;
}

@media (max-width: 768px) {
    .value-banner {
        min-width: 100px;
        padding: 1.25rem 1rem;
    }
    
    .value-icon {
        font-size: 1.75rem;
    }
    
    .value-name {
        font-size: 0.85rem;
    }
}

/* Vertical Tabs */
.vertical-tabs-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    min-height: 400px;
}

.vertical-tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 250px;
    border-right: 2px solid var(--border-color);
    padding-right: 1.5rem;
}

.vertical-tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    border-right: 3px solid transparent;
}

.vertical-tab-button:hover {
    color: var(--primary-color);
    background: rgba(15, 23, 42, 0.05);
}

.vertical-tab-button.active {
    color: var(--primary-color);
    background: rgba(15, 23, 42, 0.08);
    border-right-color: var(--primary-color);
}

.vertical-tab-contents {
    flex: 1;
    padding-left: 1rem;
}

.vertical-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.vertical-tab-content.active {
    display: block;
}

.vertical-tab-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
}

.vertical-tab-content p {
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.25rem;
}

.vertical-tab-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .horizontal-tab-buttons {
        flex-direction: column;
    }
    
    .horizontal-tab-button {
        width: 100%;
        text-align: center;
    }
    
    .vertical-tabs-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vertical-tab-buttons {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1rem;
        min-width: 100%;
    }
    
    .vertical-tab-button {
        white-space: nowrap;
        border-right: none;
        border-bottom: 3px solid transparent;
        padding: 0.75rem 1rem;
    }
    
    .vertical-tab-button.active {
        border-right: none;
        border-bottom-color: var(--primary-color);
    }
    
    .vertical-tab-contents {
        padding-left: 0;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 43, 96, 0.15);
}

/* Product Card Header - Vertical Centered Layout */
.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.product-header-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    margin-bottom: 0.75rem;
}

.product-header-icon img,
.product-header-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Make TruelexFX logo bigger to match other logos visually */
.product-header-icon img[alt*="TruelexFX"],
.product-header-icon img[src*="TruelexFX"] {
    width: 160%;
    height: 160%;
    max-width: 160%;
    max-height: 160%;
    object-fit: contain;
    transform: scale(1.4);
}

/* Increase container size for TruelexFX to accommodate larger logo */
.product-header-icon:has(img[alt*="TruelexFX"]),
.product-header-icon:has(img[src*="TruelexFX"]) {
    padding: 0.2rem;
    width: 110px;
    height: 110px;
}

.product-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    line-height: 1.4;
    text-align: center;
}

.product-icon {
    width: 52px;
    height: 52px;
    background: rgba(47, 43, 96, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.05);
    background: rgba(47, 43, 96, 0.3);
}

.product-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    transition: all 0.3s;
}

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

/* Vow2.Life Logo Styling */
.product-icon.vow2-icon {
    background: transparent;
    padding: 8px;
    width: 120px;
    height: 120px;
}

.product-icon.vow2-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    /* Darker shadow to make white logo clearly visible on light backgrounds */
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    transition: filter 0.3s ease;
}

.product-card:hover .product-icon.vow2-icon {
    background: rgba(47, 43, 96, 0.08);
    transform: scale(1.05);
}

.product-card:hover .product-icon.vow2-icon img {
    /* Even darker shadow on hover for maximum visibility */
    filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.45)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

/* Product Images */
.product-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

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

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--light-text);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    text-align: left;
}

.product-card .features-list {
    text-align: left;
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-card .features-list li {
    text-align: left;
}

.features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Product card specific styling */
.product-card strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--light-text);
    display: block;
    margin-bottom: 0.5rem;
}

.product-card .features-list li strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    display: inline;
    margin-right: 0.5rem;
}

/* Products Section */
.products-section {
    padding: 100px 20px 60px 20px;
    background-color: #FFFFFF;
    margin-top: 0;
}

/* Technology Overview Section */
.technology-overview {
    margin: 3rem 0 4rem 0;
}

.tech-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-overview-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-overview-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(47, 43, 96, 0.1);
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(107, 33, 168, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.tech-overview-card:nth-child(2) .tech-icon {
    background: rgba(8, 145, 178, 0.1);
}

.tech-overview-card:nth-child(3) .tech-icon {
    background: rgba(234, 88, 12, 0.1);
}

.tech-overview-card:nth-child(4) .tech-icon {
    background: rgba(16, 185, 129, 0.1);
}

.tech-overview-card:nth-child(5) .tech-icon {
    background: rgba(107, 33, 168, 0.1);
}

.tech-overview-card:nth-child(6) .tech-icon {
    background: rgba(8, 145, 178, 0.1);
}

.tech-overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.tech-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-overview-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.tech-overview-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .tech-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 20px 60px 20px;
    background-color: #FFFFFF;
    margin-top: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    margin-bottom: 1rem;
}

.about-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin: 0;
}

.about-content {
    margin-bottom: 1rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.about-card h2 {
    margin-bottom: 1.5rem;
    margin-top: 0;
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--primary-color);
    text-align: center;
}

.about-card p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-card h3 {
    text-align: center;
    color: var(--primary-color);
}

.about-card ul {
    text-align: left;
    list-style-position: outside;
    margin: 0;
    max-width: 900px;
    padding-left: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.values-list li {
    padding: 1.25rem 1.5rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    line-height: 1.8;
}

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

.values-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Vision Goals Section */
.vision-goals-section {
    margin: 4rem 0;
    background-color: #FFFFFF;
}

.vision-goals-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.vision-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.vision-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 43, 96, 0.15);
}

.vision-item:hover::before {
    transform: scaleX(1);
}

.vision-icon {
    width: 40px;
    height: 40px;
    background: rgba(47, 43, 96, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vision-item:hover .vision-icon {
    transform: scale(1.05);
    border-color: var(--primary-color);
    background: rgba(47, 43, 96, 0.15);
}

.vision-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.vision-item:hover .vision-icon svg {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Colorful individual icon backgrounds */
.vision-item:nth-child(1) .vision-icon {
    background: rgba(47, 43, 96, 0.15);
}

.vision-item:nth-child(1) .vision-icon svg {
    color: #2F2B60;
}

.vision-item:nth-child(2) .vision-icon {
    background: rgba(184, 11, 214, 0.15);
}

.vision-item:nth-child(2) .vision-icon svg {
    color: #B80BD6;
}

.vision-item:nth-child(3) .vision-icon {
    background: rgba(234, 88, 12, 0.15);
}

.vision-item:nth-child(3) .vision-icon svg {
    color: #EA580C;
}

.vision-item:nth-child(4) .vision-icon {
    background: rgba(47, 43, 96, 0.15);
}

.vision-item:nth-child(4) .vision-icon svg {
    color: #2F2B60;
}

.vision-item:nth-child(5) .vision-icon {
    background: rgba(184, 11, 214, 0.15);
}

.vision-item:nth-child(5) .vision-icon svg {
    color: #B80BD6;
}

.vision-item:nth-child(6) .vision-icon {
    background: rgba(239, 68, 68, 0.15);
}

.vision-item:nth-child(6) .vision-icon svg {
    color: #EF4444;
}

.vision-item:nth-child(7) .vision-icon {
    background: rgba(8, 145, 178, 0.15);
}

.vision-item:nth-child(7) .vision-icon svg {
    color: #0891B2;
}

.vision-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    font-weight: 600;
}

.vision-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.vision-item p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Company Info Section */
.company-info-section {
    margin: 4rem 0;
    background-color: #FFFFFF;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Address Section */
.address-section {
    margin: 3rem 0;
    background-color: #FFFFFF;
}

.address-card {
    background: rgba(47, 43, 96, 0.08);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.8;
}

.address {
    background: rgba(47, 43, 96, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.address h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.address p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px 60px 20px;
    min-height: calc(100vh - 200px);
    background-color: #FFFFFF;
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--light-text);
    background: none;
    -webkit-text-fill-color: unset;
}

.contact-group {
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-group h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.address-item {
    flex-direction: column;
}

.address-item svg {
    margin-top: 0;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 250px;
    }
}

.company-registration {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.company-registration p {
    margin-bottom: 0.5rem;
}

.company-registration strong {
    color: var(--light-text);
}

.company-registration a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--light-text);
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    display: inline;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-method svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    background-color: #FFFFFF;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(47, 43, 96, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Future Areas Section */
.future-areas-section {
    margin: 4rem 0;
    background-color: #FFFFFF;
    padding: 3rem 0;
}

.future-areas-section .section-header {
    margin-bottom: 3rem;
}

.future-areas-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.future-areas-section .section-header p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.future-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.future-area-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.future-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.future-area-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 43, 96, 0.15);
}

.future-area-card:hover::before {
    transform: scaleX(1);
}

.future-area-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.future-area-card:hover .future-area-icon {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.future-area-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.future-area-card:nth-child(1) .future-area-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.2) 100%);
}

.future-area-card:nth-child(1) .future-area-icon svg {
    color: #10b981;
}

.future-area-card:nth-child(2) .future-area-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.2) 100%);
}

.future-area-card:nth-child(2) .future-area-icon svg {
    color: #EF4444;
}

.future-area-card:nth-child(3) .future-area-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
}

.future-area-card:nth-child(3) .future-area-icon svg {
    color: #3B82F6;
}

.future-area-card:nth-child(4) .future-area-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(196, 181, 253, 0.2) 100%);
}

.future-area-card:nth-child(4) .future-area-icon svg {
    color: #A855F7;
}

.future-area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    font-weight: 600;
}

.future-area-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.future-areas-note {
    margin-top: 3rem;
}

.note-card {
    background: rgba(47, 43, 96, 0.04);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.note-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Product Details */
.product-details {
    margin: 4rem 0;
    background-color: #FFFFFF;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.detail-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-card p {
    color: var(--text-gray);
}

/* Vision Highlight Section */
.vision-highlight-section {
    padding: 80px 20px;
    background: rgba(47, 43, 96, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.vision-highlight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

.vision-highlight-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    scroll-behavior: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 2rem;
}

.vision-highlight-grid::-webkit-scrollbar {
    display: none;
}

.highlight-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    flex: 0 0 350px;
    min-width: 350px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .highlight-item {
        flex: 0 0 400px;
        min-width: 400px;
    }
}

@media (min-width: 1200px) {
    .highlight-item {
        flex: 1;
        min-width: 350px;
    }
}

/* Center align images in vision highlight section */
.highlight-item .feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 43, 96, 0.15);
}

.highlight-item {
    position: relative;
}

.highlight-item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-item:nth-child(1) svg {
    color: #2F2B60;
    background: rgba(47, 43, 96, 0.12);
}

.highlight-item:nth-child(2) svg {
    color: #EA580C;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
}

.highlight-item:nth-child(3) svg {
    color: #B80BD6;
    background: rgba(184, 11, 214, 0.12);
}

.highlight-item:hover svg {
    transform: scale(1.1);
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.highlight-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: rgba(47, 43, 96, 0.04);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.cta-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-info-footer {
    font-size: 0.9rem;
}

.contact-info-footer p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Webmail Section */
.webmail-section {
    padding: 80px 20px;
    margin-top: 80px;
    background-color: #FFFFFF;
}

.webmail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.webmail-wrapper-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.webmail-login {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.login-header h1 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-gray);
}

.login-form {
    margin-bottom: 2rem;
}

.login-info {
    background: rgba(47, 43, 96, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.login-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.webmail-features {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
}

.webmail-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.webmail-features ul {
    list-style: none;
}

.webmail-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.webmail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box ol {
    list-style-position: inside;
    color: var(--text-gray);
}

.info-box ol li {
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
footer {
    background: rgba(47, 43, 96, 0.04);
    border-top: 1px solid var(--border-color);
    padding: 4rem 20px 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-logo span {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.company-details p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.company-details strong {
    color: var(--light-text);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.footer-copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Terms Section */
.terms-section {
    padding: 60px 20px 40px;
    background-color: #FFFFFF;
    margin-top: 80px;
}

.terms-section .section-header {
    margin-bottom: 2rem;
}

.terms-section .section-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.terms-section .section-header p {
    font-size: 0.9rem;
    margin: 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.terms-card-header {
    width: 100%;
    background: var(--card-bg);
    border: none;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.terms-card-header:hover {
    background: var(--light-bg);
}

.terms-card-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.terms-toggle-icon {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.terms-card-content {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.terms-card-content p {
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
}

.terms-card-content p:last-child {
    margin-bottom: 0;
}

.terms-card.expanded .terms-card-header {
    border-bottom: 1px solid var(--border-color);
}

.terms-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.terms-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.terms-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.company-registration-small {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.small-text {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.small-text strong {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Responsive tabs */
    .product-tabs {
        gap: 0.5rem;
        margin: 2rem 0 1.5rem 0;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-section h2,
    .section-header h1,
    .product-details h2,
    .about-header h1,
    .about-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .products-grid,
    .info-grid,
    .details-grid,
    .vision-grid,
    .vision-highlight-grid,
    .future-areas-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .webmail-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.5rem;
    }

    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .features-section,
    .about-section,
    .contact-section,
    .webmail-section,
    .terms-section {
        padding: 40px 15px;
    }
    
    .products-section {
        padding: 100px 15px 60px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE CONSENT BANNER & MODAL STYLES
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-consent-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-consent-text a:hover {
    opacity: 0.8;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-consent-actions .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cookie-consent-actions .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cookie-consent-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cookie-consent-actions .btn-tertiary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-consent-actions .btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: white;
    border-radius: 16px 16px 0 0;
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.cookie-category p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--success-color);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-modal-footer .btn-primary {
    background: var(--primary-color);
    color: white;
}

.cookie-modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 43, 96, 0.4);
}

.cookie-modal-footer .btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-modal-footer .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Cookie Toast Notification */
.cookie-toast {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10002;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent-actions .btn {
        width: 100%;
        text-align: center;
    }

    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }

    .cookie-toast {
        left: 20px;
        right: 20px;
        bottom: 80px;
    }
}

/* ============================================
   ACCESSIBILITY STYLES
   ============================================ */

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 100000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visibility improvements */
body.user-is-tabbing *:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

body.user-is-tabbing a:focus,
body.user-is-tabbing button:focus,
body.user-is-tabbing input:focus,
body.user-is-tabbing textarea:focus,
body.user-is-tabbing select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced focus for interactive elements */
.nav-link:focus,
.btn:focus,
.feature-card:focus,
.product-card:focus {
    box-shadow: 0 0 0 3px rgba(47, 43, 96, 0.3);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #5B1890;
        --text-gray: #333333;
        --border-color: #000000;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in,
    .scale-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Dark mode support disabled - keeping Prodegy Labs light brand colors */
/* If you want dark mode in the future, uncomment the code below */
/*
@media (prefers-color-scheme: dark) {
    body[data-theme="dark"] {
        --light-bg: #1a1a1a;
        --card-bg: #2d2d2d;
        --light-text: #f0f0f0;
        --text-gray: #b0b0b0;
        --border-color: #404040;
    }

    body[data-theme="dark"] .navbar {
        background: rgba(26, 26, 26, 0.98);
        border-bottom-color: #404040;
    }

    body[data-theme="dark"] .feature-card,
    body[data-theme="dark"] .product-card,
    body[data-theme="dark"] .about-card {
        background: #2d2d2d;
        border-color: #404040;
    }

    body[data-theme="dark"] footer {
        background: #1a1a1a;
        border-top-color: #404040;
    }
}
*/

/* Ensure sufficient color contrast for WCAG AA */
.text-muted {
    color: #64748b;
}

/* Focus indicators for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Better touch targets (min 44x44px for WCAG AAA) */
.btn,
button,
a[role="button"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Nav links get padding instead of min-height to avoid layout issues */
.nav-link {
    padding: 0.8rem 1rem;
}

/* Link visibility - only underline on hover for cleaner look */
a:not(.btn):not(.nav-link) {
    text-decoration: none;
    transition: text-decoration 0.2s;
}

a:not(.btn):not(.nav-link):hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Form accessibility */
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: #dc2626;
    outline: 2px solid rgba(220, 38, 38, 0.2);
}

input[aria-invalid="false"],
textarea[aria-invalid="false"],
select[aria-invalid="false"] {
    border-color: #10b981;
}

/* Leadership Team - Smaller buttons */
.leadership-team-section .feature-card .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: auto;
    text-align: center;
}

/* Ensure all Learn More buttons in feature cards are consistently styled */
.features-section .feature-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

/* Live region for dynamic content announcements */
#live-region {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
