:root {
    /* Color Palette */
    --bg-dark: #0a0a0a;
    --bg-charcoal: #121212;
    --accent-blue: #00a3ff;
    --accent-blue-glow: rgba(0, 163, 255, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing & Transitions */
    --nav-height: 80px;
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    word-break: keep-all;
    /* Prevents splitting Korean words mid-line */
    overflow-wrap: break-word;
    /* Ensures layout doesn't break on extreme narrow screens */
}

/* Base Styles */
h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-container img {
    height: 30px;
    width: auto;
    /* Invert black to white, preserve/restore blue via hue rotation, remove white background */
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
    mix-blend-mode: screen;
    display: block;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-container:hover img {
    filter: invert(1) hue-rotate(180deg) brightness(1.4) drop-shadow(0 0 8px var(--accent-blue-glow));
}

/* Adjust size for sub-logo (increased 1.7x) */
.sub-logo-container img {
    height: 40px;
}

nav {
    margin-left: auto;
    margin-right: 50px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.lang-kr nav ul li a {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
}

nav ul li a.active {
    color: var(--accent-blue);
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.lang-toggle {
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-secondary);
    user-select: none;
}

.lang-toggle span {
    padding: 2px 5px;
    transition: var(--transition-fast);
}

.lang-toggle span:hover {
    color: var(--accent-blue);
}

.lang-toggle span.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--accent-blue);
}

/* Page Header */
.page-header {
    padding: 150px 5% 50px;
    text-align: center;
    background: linear-gradient(to bottom, #1a1a2e, var(--bg-dark));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #02040a;
    /* Dark theme matching the 3D fog */
    padding: 0 10%;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 163, 255, 0.3);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #00a3ff 0%, #0061ff 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.3);
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, #00b4ff 0%, #0072ff 100%);
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.5);
}

.hero-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translate(-50%, -50%) skewX(-20deg);
    transition: 0.6s;
    left: -120%;
}

.hero-btn:hover::after {
    left: 120%;
}

/* Hero Specs */
.hero-specs {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.hero-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-spec-val {
    font-size: 2rem;
    /* Reduced from 3rem */
    font-weight: 800;
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
    /* Softened glow */
    line-height: 1;
}

.hero-spec-lbl {
    font-size: 0.8rem;
    /* Slightly smaller */
    color: rgba(255, 255, 255, 0.35);
    /* More muted */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .hero-specs {
        gap: 30px;
        margin-top: 40px;
    }

    .hero-spec-val {
        font-size: 1.6rem;
    }

    .hero-spec-lbl {
        font-size: 0.7rem;
    }
}

.btn-outline {
    padding: 10px 25px;
    border: 1px solid var(--accent-blue);
    border-radius: 5px;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 15px var(--accent-blue-glow);
}

.res-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.res-icon {
    color: var(--accent-blue);
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 40px;
}

/* High-Impact Highlights Section */
.highlights {
    width: 100%;
    background-color: #02040a;
    padding: 80px 0;
}

.highlights-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

@media screen and (max-width: 600px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .highlight-item {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .highlight-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .highlight-title {
        font-size: 1.4rem;
    }

    .highlight-desc {
        font-size: 0.75rem;
    }
}

/* Fade effect at bottom of hero */
.hero {
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #02040a);
    pointer-events: none;
    z-index: 5;
}

/* Key Metrics Row */
.highlights-metrics {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 120px;
    /* Increased from 80px */
    padding: 0 5%;
    flex-wrap: wrap;
}

.metric-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    display: flex;
    align-items: flex-end;
    /* Align bottom edges */
    justify-content: center;
    min-height: 5.5rem;
    /* Ensure consistent container height */
}

.metric-value.metric-flag {
    font-size: 4.5rem;
    /* Larger flag */
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.metric-value.highlight-blue {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
}

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    /* Reduced for compact look */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    background: rgba(0, 163, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-label {
    font-size: 0.85rem;
    /* Increased from 0.7rem */
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* Slightly tighter for longer KR labels */
    margin-bottom: 12px;
    opacity: 0.9;
    /* Slightly more opaque */
}

.highlight-title {
    font-size: 1.8rem;
    /* Reduced from 2.2 */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.highlight-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    /* Smaller */
    line-height: 1.4;
}

@media screen and (max-width: 900px) {
    .highlights-metrics {
        gap: 40px;
        margin-bottom: 60px;
    }

    .metric-value {
        font-size: 2.5rem;
    }
}

/* Applications Section */
.applications {
    padding: 100px 5%;
    background-color: #02040a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.app-header {
    text-align: center;
    max-width: 700px;
}

.app-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    /* Increased weight */
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.app-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.app-card {
    flex: 0 1 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 992px) {
    .app-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media screen and (max-width: 600px) {
    .app-card {
        flex: 0 1 100%;
    }
}

.app-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-image {
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .app-image img {
    transform: scale(1.1);
}

.app-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 163, 255, 0.1);
}

.app-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.app-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    /* Increased weight */
    color: var(--text-primary);
    margin-bottom: 12px;
}

.app-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-tags {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quick Specs & CTA */
.specs-cta-container {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 163, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.quick-specs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.spec-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}



@media screen and (max-width: 768px) {
    .quick-specs {
        gap: 20px;
    }

    .spec-divider {
        display: none;
    }

    .spec-item {
        min-width: 120px;
    }
}

/* Product Section */
.product {
    padding: 100px 5%;
    text-align: center;
}

.product-visual {
    max-width: 600px;
    margin: 0 auto 60px;
}

.product-visual img {
    width: 100%;
    filter: drop-shadow(0 0 50px var(--accent-blue-glow));
}

.specs-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-charcoal);
    border-radius: 15px;
    overflow: hidden;
}

.specs-table td {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--accent-blue);
    width: 30%;
}

