/* CSS Variables & Global Settings */
:root {
    /* Color Palette */
    --clr-primary: #f2e8d5;
    /* Soft Warm White (Premium Beige highlight) */
    --clr-primary-light: #fbf9f4;
    --clr-primary-dark: #dcd0ba;

    --clr-secondary: #c9a45c;
    /* Metallic Gold Accent */
    --clr-secondary-light: #d8bb7d;
    --clr-secondary-dark: #b08c45;

    --clr-dark: #121212;
    /* High-end Zinc Black BG */
    --clr-dark-lighter: #1e1e1e;
    /* Elevated Surface / Card BG */
    --clr-light: #121212;
    /* Overridding light themes for full dark mode */
    --clr-white: #faf9f6;
    /* Very soft warm off-white, not stark */

    --text-main: #eae0c8;
    /* Warm golden-beige body text */
    --text-muted: #cbbba1;
    /* Muted golden-beige */
    --text-light: #a49781;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: 7rem 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--clr-light);
    /* Deep atmospheric radial glows */
    background-image:
        radial-gradient(circle at 15% 20%, rgba(201, 164, 92, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    background-size: 100vw 100vh, 100vw 100vh;
    background-position: center, center;
    background-attachment: fixed;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.dark-section {
    background-color: transparent;
    color: var(--clr-white);
}

.light-section {
    background-color: transparent;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

.text-center {
    text-align: center;
}

.text-center-imp {
    justify-content: center;
}

/* Highlight Text */
.highlight {
    color: var(--clr-secondary);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.dark-section .section-title {
    color: var(--clr-secondary);
}

.en-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary));
    margin-top: 1rem;
    border-radius: 2px;
}

.title-underline.center {
    margin: 1rem auto 0;
}

.section-subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dark-section .section-subtitle {
    color: var(--text-light);
}


/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-primary);
    line-height: 1.1;
    letter-spacing: 1px;
}

.navbar.scrolled .logo-title {
    color: var(--clr-primary-dark);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-primary);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-nav.open {
    right: 0;
}

.mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--clr-primary);
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    font-size: 1.5rem;
    color: var(--clr-primary);
    font-weight: 600;
}


/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: transparent;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(201, 164, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(201, 164, 92, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(90deg, rgba(201, 164, 92, 0.1), rgba(201, 164, 92, 0.2));
    color: var(--clr-secondary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 164, 92, 0.3);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.group-focus {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--clr-secondary);
}

.focus-text {
    font-weight: 600;
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(201, 164, 92, 0.08);
    /* Dark gold tint */
    color: var(--clr-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(201, 164, 92, 0.2);
}

.hero-footer-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 85%;
}

.hero-image-wrapper {
    position: relative;
}

.main-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Frosted dark theme border */
    background: var(--clr-dark-lighter);
    padding: 10px;
}

/* Glassmorphism subtle overlay to blend bright images into dark theme */
.main-img-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.1);
    /* Lighter shadow since image is already glowing */
    pointer-events: none;
    border-radius: 16px;
    mix-blend-mode: overlay;
}

.group-img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.main-img-card:hover .group-img {
    transform: scale(1.03);
}


/* --- Group Positioning (Philosophy Cards reused) --- */
.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Glass border */
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-secondary);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.philosophy-card:hover::before {
    height: 100%;
    background: var(--clr-primary);
    z-index: -1;
    opacity: 0.1;
    /* creates a green tint on hover */
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 164, 92, 0.1);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.philosophy-card:hover .card-icon {
    background: rgba(201, 164, 92, 0.2);
    /* Slightly stronger gold glow */
    color: var(--clr-secondary);
    /* Keep the icon gold, not white */
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(201, 164, 92, 0.3);
    /* Add soft a gold halo */
}

.card-title {
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.en-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* --- Subsidiaries Vertical Stack --- */
.subsidiaries-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.subsidiary-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Thin glass border */
    position: relative;
}

.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--clr-secondary);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.subsidiary-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.sub-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-light));
    color: var(--clr-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(201, 164, 92, 0.2);
}

.sub-title-wrap {
    position: relative;
}

.sub-order {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    font-family: var(--font-heading);
    line-height: 1;
}

