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

/* Theme Tokens */
:root {
    --bg-primary: #0B0F17;
    --bg-secondary: #141B2A;
    --text-primary: #F4F6FA;
    --text-secondary: #A9B3C7;
    --accent: #BFA67A;
    --accent-light: #D4C4A0;
    --border: rgba(255, 255, 255, 0.05);
}

/* Document Defaults */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background-color: rgba(11, 15, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    width: 100%;
    padding: 0 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent);
}

.site-logo {
    display: block;
    width: auto;
    height: 4rem;
}

.logo:hover .site-logo {
    opacity: 0.9;
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

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

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 100%;
    height: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: rgba(11, 15, 23, 0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 5rem;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    overflow: hidden;
    padding-top: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(5, 8, 14, 0.9) 0%, rgba(5, 8, 14, 0.68) 42%, rgba(5, 8, 14, 0.8) 100%),
        radial-gradient(circle at 12% 18%, rgba(191, 166, 122, 0.2) 0%, rgba(191, 166, 122, 0) 40%);
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.9s ease, transform 6s ease;
    will-change: opacity, transform;
}

.hero-bg-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-line-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-line {
    height: 1px;
    background-color: var(--accent);
    flex: 0 0 3rem;
    transform-origin: left center;
    animation: scaleLineX 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-node {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--accent);
    border-radius: 50%;
    transform: scale(0) rotate(0deg);
    animation: scaleNode 0.4s ease 0.5s forwards;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 0.5s ease 0.3s forwards;
}

.hero-headline {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.headline-word {
    display: block;
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.headline-word:nth-child(1) {
    animation-delay: 0.4s;
}

.headline-word:nth-child(2) {
    animation-delay: 0.48s;
}

.headline-word:nth-child(3) {
    animation-delay: 0.56s;
}

.hero-subheading {
    font-size: 1rem;
    color: #DCE3F1;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 0.5s ease 0.7s forwards;
}

.hero-text {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-text.is-changing {
    opacity: 0.3;
    transform: translateY(8px);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.5s ease 0.8s forwards;
}

.hero-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.3rem;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    opacity: 0;
    animation: slideUp 0.5s ease 0.9s forwards;
}

.hero-slider-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 246, 250, 0.62);
    background: rgba(11, 15, 23, 0.55);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.25s ease;
}

.hero-slider-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(11, 15, 23, 0.8);
}

.hero-slider-arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.hero-slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 246, 250, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-slider-dot:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.hero-slider-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.hero-slider-dot.is-active {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
}

.hero-vline {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 2px;
    height: 50%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    opacity: 0;
    animation: scaleLineY 0.8s ease 0.3s forwards;
    transform-origin: top center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-vline {
        display: none;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .hero-content {
        padding: 1rem 0;
    }

    .hero-slider-controls {
        margin-top: 1.1rem;
    }
}

/* Button Styles */
.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: none;
    font-weight: 600;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Split Panel Sections */
.split-panel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-primary);
}

@media (max-width: 768px) {
    .split-panel {
        height: auto;
        min-height: 80vh;
    }
}

.split-panel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .split-panel-inner {
        grid-template-columns: 1fr;
    }
    
    .split-panel-image-left,
    .split-panel-image-right {
        height: 40vh;
        display: block !important;
        order: -1;
    }
}

.split-panel-image-left,
.split-panel-image-right {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
}

.split-panel-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 3rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

@media (max-width: 768px) {
    .split-panel-content {
        padding: 2rem;
        min-height: 50vh;
        align-items: flex-start;
        padding-top: 2rem;
    }
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-vline {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    transform-origin: top center;
    transform: scaleY(0);
}

.panel-vline.animated {
    animation: scaleLineY 0.8s ease forwards;
}

.panel-text {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
}

.panel-text.animated {
    animation: slideUp 0.6s ease forwards;
}

.micro-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.section-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 450px;
}

.oversized-word {
    position: absolute;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(64px, 9vw, 140px);
    line-height: 1;
    color: rgba(244, 246, 250, 0.04);
    white-space: nowrap;
    pointer-events: none;
    right: 2rem;
    bottom: 2rem;
    opacity: 0;
}