/* Product Specification Grid */
/* Product Specification Layout Groups */
.product-spec-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-spec-group.vertical {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.product-spec-group.nested {
    max-width: 1100px;
}

.full-width {
    grid-column: 1 / -1;
}

/* Spacing between different specification groups */
.product-spec-group+.product-spec-group {
    margin-top: 80px;
}

.thin-bar {
    padding: 20px 40px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.thin-bar .spec-section-title {
    margin-bottom: 0;
    white-space: nowrap;
}

.badge-container.horizontal {
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
}

.thin-bar .cond-badge {
    padding: 10px 20px;
    background: none;
    border: none;
}

.spec-section {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-fast);
}

.spec-section:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.spec-section-title {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs-table.detailed {
    width: 100%;
    background: transparent;
    border-radius: 0;
}

.specs-table.detailed td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table.detailed td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 45%;
}

.specs-table.detailed td:last-child {
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
}

@media screen and (max-width: 900px) {
    .product-spec-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        margin-top: 30px;
    }

    .spec-section {
        padding: 15px;
    }

    .spec-section-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .specs-table.detailed td {
        font-size: 0.75rem;
    }

    .thin-bar {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px 20px !important;
    }

    .badge-container.horizontal {
        justify-content: flex-end;
        gap: 15px;
    }
}

/* Resource Section */
.resources {
    padding: 60px 10%;
    background: #080c14;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-item {
    background: #0d131f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    justify-content: space-between;
    min-height: 380px;
}

.resource-item:hover {
    transform: translateY(-10px);
    background: #121a2b;
    border-color: var(--accent-blue);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.res-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Control gaps manually below */
}

.res-icon {
    width: 54px;
    height: 54px;
    color: var(--accent-blue);
    margin-bottom: 32px;
    opacity: 0.9;
}

.resource-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.resource-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 0;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Contact Form Section */
.contact-form-section {
    padding: 10px 5% 60px;
    /* Further reduced paddings */
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 80px;
    align-items: center;
    /* Center vertically for cleaner 1-screen look */
}

