/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-primary: #ffffff;
    --color-primary-hover: #e0e0e0;
    --color-secondary: #111111;
    --color-secondary-hover: #222222;
    --color-border: #333333;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-soft: 0 4px 20px rgba(255, 255, 255, 0.05);
    --transition-base: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.site-header.scrolled {
    border-bottom: 1px solid var(--color-border);
    height: 70px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    /* Makes black background transparent */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000000;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
    background-color: var(--color-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.eyebrow-text {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    background-color: var(--color-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Visual Placeholder */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.abstract-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.phone-mockup {
    width: 300px;
    height: 580px;
    background: #111;
    border-radius: 50px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 4px solid #333;
}

.screen {
    background: #000;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.app-interface-mock {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #000;
}

.app-header {
    height: 40px;
    width: 100%;
    background: #222;
    margin-bottom: 24px;
    border-radius: 8px;
}

.app-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.garment-card {
    width: 100%;
    height: 250px;
    background: #222;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.garment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.fit-score {
    padding: 8px 16px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Performance Stats Section */
.performance-section {
    padding: 100px 0;
    background-color: #080808;
    /* Slightly lighter than pure black for contrast */
    border-bottom: 1px solid var(--color-border);
}

.performance-header {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Capability List (Left Side) */
.capability-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
    /* Reduced padding, removed box styles */
    transition: var(--transition-base);
}

.capability-item:hover {
    transform: translateX(10px);
}

.cap-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--color-secondary);
    color: var(--color-text);
}

.cap-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.cap-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Quantitative Stats (Right Side) */
.quantitative-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-left: 2px solid var(--color-text);
    padding: 24px 32px;
    border-radius: 0 8px 8px 0;
    transition: var(--transition-base);
}

.stat-box:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    padding-left: 40px;
    /* Slide effect */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capability-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #050505;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    text-align: left;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card.span-2 {
    grid-column: span 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.span-2 {
        grid-column: span 1;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
    border-color: var(--color-text);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    background-color: #000;
}

/* Hyperlocal Digitization Section */
.digitization-section {
    padding: 60px 0;
    background: transparent;
    border: none;
}

.digitization-banner {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-secondary);
    border-radius: 12px;
    border-top: 3px solid var(--color-text);
    /* White accent */
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.digitization-banner:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-hover);
    border-top-color: var(--color-primary-hover);
}

