/* --- Root & Reset --- */
:root {
    --primary: #7c5dc9;
    --secondary: #cd99c5;
    --dark-bg: #0a0814;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --text-main: #ffffff;
    --text-dim: #b0aec7;
    --accent: #ff6b9d;
    --nav-height: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- Background Cells --- */
.bg-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #150f2e 0%, #0a0814 100%);
}

.cell {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, var(--secondary), var(--primary));
    box-shadow: inset -10px -10px 40px rgba(0,0,0,0.4), 0 0 30px rgba(124, 93, 201, 0.2);
    opacity: 0.25;
    animation: float-cell 40s infinite ease-in-out, morph-cell 8s infinite alternate ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cell::before, .cell::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1.5px dashed rgba(205, 153, 197, 0.3);
    animation: rotate-pili 12s infinite linear;
}

@keyframes morph-cell {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 30% 70% 40%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@keyframes rotate-pili {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-cell {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, -100px) rotate(90deg); }
    50% { transform: translate(120px, 80px) rotate(180deg); }
    75% { transform: translate(-60px, 100px) rotate(270deg); }
}

.cell-1 { width: 140px; height: 140px; top: 15%; left: 5%; animation-duration: 40s, 7s; }
.cell-2 { width: 320px; height: 320px; bottom: 5%; right: -5%; filter: blur(8px); opacity: 0.12; animation-duration: 50s, 9s; }
.cell-3 { width: 90px; height: 90px; top: 60%; left: 75%; animation-direction: normal, reverse; animation-duration: 35s, 6s; }
.cell-4 { width: 200px; height: 200px; bottom: 15%; left: 10%; filter: blur(4px); animation-duration: 45s, 8s; }
.cell-5 { width: 70px; height: 70px; top: 30%; right: 20%; animation-duration: 38s, 5s; }

/* --- Navigation --- */
nav {
    height: var(--nav-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
}

.logo-box {
    height: 70%;
    display: flex;
    align-items: center;
}

.logo-box a {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    transition: 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Mobile Menu --- */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 10% 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fade-in 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.hero h1 span {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(205, 153, 197, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-weight: 300;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Buttons --- */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(124, 93, 201, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 93, 201, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(205, 153, 197, 0.1);
    transform: translateY(-4px);
}

/* --- Sections --- */
section {
    padding: 120px 8%;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 300;
}

/* --- About Section --- */
.about-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.05) 0%, rgba(205, 153, 197, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text,
.about-mission,
.about-full {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.section-container > .about-full {
    display: flex;
    flex-direction: column;
}

.about-text h3,
.about-mission h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p,
.about-mission p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* --- Products Section --- */
.products-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.05) 0%, rgba(205, 153, 197, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(124, 93, 201, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.15), rgba(205, 153, 197, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.product-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

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

.product-card h3 {
    color: var(--secondary);
    font-size: 1.6rem;
    margin: 2rem 2rem 1rem;
}

.product-card p {
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0 2rem 1rem;
    font-weight: 300;
    flex-grow: 1;
}

.product-card p:last-child {
    margin-bottom: 2rem;
}

.product-info {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-style: italic;
}

.product-variants {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.products-developing {
    background: rgba(205, 153, 197, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(205, 153, 197, 0.2);
    margin-bottom: 3rem;
}

.products-developing h3 {
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.products-developing p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.developing-list {
    list-style: none;
    padding-left: 0;
}

.developing-list li {
    color: var(--text-dim);
    margin: 1rem 0 1rem 2rem;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
}

.developing-list li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.product-highlight {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.1), rgba(205, 153, 197, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(205, 153, 197, 0.2);
    border-left: 4px solid var(--secondary);
}

.product-highlight p {
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Capabilities Section --- */
.capabilities-section {
    background: linear-gradient(135deg, rgba(205, 153, 197, 0.05) 0%, rgba(124, 93, 201, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

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

.capability-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Services Section --- */
.services-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.05) 0%, rgba(205, 153, 197, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(124, 93, 201, 0.2);
}

.service-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

.service-closing {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dim);
    padding: 2rem;
    background: rgba(205, 153, 197, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(205, 153, 197, 0.2);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Team Section --- */
.team-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.05) 0%, rgba(205, 153, 197, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(124, 93, 201, 0.2);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.25), rgba(205, 153, 197, 0.25));
    border: 2px solid rgba(205, 153, 197, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(124, 93, 201, 0.15);
}

.member-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

.member-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.team-member h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-bio {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-description {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Support Section --- */
.support-section {
    background: linear-gradient(135deg, rgba(205, 153, 197, 0.05) 0%, rgba(124, 93, 201, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

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

.support-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.support-intro p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

.support-focus,
.support-impact {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.support-focus h3,
.support-impact h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.support-focus p,
.support-impact p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.support-impact .btn {
    margin-top: 1rem;
}

/* --- Footer --- */
.footer {
    background: rgba(5, 5, 10, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 8% 30px;
}

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

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    opacity: 0.5;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
}

/* --- Page Header --- */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 10% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.08) 0%, rgba(205, 153, 197, 0.05) 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    font-weight: 300;
}

/* --- Home About Section --- */
.about-home {
    grid-template-columns: 1fr 1fr;
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more .btn {
    display: inline-block;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.1), rgba(205, 153, 197, 0.1));
    border: 1px solid rgba(205, 153, 197, 0.2);
    padding: 80px 4%;
    text-align: center;
    border-radius: 30px;
    margin: 60px auto;
    width: 100%;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(135deg, rgba(124, 93, 201, 0.05) 0%, rgba(205, 153, 197, 0.05) 100%);
    border: 1px solid rgba(205, 153, 197, 0.1);
    border-radius: 30px;
    padding: 120px 4%;
    margin: 60px auto;
    width: 100%;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.contact-card h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: var(--text-dim);
    line-height: 1.8;
}

.contact-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--text-main);
}

/* --- Footer List Styles --- */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-content,
    .about-home {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-header {
        padding: calc(var(--nav-height) + 30px) 8% 40px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 8, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .hamburger {
        display: flex;
    }

    .menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    .menu-toggle:checked ~ .menu-overlay {
        display: block;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    section {
        padding: 80px 6%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: calc(var(--nav-height) + 20px) 6% 40px;
    }

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

    .hero p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

    .product-card h3,
    .service-card h3,
    .capability-card h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-header {
        padding: calc(var(--nav-height) + 20px) 5% 30px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .about-section,
    .products-section,
    .services-section,
    .capabilities-section,
    .contact-section,
    .support-section {
        margin: 40px 2% !important;
        padding: 60px 5%;
    }

    .section-container > .about-full {
        width: 100%;
    }

    .about-full h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        margin: 40px 2% !important;
        padding: 60px 5%;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* --- Smooth Scrolling & Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
