@font-face {
    font-family: 'Ethnocentric';
    src: url('ethnocentric/Ethnocentric-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TheBoldFont';
    src: url('the_bold_font/THEBOLDFONT-FREEVERSION.woff2') format('woff2'),
         url('the_bold_font/THEBOLDFONT-FREEVERSION.woff') format('woff'),
         url('the_bold_font/THEBOLDFONT-FREEVERSION.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffe401;
    --primary-dark: #e6cd00;
    --primary-light: #ffed4d;
    --primary-ultra-light: #fffbe6;
    --bg-main: #f5f5f5;
    --surface-light: #ffffff;
    --text-charcoal: #1a1a1a;
    --text-dark: #555555;
    --tech-border: rgba(0, 0, 0, 0.1);
    --tech-grey-light: #f0f0f0;
    --accent-yellow: #ffe401;
    --dark-bg: #f5f5f5;

    /* Card color variants */
    --card-variant-1: #ffe401;
    --card-variant-2: #ffed4d;
    --card-variant-3: #e6cd00;
    --card-variant-4: #fff170;
}

/* ── Dark Theme Variables ── */
[data-theme="dark"] {
    --bg-main: #0f0f0f;
    --surface-light: #1a1a1a;
    --text-charcoal: #e8e8e8;
    --text-dark: #a0a0a0;
    --tech-border: rgba(255, 255, 255, 0.1);
    --tech-grey-light: #222222;
    --primary-ultra-light: rgba(255, 228, 1, 0.08);
    --dark-bg: #0f0f0f;
}

/* ── Dark Mode Component Overrides ── */
[data-theme="dark"] header {
    background-color: rgba(15, 15, 15, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] nav a {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] nav a:hover {
    color: var(--primary);
}

[data-theme="dark"] .section-description {
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .spec-label {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .spec-item {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .support-card p {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .support-card:nth-child(1),
[data-theme="dark"] .support-card:nth-child(2),
[data-theme="dark"] .support-card:nth-child(3) {
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(255,228,1,0.05) 100%);
}

[data-theme="dark"] .footer-section a {
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .social-links a {
    color: rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .contact-form {
    background-color: var(--surface-light);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
    background-color: #111111;
    color: var(--text-charcoal);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .form-label {
    color: var(--text-charcoal);
}

[data-theme="dark"] .gallery-item {
    border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .reddit-card {
    background: var(--surface-light);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .reddit-card h3 {
    color: var(--text-charcoal);
}

[data-theme="dark"] .reddit-card p {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .reddit-card-header {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .reddit-card-footer {
    color: rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .icon-btn {
    color: var(--text-charcoal);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
    padding: 0;
}

.theme-toggle-btn .material-symbols-outlined {
    font-size: 20px;
}

.theme-toggle-btn:hover {
    background: var(--primary-ultra-light);
    color: var(--primary);
}

[data-theme="dark"] .theme-toggle-btn {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background: rgba(255, 228, 1, 0.1);
    color: var(--primary);
}

/* Header right-side button group */
.header-actions-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (min-width: 1025px) {
    .header-actions-right .mobile-menu-btn {
        display: none !important;
    }
    .header-container {
        justify-content: flex-start;
    }
    .header-actions-right {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .header-actions-right .mobile-menu-btn {
        display: flex;
        width: 36px;
        height: 36px;
        border: 1px solid var(--tech-border);
        background: transparent;
        color: var(--text-charcoal);
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-charcoal);
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-left: 1px solid var(--tech-border);
}

::-webkit-scrollbar-thumb {
    background: #a0a0a0;
    border-radius: 6px;
    border: 2px solid #e8e8e8;
}

::-webkit-scrollbar-thumb:hover {
    background: #707070;
    border: 2px solid #c0c0c0;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #a0a0a0 #e8e8e8;
}

/* Yellow Strip */
.yellow-strip {
    width: 100%;
    height: 30px;
    background-color: #ffe401;
    position: sticky;
    top: 0;
    z-index: 51;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .yellow-strip {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }
}

/* Header Styles */
header {
    position: sticky;
    top: 23px;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--tech-border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease-in-out;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

nav a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--card-variant-1), var(--card-variant-2));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: black;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.08);
}

.btn-primary:active {
    transform: translateY(0);
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stat Badges */
.stat-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border: 2px solid;
    border-radius: 8px;
    min-width: 120px;
}

.stat-badge.cyan {
    border-color: var(--primary);
    color: var(--primary);
    animation: badge-pulse 2s ease-in-out infinite;
}

.stat-badge.green {
    border-color: #f0e84d;
    color: #f0e84d;
    animation: badge-pulse 2s ease-in-out infinite 0.5s;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* ── CTA Strip (Below Carousel) ───────────────────────────── */
.cta-strip {
    position: relative;
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(255, 228, 1, 0.04) 100%);
    border-bottom: 1px solid var(--tech-border);
    padding: 1.5rem 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-strip-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cta-strip-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin: 0 0 0.5rem;
}
.cta-strip-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cta-strip-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-charcoal);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}
.cta-strip-text p {
    font-size: 0.92rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    opacity: 0.85;
}
.cta-strip-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 2px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.cta-contact-btn {
    background: #fff;
    color: #000;
}
.cta-contact-btn:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    background: #f5f5f5;
}
.cta-register-btn {
    background: #fff;
    color: #000;
}
.cta-register-btn:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    background: #f5f5f5;
}
.cta-strip-enquire {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}
.cta-strip-enquire:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 2px 12px rgba(255, 228, 1, 0.25);
}
.cta-strip-buy {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.cta-strip-buy:hover {
    box-shadow: 0 6px 24px rgba(212, 168, 0, 0.4);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .cta-strip { padding: 1.25rem 1rem; }
    .cta-strip-inner {
        flex-direction: row;
        text-align: center;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-strip-text h2 { 
        font-size: 1.25rem;
        white-space: nowrap;
    }
    .cta-strip-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        margin: 0;
    }
    .cta-strip-btn {
        padding: 12px 18px;
        font-size: 11px;
        white-space: nowrap;
    }
}
@media (max-width: 380px) {
    .cta-strip-buttons { flex-direction: column; }
    .cta-strip-btn { width: 100%; padding: 14px; font-size: 13px; }
}

/* ── HERO SECTION (Product Gallery / Workshop Page) ─────────────── */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    min-height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: top;
    padding: 3rem 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero::after {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 60%;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    line-height: 0.9;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    
}

.hero-title .l1 {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 1200;
    letter-spacing: 0.08em;
    opacity: 0.75;
  
}

.hero-title .l2 {
    display: block;
    font-family: 'bebas neue',sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    font-style: bold, italic;
    
}

.hero-title .l3 {
    display: block;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    font-style: italic;
    color: rgba(0, 0, 0, 0.8);
}

.hero-title .l4 {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    opacity: 70%;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.hero-tiers {
    display: flex;
    gap: 0.75rem;
    max-width: 100%;
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    margin-right: auto;
}
.ctier {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ctier:hover {
    background: #2a2a2a;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ct-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.ct-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.ct-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1;
}

.made-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 228, 1, 0.4);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    margin: 1rem 0;
    position: relative;
    z-index: 3;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.made-badge .flag {
    font-size: 1.25rem;
}

.made-badge .txt {
    font-family: 'Space Grotesk', sans-serif;
}

.why-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 3;
    margin-top: 2.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid #1a1a1a;
    border-radius: 0;
}

.wi-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wi-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
}

.wi-desc {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

.hero-foot {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    margin: 0 -1rem 0;
}

.hf-left {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.hf-pill {
    background: var(--primary);
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
}

.hf-right {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #666;
    text-transform: uppercase;
    margin-left: auto;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 2.5rem 1rem 0;
    }

    .hero::after {
        font-size: clamp(120px, 25vw, 180px);
        right: -8%;
        bottom: 0%;
    }

    .hero-title .l2 {
        font-size: clamp(1.2rem, 6vw, 4.5rem);
    }

    .hero-title .l3 {
        font-size: clamp(1.25rem, 4vw, 1.8rem);
    }

    .hero-tiers {
        gap: 0.35rem;
        flex-wrap: nowrap;
    }

    .ctier {
        flex: 1;
        min-width: 0;
        padding: 0.65rem 0.8rem;
    }

    .ct-num {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .ct-name {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        line-height: 1.05;
    }

    .ct-price {
        font-size: 0.85rem;
    }

    .ct-gst {
        font-size: 0.65rem;
    }

    .why-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero-foot {
    margin: 1.5rem -1rem 0;
    flex-direction: column;
    text-align: center;
}

    .hf-right {
        margin-left: 0;
    }
}

/* ── Feature Split Sections ───────────────────────────────── */
.feature-split-section {
    padding: 5rem 1rem;
    border-top: 1px solid var(--tech-border);
    background-color: var(--bg-main);
}

.feature-split-alt {
    background-color: var(--surface-light);
}

.feature-split-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-split-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-split-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.12));
}

.feature-split-image img:hover {
    transform: scale(1.04);
}

.feature-split-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-split-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.feature-split-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-charcoal);
    line-height: 1.2;
    margin: 0;
}

.feature-split-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.feature-split-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.feature-split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.feature-split-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-charcoal);
}

.feature-split-list li .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1;
}

/* Mobile: content above, image below */
@media (max-width: 768px) {
    .feature-split-section {
        padding: 3rem 1rem;
    }

    .feature-split-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* Section 1: image is first in HTML (left on desktop).
       On mobile, push image below content. */
    .feature-image-first .feature-split-image {
        order: 2;
    }

    .feature-image-first .feature-split-content {
        order: 1;
    }

    .feature-split-image img {
        max-width: 280px;
    }

    .feature-split-desc {
        font-size: 0.95rem;
    }

    .feature-split-list {
        display: none;
    }
}

/* Light Section Styles */
.light-section {
    background-color: var(--bg-main);
    padding: 6rem 1rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--card-variant-3) 0%, var(--card-variant-1) 50%, var(--card-variant-2) 100%);
    margin: 0 auto 1rem;
    position: relative;
    animation: divider-expand 3s ease-in-out infinite;
}