.digitization-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.digitization-icon {
    font-size: 1.25rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.digitization-text-group {
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
}

.digitization-label {
    color: var(--color-text);
    font-weight: 700;
    margin-right: 6px;
}

.digitization-desc {
    color: var(--color-text-muted);
    font-weight: 400;
}

.btn-digitization {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle white tint */
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.btn-digitization:hover {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .digitization-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px;
    }

    .digitization-content {
        flex-direction: column;
        gap: 10px;
    }

    .btn-digitization {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

.digitization-text-wrapper {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.digitization-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    /* Vendor prefix for background-clip */
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.digitization-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.4;
}

.highlight-10x {
    color: #fff;
    font-weight: 700;
    position: relative;
    padding: 0 4px;
}

.highlight-10x::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-secondary);
    z-index: -1;
    opacity: 0.5;
    transform: skewX(-10deg);
}

@media (max-width: 768px) {
    .digitization-title {
        font-size: 2.2rem;
    }

    .digitization-subtitle {
        font-size: 1.2rem;
    }

    .digitization-text-wrapper {
        padding: 40px 20px;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-branding p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.footer-links p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Features Expansion */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

/* Kiosk Section */
.kiosk-section {
    padding: 100px 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.kiosk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.kiosk-benefits {
    margin: 32px 0 40px;
    padding-left: 20px;
}

.kiosk-benefits li {
    list-style-type: disc;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.kiosk-actions {
    display: flex;
    gap: 16px;
    margin-top: 0;
    flex-wrap: wrap;
}

.kiosk-visual {
    position: relative;
    height: 500px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.kiosk-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kiosk-screen {
    width: 220px;
    height: 380px;
    background: #000;
    border-radius: 20px;
    border: 8px solid #333;
    position: relative;
    z-index: 2;
}

.kiosk-ui {
    background: #111;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    animation: pulse-screen 4s infinite;
}

@keyframes pulse-screen {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.kiosk-stand {
    width: 40px;
    height: 100px;
    background: #333;
    margin-top: -20px;
}

.kiosk-stand::after {
    content: '';
    display: block;
    width: 120px;
    height: 20px;
    background: #333;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-secondary);
}

.about-text-block {
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background-color: var(--color-secondary);
    color: var(--color-text);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 80px 40px;
    text-align: center;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary.inverse {
    background-color: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

.btn-primary.inverse:hover {
    background-color: #ccc;
}

.btn-secondary.inverse {
    border-color: var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.btn-secondary.inverse:hover {
    background-color: var(--color-secondary);
}

/* Enhanced Footer */
.site-footer {
    padding: 80px 0 40px;
    background-color: #000;
    border-top: 1px solid var(--color-border);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-branding {
    max-width: 300px;
}

.footer-branding .copyright {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-columns {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--color-text);
}

/* Contact Page Styles */
.page-header {
    padding: 180px 0 100px;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #000 70%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.page-header .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.page-header .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--color-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: var(--color-bg);
    color: var(--color-text);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-text);
    background-color: #111;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--color-secondary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.info-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.info-icon {
    font-size: 1.25rem;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

/* Responsive Updates */
@media (max-width: 900px) {
    .site-header {
        height: 60px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 40px;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-content {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        flex-direction: column;
    }

    .footer-columns {
        flex-wrap: wrap;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Download Page Styles */
.download-header {
    background-color: var(--color-bg);
    padding-bottom: 0;
}

.download-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.download-hero-text {
    text-align: left;
}

.download-hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.download-section {
    padding: 80px 0;
    text-align: center;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.download-card {
    background: var(--color-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    max-width: 400px;
    width: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card.highlight {
    border-color: var(--color-text);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.card-icon {
    margin-bottom: 20px;
    color: var(--color-text);
}

.status-badge {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 16px 0;
}

.download-card.coming-soon {
    opacity: 0.8;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .download-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-hero-text {
        text-align: center;
        order: 2;
    }

    .download-hero-image {
        order: 1;
        margin-bottom: 40px;
    }
}

/* Download Master Hero */
.download-master-hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top left, #1a1a1a 0%, #000 70%);
}

.master-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    /* Align to top */
}

.master-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.master-hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.master-hero-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    /* wrap on very small screens */
}

/* Compact Card Styles */
.compact-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    /* Reduced padding height */
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    text-align: left;
    transition: all 0.2s ease;
    gap: 16px;
    flex: 1;
    /* Make them grow equally */
    min-width: 200px;
    text-decoration: none;
    /* For link wrapper */
    color: var(--color-text);
}

.compact-card:hover {
    transform: translateY(-2px);
    background: #161616;
    border-color: #333;
}

.compact-card .card-icon {
    margin-bottom: 0;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.compact-card .card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    align-items: center;
    /* Center all content horizontally */
    text-align: center;
    /* Center text */
}

/* Ensure card items stretch to fill height */
.compact-card {
    align-items: stretch;
}

/* Re-center icon vertically since we changed card align-items */
.compact-card .card-icon {
    align-self: center;
}

.compact-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--color-text);
}

.compact-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.compact-card .status-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    margin-bottom: 0;
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    /* Push to bottom */
    align-self: center;
    /* Center the badge itself */
}

/* Specific Badge Colors */
.download-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.compact-card.direct-download-link:hover .download-badge {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
}


/* Image Grid - Reused but adjusted */
.showcase-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid #222;
}

.app-screen {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .master-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .master-hero-left {
        align-items: center;
    }

    .master-hero-actions {
        width: 100%;
        max-width: 400px;
    }

    .compact-card {
        text-align: left;
        /* Keep card text left-aligned even if centered */
    }
}

.download-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    /* Condensed padding */
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.download-card:hover {
    background: #161616;
    border-color: #333;
    transform: translateY(-5px);
}

.download-card.highlight {
    border-color: var(--color-primary);
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.card-icon {
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

.play-store-icon {
    color: #00d072;
    /* Play Store Green-ish */
}

.direct-download-icon {
    color: var(--color-primary);
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.download-card p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #222;
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
    width: 100%;
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .download-hero-content .hero-title {
        font-size: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .download-options {
        grid-template-columns: 1fr;
    }
}

/* Contact Page - Action Cards Section */
.contact-actions-section {
    padding: 100px 0 160px;
    background: radial-gradient(circle at center 30%, #111 0%, #000 70%);
    position: relative;
    overflow: visible;
}

.contact-actions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.unified-contact-card {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-split-layout .right-column {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 100px;
    height: fit-content;
}

.action-cards-grid.vertical-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-info-grid.vertical-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Map Visual Styles */
.map-visual-container {
    background: #111;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.map-visual-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    z-index: 1;
}

.map-overlay-content {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.map-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-overlay-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 80%;
}

.abstract-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23333'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23dots)'/%3E%3C/svg%3E");
    z-index: 1;
}

.map-point {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px var(--color-primary);
}

.map-point.kochi {
    top: 60%;
    right: 25%;
}

/* Rough approx for visual balance */
.map-point.london {
    top: 35%;
    right: 48%;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.map-point.ny {
    top: 38%;
    left: 25%;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.map-point.pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 400%;
        height: 400%;
        opacity: 0;
    }
}

/* Override previous horizontal grids if needed specifically here,
   but the class changes handle it. Focusing on responsive now. */

@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Minimal Contact Listing */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 5px;
}

.contact-listing {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.5s ease backwards;
    transition: transform 0.3s ease;
}

.contact-listing:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-listing:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-listing:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-listing:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-listing:hover {
    transform: translateX(10px);
}

.listing-icon {
    font-size: 1.2rem;
    filter: none;
    /* Removed grayscale for the new icon */
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 0;
    transition: all 0.3s ease;
    color: var(--color-primary);
    /* For SVG stroke */
}

/* Periodic Pulse for Email Icon to grab attention */
.contact-listing:first-child .listing-icon {
    animation: attentionPulse 3s infinite;
}

@keyframes attentionPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.listing-icon svg {
    width: 20px;
    height: 20px;
}

.contact-listing:hover .listing-icon {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 15px var(--color-primary);
}

.listing-details h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-text);
    font-weight: 600;
}

.listing-details p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Define keyframes if not already present or reuse */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listing-details a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.listing-details a:hover {
    color: #fff;
    border-color: var(--color-primary);
}

.text-left-align {
    text-align: left;
    margin-top: 0 !important;
    /* Override section title top margin if needed */
}

.text-left-align::after {
    left: 0;
    transform: none;
}

/* Mini Action Cards (Restored) */
.mt-4 {
    margin-top: 24px;
}

/* Stat-style Minimal List Rows */
.cards-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.action-card-mini {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 24px 32px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    height: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.action-card-mini:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    transform: translateX(5px);
}

.action-card-mini:nth-child(1) {
    border-left-color: #FFD700;
    /* Gold */
}

.action-card-mini:nth-child(2) {
    border-left-color: #00C2FF;
    /* Cyan */
}

.action-card-mini:nth-child(3) {
    border-left-color: #FF4D4D;
    /* Salmon/Red */
}

.action-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-card-mini h3 {
    font-size: 1.5rem;
    /* Larger like the '95%' in the image */
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.action-card-mini p {
    font-size: 0.95rem;
    /* Smaller description under the big title */
    color: var(--color-text-muted);
    margin: 0;
    max-width: 300px;
}

.action-label-right {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    margin-left: 20px;
}

/* Hide original icon as per reference visual style */
.action-icon-mini {
    display: none;
}

.action-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-primary) 20%,
            var(--color-primary) 80%,
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.action-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(145deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.action-card:hover::before,
.action-card:hover::after {
    opacity: 1;
}

.action-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 22, 22, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 255, 255, 0.03);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    filter: grayscale(0.4) brightness(0.9);
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.action-card:hover .action-icon {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.1);
    animation: none;
}

.action-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(to right, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Contact Info Section */
/* Contact Info Section (Merged into Actions) */
.contact-actions-section .section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--color-text);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-top: 20px;
}

.contact-actions-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

/* Contact Info Section (Merged or Standalone) */
/* .contact-info-grid removed as primary definition, using specific contexts */

.contact-info-grid .info-card {
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-grid .info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-grid .info-card:hover::before {
    opacity: 1;
}

.contact-info-grid .info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(145deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-grid .info-card:hover::after {
    opacity: 1;
}

.contact-info-grid .info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 22, 22, 0.7);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 255, 255, 0.02);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.contact-info-grid .info-card:hover .info-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.contact-info-grid .info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-info-grid .info-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-info-grid .info-card a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

.contact-info-grid .info-card a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-grid .info-card a:hover::after {
    width: 100%;
}

.contact-info-grid .info-card a:hover {
    color: #fff;
    letter-spacing: 0.02em;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .action-cards-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .action-card {
        padding: 50px 36px;
    }

    .contact-info-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 70px;
    }

    .contact-actions-section {
        padding: 100px 0;
    }

    .contact-info-section {
        padding: 100px 0 120px;
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .action-card {
        padding: 45px 32px;
    }

    .action-icon {
        font-size: 3.8rem;
    }

    .action-card h3 {
        font-size: 1.6rem;
    }

    .contact-info-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }

    .contact-actions-section {
        padding: 80px 0;
    }

    .contact-info-section {
        padding: 80px 0 100px;
    }

    .contact-info-grid .info-card {
        padding: 40px 28px;
    }
}

/* Technology Page Styles */

/* Tech Hero Section */
.tech-hero {
    padding: 120px 0 100px;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #000 60%);
    position: relative;
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    opacity: 0.6;
    pointer-events: none;
}

.tech-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00C2FF;
    /* Tech Cyan */
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.2);
}

.tech-hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tech-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Tech Features Section */
.tech-features-section {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.tech-features-section .section-title {
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.tech-features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00C2FF;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

/* Tech Features - Boxless Design */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    /* Increased gap for open layout */
    max-width: 1100px;
    margin: 0 auto;
}

.tech-feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Remove card pseudo-elements */
.tech-feature-card::before,
.tech-feature-card.highlight-card::after {
    display: none;
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

.tech-feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    width: 70px;
    /* Slightly smaller */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-feature-card:hover .tech-feature-icon {
    filter: none;
    background: rgba(0, 194, 255, 0.1);
    border-color: rgba(0, 194, 255, 0.4);
    color: #00C2FF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.2);
}

.tech-feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.tech-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    /* Increased contrast */
    font-size: 1.1rem;
    /* Larger text */
    line-height: 1.7;
    font-weight: 400;
    /* Regular weight */
    max-width: 95%;
}

.proprietary-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--color-primary), #FFD700);
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #000;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.tech-feature-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Tech Stats Section - Refined to Match Image */
.tech-stats-section {
    padding: 80px 0 100px;
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-stats-container {
    max-width: 1000px;
    /* Increased from 800px for 3 columns */
    margin: 0 auto 40px;
}

.tech-stat-card.combined {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 50px 20px;
    gap: 0;
    position: relative;
    /* Context for scanner */
}

/* Scanner Animation */
.tech-stat-card.combined::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg);
    animation: scanner 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes scanner {

    0%,
    50% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    position: relative;
}

/* Schematic Nodes for Dividers */
.stat-divider::after,
.stat-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-primary);
    opacity: 0.8;
}

.stat-divider::before {
    top: 0;
}

.stat-divider::after {
    bottom: 0;
}

/* Premium Tech Button in Stats */
.stat-item .btn {
    background: rgba(0, 194, 255, 0.05);
    border: 1px solid rgba(0, 194, 255, 0.4);
    color: #00C2FF;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item .btn:hover {
    background: #00C2FF;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.5);
    transform: translateY(-2px);
}

/* Adjust mobile layout for combined card */
@media (max-width: 768px) {
    .tech-stat-card.combined {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    }

    .stat-divider::before {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .stat-divider::after {
        right: 0;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
    }
}

.tech-stat-card {
    background: rgba(20, 20, 20, 0.4);
    /* Dark subtle background */
    border: none;
    /* No full border */
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* The vertical left accent bar from the image */
.tech-stat-card::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.3);
    /* Grey/White accent */
    border-radius: 0 4px 4px 0;
}

.tech-stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}

.tech-stat-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 50, 60, 0.6);
    /* Dark Cyan/Teal bg */
    border-radius: 4px;
    /* Rectangular as in image */
    font-size: 1.25rem;
    font-weight: 700;
    color: #00E5FF;
    /* Bright Cyan text */
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
}

.tech-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    /* Muted grey */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.tech-cta-wrapper {
    margin-top: 60px;
}

.mt-5 {
    margin-top: 4rem;
}

/* Responsive Design for Technology Page */
@media (max-width: 992px) {
    .tech-hero {
        padding: 90px 0 70px;
    }

    .tech-hero-title {
        font-size: 2.5rem;
    }

    .tech-hero-description {
        font-size: 1.05rem;
    }

    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }

    .tech-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .tech-features-section {
        padding: 80px 0;
    }

    .tech-stats-section {
        padding: 70px 0 90px;
    }

    .tech-feature-card {
        padding: 32px 28px;
    }

    .tech-stat-card {
        padding: 40px 32px;
    }
}