.contact-form-content {
    padding-top: 20px;
    text-align: left;
}

/* Align badge underline to the left for this section */
.contact-form-content .section-badge::after {
    margin: 10px 0 0;
}

.contact-form-headline {
    font-size: clamp(1.8rem, 3.2vw, 2.3rem);
    /* Further reduced for 1-line display */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-form-headline .highlight-blue {
    color: var(--accent-blue);
}

.contact-form-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    /* Compact margin */
    line-height: 1.5;
    max-width: 500px;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    /* More compact listing */
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-benefits i {
    color: var(--accent-blue);
    font-size: 0.85rem;
}

.contact-alternate {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.alt-item a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 40px;
    /* More compact padding while keeping the look */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
    /* Reduced vertical spacing between groups */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.submit-btn {
    width: 100%;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 163, 255, 0.3);
    filter: brightness(1.1);
}

.form-footer-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 900px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .contact-form-headline {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-benefits {
        display: inline-block;
        text-align: left;
    }

    .contact-alternate {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-card {
    background: linear-gradient(135deg, var(--accent-blue), #0056b3);
    padding: 50px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

/* Footer */
footer {
    padding: 60px 5%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    height: 30px;
    margin-bottom: 30px;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
    mix-blend-mode: screen;
}

.footer-desc-simple {
    max-width: 600px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    line-height: 1.6;
}

.address {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.copyright-simple {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    margin-top: 30px;
}

/* Utility Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Hamburger Menu Icon */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Media Queries */
@media screen and (max-width: 1024px) {
    header {
        padding: 0 4%;
    }

    nav {
        margin-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    body {
        padding-top: var(--nav-height);
    }

    /* Header Mobile Adjustments */
    header {
        padding: 0 20px;
    }

    .logo-container img {
        height: 24px;
    }

    .sub-logo-container img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: 20px;
    }

    /* Navigation Menu (Hidden on Mobile by default) */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        max-width: 220px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 25px;
        margin: 0;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-left: 1px solid var(--glass-border);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
        margin: 0;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .header-actions {
        gap: 15px;
    }

    /* Home Page Grids: Revert to natural stacking to prevent text cut-off */
    .highlights {
        flex-direction: row;
        flex-wrap: wrap;
        /* Allow wrapping */
        justify-content: center;
        padding: 40px 20px;
        gap: 15px;
    }

    .highlight-item {
        flex: 1 1 calc(50% - 15px);
        /* 2x2 grid */
        min-width: 140px;
        padding: 25px 15px;
        border-radius: 12px;
    }

    .highlight-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .highlight-desc {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .app-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 20px;
        padding: 0 20px;
    }

    .app-content {
        padding: 20px;
    }

    .app-content h3 {
        font-size: 1.1rem;
    }

    .app-content p {
        font-size: 0.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        /* Stack pricing on mobile for full readability */
        gap: 30px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 40px;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0 auto;
    }

    .pricing-card h3 {
        font-size: 1.8rem;
    }

    .tier-name {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .pricing-features li {
        font-size: 0.95rem;
        gap: 12px;
    }

    .pricing-btn {
        padding: 16px;
        font-size: 0.9rem;
    }

    .price-link .price {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    /* Performance/Hardware Sensor Boxes (6 boxes) */
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 15px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-val {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Contact Page Mobile (Stay 1-column as requested earlier for visibility) */
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-form-content {
        text-align: center;
    }

    .contact-form-content .section-badge::after {
        margin: 10px auto 0;
    }

    .contact-benefits {
        display: inline-block;
        text-align: left;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .highlight-item {
        flex: 1 1 100%;
        /* Single column metrics on very small phones */
    }

    .app-grid {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* 3D Viewer Styles */

#canvas-container {
    width: 100%;
    height: 600px;
    cursor: grab;
    position: relative;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none;
    /* Prevent page scroll during 3D interaction */
    /* Central blue glow only, fading to transparent at the edges */
    background: radial-gradient(circle at center, rgba(0, 163, 255, 0.4) 0%, transparent 70%);
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
    overflow: hidden;
}

#canvas-container:active {
    cursor: grabbing;
}

.ui-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.ui-overlay span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    #canvas-container {
        height: 400px;
    }

    .ui-overlay {
        font-size: 8px;
        bottom: 20px;
        gap: 12px;
    }
}

/* Diversified Product Layouts */

/* 1. Deployment Setup (Icon Grid) */
.deploy-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.deploy-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.deploy-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    width: 45px;
    height: 45px;
    background: rgba(0, 150, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deploy-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.deploy-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deploy-item .value {
    font-weight: 600;
    color: var(--text-primary);
}

/* 2. Integration (Vertical List) */
.integ-items {
    list-style: none;
    padding: 0;
}

.integ-items li {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
}

.integ-items li i {
    font-size: 1.4rem;
    color: var(--accent-blue);
    margin-top: 3px;
}

.integ-items li div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.integ-items li strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.integ-items li p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* 3. Recommended System (Dark Highlight Box) */
.system-box {
    background: #000;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 150, 255, 0.05);
}

.sys-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sys-item:last-child {
    border-bottom: none;
}

.sys-item span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 700;
}

.sys-item strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* 4. Operating Conditions (Badges) */
.badge-container {
    display: flex;
    gap: 15px;
}

.cond-badge {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.2), rgba(0, 150, 255, 0.05));
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 150, 255, 0.1);
}

.cond-badge.secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.cond-badge i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.cond-badge .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cond-badge span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.cond-badge strong {
    font-size: 1.2rem;
    color: var(--text-primary);
}

@media screen and (max-width: 600px) {
    .deploy-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .deploy-item i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .deploy-item .label {
        font-size: 0.65rem;
    }

    .deploy-item .value {
        font-size: 0.75rem;
    }

    .badge-container {
        flex-direction: row;
        gap: 10px;
    }

    .cond-badge {
        padding: 12px;
        gap: 8px;
    }

    .cond-badge i {
        font-size: 1.1rem;
    }

    .cond-badge strong {
        font-size: 0.9rem;
    }
}

#simulation-section {
    scroll-margin-top: 120px;
}

/* Deployment Visualization 3D Viewer */
.deployment-viz-wrapper {
    width: 100%;
    height: 500px;
    background: #1a1e26;
    /* Kept lighter slate as requested earlier */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    touch-action: none;
    /* Prevent page scroll during 3D interaction */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

#deployment-viz-container {
    width: 100%;
    height: 100%;
    cursor: grab;
    touch-action: none;
}

#deployment-viz-container:active {
    cursor: grabbing;
}

/* Controls Overlay */
.deployment-controls {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 25, 40, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.control-group {
    display: flex;
    gap: 4px;
}

.control-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}

.setup-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.setup-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.setup-btn.active {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.4);
}

.deployment-hint {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    z-index: 5;
    pointer-events: none;
}



/* Refined Deployment Controls (Left-aligned & Small) */
.deployment-controls.left-aligned {
    top: 20px;
    left: 20px;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 25, 40, 0.5);
    padding: 12px;
    border-radius: 12px;
    gap: 15px;
    width: auto;
}

.control-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.control-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 5px;
}

