/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-core: #0F1115;
    --bg-surface: #13151A;
    --bg-light: #1A1D24;
    --accent-gold: #D4AF37;
    --accent-gold-dim: rgba(212, 175, 55, 0.4);
    --text-white: #FFFFFF;
    --text-main: #EAEAEA;
    --text-muted: #9CA3AF;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    --container-max: 1200px;
    --transition: 0.4s ease;
}

body {
    background-color: var(--bg-core);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TYPOGRAPHY */
.text-gold {
    color: var(--accent-gold);
}

.center-text {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

strong {
    color: var(--text-white);
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cta-button:hover {
    background: var(--accent-gold);
    color: var(--bg-core);
}

.cta-link {
    display: inline-block;
    margin-left: 2rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
}

.cta-link:hover {
    border-bottom-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 130px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: -40px 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: 0.3s;
}


.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-left: max(1.5rem, calc((100vw - var(--container-max)) / 2));
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-core) 0%, rgba(15, 17, 21, 0.8) 50%, rgba(15, 17, 21, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 3rem;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.hero-title.small {
    font-size: 3rem;
    margin-top: 1rem;
}

/* SECTIONS COMMON */
section {
    padding: 8rem 0;
    overflow: hidden;
}

/* VISION (Split Layout) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    /* Subtle gold tint */
    mix-blend-mode: overlay;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

/* DIVISIONS */
.divisions-section {
    padding: 0;
}

.division-row {
    padding: 6rem 0;
}

.dark-bg {
    background: var(--bg-core);
}

.lighter-bg {
    background: var(--bg-surface);
}

.division-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.division-name {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.impact-statement {
    font-size: 1.25rem;
    color: var(--text-white);
    font-style: italic;
    font-family: var(--font-display);
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23D4AF37'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    /* Removing circle */
    background-color: transparent;
    /* Removing dot color */
}

/* ABSTRACT VISUALS */
.abstract-card {
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
}

.stat-line {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.stat-line span {
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.tech-grid-visual {
    width: 100%;
    height: 300px;
    position: relative;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-line {
    position: absolute;
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.3;
}

.grid-line.horizontal {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
}

.tech-dot {
    position: absolute;
    top: 60%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent-gold);
}

/* VISION VISUAL - GOLDEN NETWORK */
.vision-visual {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, #1a1d24 0%, #0F1115 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.network-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.center-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-gold);
    z-index: 10;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

.orbit-1 {
    width: 140px;
    height: 140px;
    animation: spin 20s linear infinite;
}

.orbit-2 {
    width: 240px;
    height: 240px;
    animation: spin 35s linear infinite reverse;
}

.orbit-3 {
    width: 340px;
    height: 340px;
    animation: spin 50s linear infinite;
}

.orbit-dot {
    position: absolute;
    top: -3px;
    /* Center on line */
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* GRID & CARDS IMPROVEMENTS */

/* Card Numbers - Moved Outside/Styled */
.card-number-wrapper {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
}

.card-line {
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
}


/* Division 03 (Fixing Broken Layout) */
.full-width-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 3rem 0;
    /* Reduced padding from 6rem */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.formation-banner {
    min-height: 350px;
    /* Reduced min-height from 500px */
    background: #0d0f12;
}

.formation-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/formation_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.banner-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-gold);
    opacity: 0.3;
    margin-bottom: -1rem;
    /* Fixed typo -1re */
    display: block;
}

.banner-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.banner-statement {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    /* Slightly reduced */
}

.banner-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.inline-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.inline-list li {
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-list li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23D4AF37'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.highlight-p {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.highlight-p.bright {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Cleaned up old card styles */
.card-grid {
    /* Deprecated - moved to full sections */
    display: none;
}

.card-content {
    padding: 2.5rem;
    justify-content: flex-start;
}

.card-content h3 {
    font-size: 2rem;
    margin-top: 1rem;
    opacity: 1;
    color: var(--text-white);
}

.card-content h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-content p {
    border-top: none;
    padding-top: 0;
    margin-top: auto;
    font-size: 0.95rem;
}


/* SEPARATORS */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .full-width-banner {
        padding: 4rem 1.5rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .inline-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }


    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 17, 21, 0.98);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .logo-icon {
        height: 60px;
        margin: -15px 0;
    }

    /* Simplified */
    .hero {
        padding-left: 1.5rem;
        text-align: left;
    }
}

/* FOOTER NEW */
footer {
    background: #0d0f12;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/* --- ABSTRACT VISUALS (CSS ART) --- */

.abstract-container {
    background: var(--bg-surface);
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MARKETING VISUAL */
.visual-marketing {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marketing-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-bottom: 2rem;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.2), var(--accent-gold));
    border-radius: 2px;
    animation: growBar 3s ease-in-out infinite alternate;
}

.bar.b1 {
    height: 30%;
    animation-delay: 0s;
}

.bar.b2 {
    height: 50%;
    animation-delay: 0.2s;
}

.bar.b3 {
    height: 75%;
    animation-delay: 0.4s;
}

.bar.b4 {
    height: 100%;
    animation-delay: 0.6s;
}

@keyframes growBar {
    0% {
        transform: scaleY(0.9);
        opacity: 0.7;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}


/* NATURE VISUAL */
.visual-nature {
    background: radial-gradient(circle at top right, #1d2026, #13151A);
}

.organic-shape {
    position: absolute;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.s1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 20%;
}

.s2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    animation-direction: alternate-reverse;
    border-color: rgba(212, 175, 55, 0.2);
}

.organic-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}


/* WELLNESS VISUAL */
.visual-wellness {
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stone {
    background: linear-gradient(135deg, #2a2e35, #1A1D24);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.st1 {
    width: 60px;
    height: 25px;
}

.st2 {
    width: 90px;
    height: 35px;
}

.st3 {
    width: 120px;
    height: 45px;
}


/* COLLECTING VISUAL */
.visual-collecting {
    position: relative;
    perspective: 1000px;
}

.card-slab {
    width: 140px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slab-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #13151A;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slab-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    pointer-events: none;
}

.safe-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    z-index: 1;
}

.layer {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.l1 {
    width: 200px;
    height: 200px;
    border-style: dashed;
}

.l2 {
    width: 240px;
    height: 240px;
    opacity: 0.5;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    color: var(--text-white);
    opacity: 0.7;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}


/* --- VISUAL POLISH: "Semplice & Bello" --- */

/* 1. Improved Separators (Gradient Crystal) */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
    margin: 5rem auto;
    position: relative;
    opacity: 0.8;
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold);
    border: 1px solid #fff;
}

/* 2. Artistic "Double Frame" for Images */
.img-frame {
    position: relative;
    padding: 1.5rem;
    /* Space for dual borders */
    transition: transform 0.6s ease;
}

.img-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    filter: contrast(1.1) saturate(1.1);
    /* Slight boost */
}

/* Outer Gold Line */
.img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: translate(12px, 12px);
    z-index: 1;
    transition: transform 0.6s ease, border-color 0.6s ease;
}

/* Inner Glass Line */
.img-frame::after {
    content: '';
    position: absolute;
    inset: 1.5rem;
    /* Matches padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
}

.img-frame:hover {
    transform: translateY(-5px);
}

.img-frame:hover::before {
    transform: translate(20px, 20px);
    border-color: var(--accent-gold);
}

/* 3. Vision Section Readability Box */
.vision-section .text-content {
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.98), rgba(25, 28, 36, 0.95));
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-section p {
    color: #d1d5db;
    /* Lighter gray for better reading */
    font-size: 1.05rem;
    line-height: 1.8;
}

.vision-section strong {
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* 4. Font Highlights */
.highlight-text {
    font-size: 1.25rem;
    color: var(--text-white);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-style: italic;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

/* 5. New Impact Section Styling */
.impact-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #e5e7eb;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 2px;
    margin: 3rem 0;
    font-size: 1.25rem;
    color: var(--text-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.highlight-box::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 10rem;
    color: rgba(212, 175, 55, 0.05);
    font-family: var(--font-display);
    pointer-events: none;
}

/* 6. Footer Polish */
#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 6rem;
    background: linear-gradient(to bottom, #0d0e12, #000);
}

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-top: 4rem;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-logo-img {
    height: 35px;
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* 7. Automation Visual Upgrade: "Neural Circuit" */
.tech-grid-visual {
    position: relative;
    width: 100%;
    height: 380px;
    background: radial-gradient(circle at center, #151720 0%, #0a0b10 80%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.neural-circuit {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Nodes */
.neural-node {
    position: absolute;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.main-node {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-core {
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulseNode 2s ease-in-out infinite;
}

.node-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    border-left-color: transparent;
    animation: rotateNode 4s linear infinite;
}

.sub-node {
    width: 12px;
    height: 12px;
    background: #444;
}

.n1 {
    top: 20%;
    left: 20%;
}

.n2 {
    top: 20%;
    right: 20%;
}

.n3 {
    bottom: 20%;
    right: 20%;
}

.n4 {
    bottom: 20%;
    left: 20%;
}

/* Paths */
.neural-path {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform-origin: 0 0;
    z-index: 1;
    overflow: hidden;
}

.neural-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: translateX(-100%);
    animation: transmitData 2s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.p1 {
    transform: rotate(-135deg);
}

.p2 {
    transform: rotate(-45deg);
}

.p3 {
    transform: rotate(45deg);
}

.p4 {
    transform: rotate(135deg);
}

.p1::after {
    animation-delay: 0s;
}

.p2::after {
    animation-delay: 0.5s;
}

.p3::after {
    animation-delay: 1s;
}

.p4::after {
    animation-delay: 1.5s;
}

@keyframes pulseNode {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.7;
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

@keyframes rotateNode {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes transmitData {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* 8. Final Statement Polish */
.final-statement {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #1a1c24 0%, #000 100%);
}

.final-tagline {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-top: 3rem;
    opacity: 0.9;
    letter-spacing: 1px;
}