@media (max-width: 600px) {
    .tech-hero {
        padding: 80px 0 60px;
    }

    .tech-hero-title {
        font-size: 2rem;
    }

    .tech-hero-description {
        font-size: 0.95rem;
    }

    .tech-feature-card {
        padding: 28px 24px;
    }

    .tech-feature-icon {
        font-size: 3rem;
    }

    .tech-feature-card h3 {
        font-size: 1.25rem;
    }

    .tech-stat-card {
        padding: 35px 28px;
    }

    .tech-stat-number {
        font-size: 3.5rem;
    }

    .tech-stat-badge {
        font-size: 1.4rem;
        padding: 8px 20px;
    }

    .tech-features-section .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
}

/* Tuck Kiosk Page Styles */

/* Kiosk Hero Section */
.kiosk-hero {
    padding: 120px 0 100px;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #000 60%);
    position: relative;
    overflow: hidden;
}

.kiosk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    opacity: 0.6;
    pointer-events: none;
}

.kiosk-hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.kiosk-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 300;
}

.kiosk-hero-description strong {
    color: #00C2FF;
    font-weight: 600;
}

/* Kiosk Benefits Section - Boxless Open Layout */
.kiosk-benefits-section {
    padding: 100px 0;
    background: #000;
    position: relative;
}