.setup-btn.sm {
    padding: 6px 14px;
    font-size: 0.7rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.setup-btn.sm i {
    font-size: 0.9rem;
}

.deployment-controls.left-aligned .control-group {
    background: rgba(255, 255, 255, 0.08);
    padding: 3px;
    border-radius: 10px;
    display: flex;
    gap: 2px;
    width: 100%;
    /* Ensure group fills the row */
}

.setup-btn.sm {
    flex: 1;
    /* Make buttons expand to fill the group */
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Mobile Overrides at the End for Priority */
@media screen and (max-width: 768px) {
    .deployment-viz-wrapper {
        height: 45vw;
        min-height: 320px;
    }

    .deployment-controls.left-aligned {
        top: 10px !important;
        left: 10px !important;
        transform: scale(0.6) !important;
        /* Slightly larger than 0.5 for better legibility */
        transform-origin: top left;
        background: rgba(10, 20, 30, 0.8) !important;
        padding: 6px !important;
        width: 180px !important;
        /* Fixed width for consistency on small screens */
    }

    .control-label {
        font-size: 0.75rem !important;
        margin-bottom: 5px !important;
    }

    .setup-btn.sm {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }
}

/* Universal Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: block;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
}

.section-badge::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-blue);
    margin: 12px auto 0;
}

.section-header h2 {
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    /* Consistency with hero and app headers */
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Demo Video Section */
.demo-video {
    padding: 120px 5% 60px;
    background: linear-gradient(to bottom, #02040a 0%, #080c14 15%);
    text-align: center;
}

.demo-video .section-header {
    margin-bottom: 60px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.4);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 163, 255, 0.6);
}

.video-play-btn i {
    margin-left: 5px;
    /* Offset to visually center play icon */
}

.placeholder-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.placeholder-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
}