@keyframes divider-expand {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.section-description {
    color: rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-card {
    background-color: var(--surface-light);
    border: 2px solid var(--tech-border);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.spec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-variant-1), var(--card-variant-2), var(--card-variant-3));
    transition: width 0.5s ease;
}

.spec-card:hover::after {
    width: 100%;
}

.spec-card:nth-child(1) {
    border-left: 4px solid var(--card-variant-1);
    animation: spec-fade-in 0.8s ease-out 0.1s backwards;
}

.spec-card:nth-child(2) {
    border-left: 4px solid var(--card-variant-2);
    animation: spec-fade-in 0.8s ease-out 0.2s backwards;
}

.spec-card:nth-child(3) {
    border-left: 4px solid var(--card-variant-3);
    animation: spec-fade-in 0.8s ease-out 0.3s backwards;
}

.spec-card:nth-child(4) {
    border-left: 4px solid var(--card-variant-4);
    animation: spec-fade-in 0.8s ease-out 0.4s backwards;
}

@keyframes spec-fade-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.spec-card:hover {
    transform: translateX(8px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.08);
}

.spec-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tech-border);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: rgba(0, 0, 0, 0.55);
}

.spec-value {
    font-weight: 600;
    color: var(--text-charcoal);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--surface-light);
    transition: all 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0px solid var(--primary);
    transition: border-width 0.4s ease;
    pointer-events: none;
}