.sub-title-wrap h3 {
    font-size: 1.6rem;
    color: var(--clr-primary-dark);
    margin-bottom: 0.2rem;
}

.sub-title-wrap .en-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.sub-positioning {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.sub-body {
    padding: 2rem 3rem 3rem;
}

.sub-desc {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
}

.sub-features h4 {
    font-size: 1.1rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--clr-secondary);
    display: inline-block;
    padding-bottom: 5px;
}

.sub-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sub-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.sub-features li i {
    color: var(--clr-secondary);
    font-size: 0.9rem;
}

.tech-callout {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201, 164, 92, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--clr-secondary);
    font-size: 0.95rem;
    color: var(--text-main);
}

.tech-callout strong {
    color: var(--clr-primary-dark);
}


/* --- Structure Connected Diagram --- */
.textured-bg {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.02"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z" /%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cycle-container {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cycle-nodes {
    position: relative;
    width: 600px;
    height: 400px;
}

.c-node {
    position: absolute;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.c-icon {
    width: 80px;
    height: 80px;
    background: var(--clr-dark-lighter);
    border: 2px solid var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.c-node:hover .c-icon {
    background: rgba(201, 164, 92, 0.2);
    color: var(--clr-secondary);
    border-color: var(--clr-secondary-light);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 164, 92, 0.4);
}

.c-node h4 {
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.c-node p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Positioning the triangular cycle */
.node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-right {
    bottom: 0;
    right: 80px;
}

.node-bottom {
    bottom: 0;
    left: 80px;
}

/* Arrows drawing the loop */
.c-arrow {
    position: absolute;
    font-size: 2rem;
    color: rgba(201, 164, 92, 0.4);
    animation: flow 3s infinite linear;
    display: flex;
    gap: 4px;
    /* Space between the two chevrons */
}

.a-1to2 {
    top: 35%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(60deg);
}

.a-2to3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.a-3to1 {
    top: 35%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(-60deg);
}

@keyframes flow {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
        color: var(--clr-primary-light);
    }

    100% {
        opacity: 0.2;
    }
}

.core-statement {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.core-statement h3 {
    color: var(--clr-secondary);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

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


/* --- Commitment Banner --- */
.banner-section {
    padding: 8rem 0;
    background: linear-gradient(to right, rgba(201, 164, 92, 0.03), rgba(201, 164, 92, 0.08));
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 4rem;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Thin glass line */
    border-top: 4px solid var(--clr-secondary);
    /* Gold Accent matching the sidebar */
}

.quote-mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--clr-secondary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(201, 164, 92, 0.3);
}

.commitment-title {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.light-en {
    font-size: 1rem;
    color: var(--text-muted);
}

.commitment-manifesto {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    position: relative;
    display: inline-block;
}

/* Add subtle gradient to text */
.highlight-text {
    background: linear-gradient(90deg, var(--clr-primary-dark), var(--clr-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.commitment-desc {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}


/* --- Footer --- */
.footer {
    background-color: transparent;
    color: var(--text-light);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    width: 60px;
    border-radius: 8px;
}

.footer-company-name h3 {
    color: var(--clr-white);
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
}

.footer-company-name p {
    color: var(--clr-secondary);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-contact h4,
.footer-disclaimer h4 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--clr-secondary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    font-size: 1rem;
    margin-right: 10px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-bottom: 3rem;
}

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

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-item i {
    color: var(--clr-secondary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.disclaimer-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* --- Animations & Utilities --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}


/* --- Media Queries --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container,
    .focus-layout,
    .tech-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .philosophy-cards {
        grid-template-columns: 1fr 1fr;
    }

    .sub-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sub-order {
        display: none;
    }

    .cycle-nodes {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .philosophy-cards {
        grid-template-columns: 1fr;
    }

    .sub-features ul {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .commitment-content {
        padding: 3rem 2rem;
    }

    .highlight-text {
        font-size: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
    }

    /* Reformat structure for mobile so it stacks instead of trying to be a triangle */
    .cycle-nodes {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .c-node {
        position: static;
        transform: none;
    }

    .c-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .logo-img {
        height: 35px;
    }
}