.demo-footer-text {
    margin-top: 40px;
    font-size: 0.95rem;
    /* Slightly larger for readability */
    color: rgba(255, 255, 255, 0.4);
}

.yt-link {
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.yt-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-blue);
    transform: scaleX(0.8);
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-link:hover {
    color: #fff;
}

.yt-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Why Choose Us Section */
.why-us {
    padding: 60px 5% 80px;
    background: #080c14;
    position: relative;
}

.why-us .section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.why-us .section-badge {
    display: block;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
}

.why-us .section-badge::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-blue);
    margin: 12px auto 0;
}

.why-us .section-header h2 {
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.why-us .section-header p {
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: #0d131f;
    /* Dark card color from image */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-8px);
    background: #121a2b;
    border-color: rgba(255, 255, 255, 0.1);
}

.why-val {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
}

.why-val.color-blue {
    color: #4a90e2;
}

.why-val.color-green {
    color: #27ae60;
}

.why-val.color-yellow {
    color: #f39c12;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-glare);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.price-link {
    text-decoration: none;
    display: inline-block;
}

.price-link:hover .price {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(0, 163, 255, 0.5);
    color: #fff;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ensure subsequent sections follow the new background */
.comparison,
.pricing {
    background-color: #080c14 !important;
}

/* Comparison Table Section */
.comparison {
    padding: 100px 5%;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    background: #0d131f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: transparent;
}

.table-container th {
    padding: 24px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-container td {
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    vertical-align: middle;
}

.table-container tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.highlight-row {
    background: rgba(0, 163, 255, 0.05);
}

.highlight-row td {
    color: white;
    font-weight: 600;
}

.compare-contact-btn {
    display: inline-block;
    color: #27ae60;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    padding: 0;
}

.compare-contact-btn:hover {
    color: #2ecc71;
    text-decoration: underline;
    transform: none;
    /* Removed transform for fixed text feel */
    box-shadow: none;
}

.compare-disclaimer {
    padding: 20px 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
}

.color-accent {
    color: var(--accent-blue);
}

.color-muted {
    opacity: 0.3;
}

/* Pricing Section */
.pricing {
    padding: 100px 5%;
    background-color: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-fast);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    background: rgba(0, 163, 255, 0.03);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 5px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tier-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.price {
    font-size: 1.1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    transition: var(--transition-fast);
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.pricing-btn.primary {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.pricing-btn.primary:hover {
    background: #008be2;
    transform: translateY(-3px);
}

.pricing-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-footer p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.highlight-blue {
    color: #00d2ff;
    /* Vibrant light blue for emphasis */
    font-weight: 800;
}

.underline-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.underline-link:hover {
    color: #00d2ff;
}

@media screen and (max-width: 1000px) {
    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

@media screen and (max-width: 600px) {
    .why-val {
        font-size: 3rem;
    }

    .pricing-card {
        padding: 30px;
    }
}