.gallery-item:nth-child(1) {
    animation: float-1 6s ease-in-out infinite;
}

.gallery-item:nth-child(2) {
    animation: float-2 7s ease-in-out infinite;
}

.gallery-item:nth-child(3) {
    animation: float-3 8s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.gallery-item:hover {
    border-color: var(--primary);
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover::after {
    border-width: 1px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-main);
    border: 1px solid var(--tech-border);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tech-border);
    background-color: var(--surface-light);
    color: var(--text-charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.form-textarea {
    resize: none;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.08);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Support Cards */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background-color: var(--surface-light);
    border: 2px solid var(--tech-border);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 228, 1, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.support-card:hover::before {
    transform: scale(1);
}

.support-card:nth-child(1) {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--primary-ultra-light) 100%);
}

.support-card:nth-child(2) {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--primary-ultra-light) 100%);
}

.support-card:nth-child(3) {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--primary-ultra-light) 100%);
}

.support-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.support-icon {
    color: var(--primary);
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.support-card:hover .support-icon {
    transform: scale(1.15) translateY(-5px);
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1.15) translateY(-5px); }
    50% { transform: scale(1.2) translateY(-10px); }
}

.support-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.support-card p {
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.support-link:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    border-top: 1px solid var(--tech-border);
    background-color: var(--bg-main);
    padding: 3rem 1rem;
}