.kiosk-benefits-section .section-title {
    font-size: 3rem;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.kiosk-benefits-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00C2FF;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

.kiosk-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    /* Open spacing */
    max-width: 1200px;
    margin: 0 auto;
}

.kiosk-benefit-card {
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Remove interaction backgrounds */
.kiosk-benefit-card:hover {
    transform: translateY(-5px);
    background: transparent;
    border: none;
    box-shadow: none;
}

.kiosk-benefit-card::before,
.kiosk-benefit-card::after {
    display: none;
}

.kiosk-benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kiosk-benefit-card:hover .kiosk-benefit-icon {
    filter: none;
    background: rgba(0, 194, 255, 0.1);
    border-color: rgba(0, 194, 255, 0.4);
    color: #00C2FF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.2);
}

.kiosk-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.kiosk-benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Kiosk Stats Section - Schematic Dashboard */
.kiosk-stats-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050505;
    position: relative;
    overflow: hidden;
}

.kiosk-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.kiosk-stats-grid {
    display: none;
    /* Hide grid as we use combined card now */
}

.kiosk-stat-card.combined {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 50px 20px;
    gap: 0;
    position: relative;
    background: rgba(20, 20, 20, 0.4);
    border: none;
    border-radius: 16px;
}

/* Adjust mobile layout for combined card */
@media (max-width: 768px) {
    .kiosk-stat-card.combined {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
}

.kiosk-stat-card {
    background: rgba(20, 20, 20, 0.4);
    border: none;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Vertical left accent bar */
.kiosk-stat-card::before {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 4px 4px 0;
}

.kiosk-stat-card:hover::before {
    background: #00C2FF;
    box-shadow: 0 0 10px #00C2FF;
}

/* Scanner Animation for Stats */
.kiosk-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    animation: scanner 5s infinite ease-in-out;
    animation-delay: var(--delay, 0s);
    pointer-events: none;
}

.kiosk-stat-card:nth-child(2)::after {
    --delay: 2s;
}

.kiosk-stat-card:nth-child(3)::after {
    --delay: 4s;
}

.kiosk-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}