.oversized-word.animated {
    animation: slideUp 0.6s ease 0.2s forwards;
}

#manufacturing .oversized-word {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 10%;
    transform: translateX(-50%);
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: var(--bg-primary);
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
}

.contact-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--accent);
    opacity: 0.3;
    transform-origin: left center;
    transform: scaleX(0);
    animation: scaleLineX 0.8s ease 0.2s forwards;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-heading {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.2;
}

.accent {
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background-color: var(--bg-secondary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.contact-form-wrapper {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem;
        font-size: 1.0625rem;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(191, 166, 122, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background-color: rgba(191, 166, 122, 0.1);
    color: var(--accent);
}

.form-message.error {
    background-color: rgba(220, 100, 100, 0.1);
    color: #ff6b6b;
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-main {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: var(--accent);
}

.footer-site-logo {
    display: block;
    width: auto;
    height: 5.3rem;
}

.footer-logo:hover .footer-site-logo {
    opacity: 0.9;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bg-secondary);
    border-radius: 0.25rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent);
    background-color: rgba(191, 166, 122, 0.1);
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 1.5rem;
}

.footer-bottom-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom-content p a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 0.12rem;
}

.footer-bottom-content p a:hover {
    color: var(--accent);
}

.scroll-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-to-top:hover {
    color: var(--accent);
}

.scroll-to-top svg {
    width: 1rem;
    height: 1rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleLineX {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes scaleLineY {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes scaleNode {
    from {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(12deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .nav-content {
        height: 4rem;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }

    .site-logo {
        height: 4rem;
    }
    
    .hero-section {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
        min-height: 80vh;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }
    
    .split-panel-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
    
    .section-body {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .contact-heading {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Multi-page extensions */
.is-hidden {
    display: none !important;
}

.nav-link,
.nav-cta,
.mobile-nav-link,
.btn-primary,
.btn-outline,
.scroll-to-top {
    text-decoration: none;
}

.nav-link.active {
    color: var(--accent);
}

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

.mobile-nav-link.active {
    color: var(--accent);
}

.inner-banner {
    position: relative;
    padding: 9rem 1.5rem 3rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(20, 27, 42, 0.85) 0%, var(--bg-primary) 100%);
}

.inner-banner-container {
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span[aria-current='page'] {
    color: var(--accent);
}

.inner-banner-copy .section-title {
    max-width: 760px;
}

.inner-banner-copy .section-body {
    max-width: 680px;
    margin-bottom: 0;
}

.content-section {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
    background-color: var(--bg-primary);
}

.content-section-alt {
    background-color: var(--bg-secondary);
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.info-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
    border: 1px solid var(--border);
    background-color: rgba(11, 15, 23, 0.45);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card {
    border: 1px solid var(--border);
    background-color: rgba(11, 15, 23, 0.55);
    border-radius: 0.5rem;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-size: 1.05rem;
    margin: 1rem 1rem 0.5rem;
    text-transform: uppercase;
}

.product-card p {
    margin: 0 1rem 1.1rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

.section-actions {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.spec-card {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background-color: rgba(11, 15, 23, 0.45);
    padding: 1.5rem;
}

.spec-card h3 {
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.spec-card ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.spec-card li {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.55;
    padding-left: 1.2rem;
    position: relative;
}

.spec-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 1px;
    background-color: var(--accent);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.timeline-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: rgba(11, 15, 23, 0.45);
}

.timeline-step {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}

.timeline-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.map-wrapper {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    min-height: 380px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 98;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background-color: #25d366;
    color: #0b0f17;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-on-scroll.animated {
    animation: slideUp 0.6s ease forwards;
}

@media (max-width: 1024px) {
    .product-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid,
    .spec-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .inner-banner {
        padding: 7rem 1rem 2.5rem;
    }

    .content-section {
        padding: 3.5rem 1rem;
    }

    .info-grid,
    .info-grid-two,
    .product-preview-grid,
    .gallery-grid,
    .spec-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper,
    .map-wrapper iframe {
        min-height: 300px;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        font-size: 0.9rem;
    }
}