[data-theme="dark"] footer {
    background-color: var(--bg-main);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

[data-theme="dark"] .footer-desc {
    color: rgba(255, 255, 255, 0.45);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(0, 0, 0, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--tech-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.45);
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        display: none;
    }

    /* Mobile navbar behavior */
    header {
        transform: translateY(-100%);
    }

    header.mobile-visible {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .light-section {
        padding: 4rem 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-badges {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .stat-badge {
        padding: 0.6rem 0.75rem;
        min-width: unset;
        flex: 1;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-slider-btn {
        display: none !important;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--tech-border);
    cursor: grab;
    user-select: none;
    max-height: 550px;
}

.hero-carousel:active {
    cursor: grabbing;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    will-change: transform;
    overflow: hidden;
}

.slide-dark {
    position: relative;
}

.hero-slide-dark-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Desktop: support slide — content left, image right (same as IMU slide) */
.slide-support .feature-image {
    display: flex;
    align-items: center;
}

.slide-support-img-mobile {
    display: none;
}

.hero-slide-dark-inner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-slide-dark-inner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffe401;
    width: 48px;
    height: 48px;
    border-radius: 0;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 20;
    transition: color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-btn:hover {
    color: #ffed4d;
    transform: translateY(-50%) scale(1.2);
}

.hero-slider-btn.prev { left: 1.25rem; }
.hero-slider-btn.next { right: 1.25rem; }

.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 20;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.35);
}

/* ── Mobile: dark slides use background images ───────────────── */
@media (max-width: 768px) {
    .slide-imu {
        background-image: url('assets/4556895.png') !important;
        background-size: cover;
        background-position: center;
    }

    .slide-stability {
        background-image: url('assets/kitronix-4.png') !important;
        background-size: cover;
        background-position: center;
    }

    .slide-processor {
        background-image: url('assets/kitronix_5.png') !important;
        background-size: cover;
        background-position: center;
    }

    /* Semi-transparent overlay — image shows through, text stays readable */
    .slide-dark::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    /* Lift content above the overlay */
    .slide-dark .hero-slide-dark-inner {
        position: relative;
        z-index: 2;
    }

    /* Hide inline images — they're the background now */
    .slide-dark .feature-image {
        display: none;
    }

    /* Mobile support slide — same as IMU slide (image hidden, bg shows through) */
    .slide-support-img-mobile {
        display: block;
    }

    .slide-support .hero-slide-dark-inner h2 {
        font-size: 1.2rem;
    }

    .slide-support .hero-slide-dark-inner p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .slide-support .hero-slide-dark-inner a {
        font-size: 11px !important;
        padding: 8px 14px !important;
    }

    .hero-slide-dark-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.25rem;
    }

    .hero-slide-dark-inner h2 {
        font-size: 1.6rem;
    }

    .hero-carousel {
        max-height: 400px;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 80px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 2rem;
    border: 2px solid var(--tech-border);
    background-color: var(--surface-light);
    color: var(--text-charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: #1a1100;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 228, 1, 0.2);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat p:first-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 228, 1, 0.3); }
    50% { text-shadow: 0 0 15px rgba(255, 228, 1, 0.6), 0 0 25px rgba(255, 228, 1, 0.4); }
}

.hero-stat p:last-child {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-stat:hover p:last-child {
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero-content {
        align-items: stretch;
    }

    nav {
        display: none;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 100;
        transition: all 0.3s ease-in-out;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--tech-border);
        font-size: 16px;
        color: rgba(0, 0, 0, 0.7);
    }
}

/* Dark mode mobile nav dropdown */
@media (max-width: 768px) {
    [data-theme="dark"] nav {
        background: #1a1a1a;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    [data-theme="dark"] nav a {
        color: rgba(255, 255, 255, 0.75);
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    [data-theme="dark"] nav a:hover {
        color: var(--primary);
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        padding: 0;
        text-align: left;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.6rem;
        align-items: center;
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        flex: 1;
        min-width: 0;
        min-height: 44px;
        text-align: center;
        justify-content: center;
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
    }

    .light-section {
        padding: 3rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid .footer-section:first-child {
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--tech-border);
    }

    .footer-grid .footer-section:first-child .social-links {
        justify-content: center;
    }

    .footer-grid .footer-section:not(:first-child) {
        display: inline-block;
    }

    /* Wrap the 3 link sections in a row */
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-grid .footer-section:first-child {
        flex: 0 0 100%;
    }

    .footer-grid .footer-section:not(:first-child) {
        flex: 1;
        min-width: 0;
    }

    .footer-grid .footer-section h4 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .footer-grid .footer-section ul li {
        margin-bottom: 0.3rem;
    }

    .footer-grid .footer-section a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1.125rem;
        padding: 0;
        text-align: left;
    }

    .btn-primary {
        padding: 0.6rem 0.75rem;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .btn-secondary {
        padding: 0.6rem 0.75rem;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .hero-stat p:first-child {
        font-size: 0.875rem;
    }

    .hero-stat p:last-child {
        font-size: 1.25rem;
    }

    .footer-grid .footer-section h4 {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .footer-grid .footer-section a {
        font-size: 0.75rem;
    }
}

/* Product Page Specific Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--tech-border);
    background: transparent;
    color: var(--text-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide hamburger menu by default on desktop */
.mobile-menu-btn {
    display: none;
}

.icon-btn:hover {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.icon-btn .material-symbols-outlined {
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-intro-tagline-suffix,
    .hero-intro-desc {
        display: none;
    }

    .hero-slide-cinematic {
        background-image: url('assets/WhatsApp Image 2026-02-23 at 5.37.48 PM.jpeg') !important;
        background-size: 75% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}

/* ── Reddit Community Section ─────────────────────────────── */
.reddit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reddit-card {
    background: #fff;
    border: 1px solid var(--tech-border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.reddit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.reddit-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
}

.reddit-card-pin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 228, 1, 0.15);
    color: #b8860b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reddit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-charcoal);
    line-height: 1.4;
    margin: 0;
}

.reddit-card p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reddit-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--tech-border);
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
}

.reddit-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.reddit-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .reddit-grid {
        grid-template-columns: 1fr;
    }
}