.kiosk-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.kiosk-stats-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-top: 40px;
    letter-spacing: 0.5px;
}

/* Kiosk Pricing Section - Premium Glass */
.kiosk-pricing-section {
    padding: 100px 0 120px;
    background: radial-gradient(ellipse at center bottom, #0d0d0d 0%, #000 60%);
    position: relative;
}

.kiosk-pricing-card {
    background: linear-gradient(180deg, #111111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 40px;
    width: 100%;
    /* Full width */
    max-width: 100%;
    /* Remove restriction */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kiosk-pricing-card::after {
    display: none;
}

/* Hover glow effect for pricing */
.kiosk-pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.kiosk-pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: none;
}

.kiosk-pricing-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 500px;
}

.price-highlight {
    font-size: 1.4em;
    /* Relative to description */
    font-weight: 800;
    color: #00E5FF;
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    vertical-align: baseline;
    font-family: 'Inter', sans-serif;
    background: none;
    -webkit-text-fill-color: initial;
}

.kiosk-pricing-card .btn {
    font-size: 1.1rem;
    padding: 18px 50px;
    background: #00C2FF;
    color: #000;
    border-radius: 50px;
    /* Pill shape */
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
}

.kiosk-pricing-card .btn:hover {
    background: #40d9ff;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 194, 255, 0.6);
}

/* Responsive Design for Kiosk Page */
@media (max-width: 992px) {
    .kiosk-hero {
        padding: 90px 0 70px;
    }

    .kiosk-hero-title {
        font-size: 2.6rem;
    }

    .kiosk-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .kiosk-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .kiosk-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kiosk-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kiosk-hero-title {
        font-size: 2.2rem;
    }
}

/* Value Proposition Section - Reference Design */
.value-prop-section {
    padding: 100px 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Alternative Design: Minimal Divider Columns */
.value-prop-col {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle vertical divider */
    border-radius: 0;
    padding: 20px 0 20px 40px;
    /* Indent content */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.value-prop-col:nth-child(1) {
    /* Optional: Ensure left col has divider or remove it if you only want it between? 
       For symmetry, both having it looks techy. */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop-col:hover {
    border-left-color: var(--color-primary);
    /* Use Cyan on hover */
    background: transparent;
    box-shadow: none;
    transform: translateX(10px);
    /* Slight slide right instead of lift */
}

/* Clear any old before pseudo-elements */
.value-prop-col::before {
    display: none;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    /* Align top */
    max-width: 1100px;
    margin: 40px auto 0;
    position: relative;
}

/* Remove absolute vertical divider */
.value-prop-grid::after {
    display: none;
}

/* Vertical divider line in the middle */
.value-prop-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Header style for columns */
.value-prop-col h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    /* Muted label like reference? Or just header */
    margin-bottom: 30px;
    border: none;
    padding: 0;
    display: block;
    /* ensure block */
}

/* Left Column - List Style */
.value-prop-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
}

.value-prop-list li {
    display: flex;
    align-items: center;
    /* Center icon and text vertically */
    gap: 20px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.prop-icon {
    /* Boxless Design */
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    /* Fallback color */
    filter: grayscale(1) opacity(0.6);
    /* Make emojis grey */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-prop-list li:hover .prop-icon {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.prop-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.prop-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.prop-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Right Column - Stat Box Style */
.value-prop-stat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    /* Just in case */
    padding: 0;
}

.value-prop-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-left: 2px solid #fff;
    /* White accent bar like 95% box in reference */
    padding: 24px 32px;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    color: #fff;
}

.value-prop-stat-item:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    padding-left: 40px;
}

.prop-stat-main {
    font-size: 1.5rem;
    /* Large text */
    font-weight: 700;
    color: #fff;
}

.prop-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

@media (max-width: 900px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .value-prop-grid::after {
        display: none;
    }
}