:root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent-primary: #0ea5e9;
    /* Vibrant Cyan/Teal */
    --accent-secondary: #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.4);
    --dark-surface: #0f172a;
    --dark-text: #f1f5f9;

    --font-main: 'Montserrat', system-ui, sans-serif;
    --font-heading: 'Montserrat', system-ui, sans-serif;

    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 100px;

    --shadow-float: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 40px var(--accent-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.py-section {
    padding: 5rem 0;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-center {
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--text-main);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid rgba(15, 23, 42, 0.1);
}

.btn-outline:hover {
    background-color: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-accent {
    background-color: var(--accent-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    background-color: var(--accent-secondary);
    transform: scale(1.05);
}

/* HEADER & NAVBAR (Arch-Premium Dark Glass) */
.top-bar {
    display: none;
}

/* Premium Dark Header */
.site-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 999;
    background: rgba(5, 13, 31, 0.85);
    /* Midnight Navy glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(2, 132, 199, 0.2);
    /* Subtle Gold border */
    border-radius: 4px;
    /* Architectural sharp edges */
    transition: var(--transition-fast);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.navbar-brand img {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    color: #e2e8f0;
    /* Light premium text */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #0284c7;
    /* Amber Gold active/hover state */
}

.btn-quote {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #fff !important;
    border: none;
    border-radius: 3px !important;
    padding: 0.8rem 1.8rem !important;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3) !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5) !important;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* HERO SECTION (Immersive Overlap) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    background-color: var(--bg-main);
}

.hero-graphic {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 60%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    z-index: 1;
}

.hero-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    100% {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 65%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-float);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--text-main);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 500px;
    margin: 2rem 0;
    color: var(--text-muted);
}

.hero-content h1 span {
    color: var(--accent-primary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* BENTO BOX GRID (For Features & Categories) */
.bento-section {
    background: var(--bg-main);
}

.bento-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.span-2-row {
    grid-row: span 2;
}

.bento-card.dark {
    background: var(--dark-surface);
    color: var(--dark-text);
}

.bento-card.dark h2,
.bento-card.dark h3 {
    color: #fff;
}

.bento-card.dark p {
    color: #94a3b8;
}

.bento-card.accent {
    background: var(--accent-primary);
    color: #fff;
}

.bento-card.accent h2,
.bento-card.accent h3,
.bento-card.accent p {
    color: #fff;
}

.bento-card.image-card {
    padding: 0;
    border: none;
}

.bento-card.image-card img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.bento-card:hover.image-card img {
    transform: scale(1.05);
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    background: rgba(14, 165, 233, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bento-card.dark .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bento-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bento-card p {
    font-size: 1.05rem;
}

/* TECH SPECS (Modern Stacking) */
.tech-container {
    background: var(--dark-surface);
    border-radius: var(--radius-xl);
    padding: 6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tech-container h2 {
    color: #fff;
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.modern-layers {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.m-layer {
    position: absolute;
    width: 80%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-slow);
}

/* Staggering the visual layers */
.m-layer:nth-child(1) {
    top: 0;
    left: 0%;
    z-index: 5;
    transform: translateZ(100px);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.m-layer:nth-child(2) {
    top: 70px;
    left: 5%;
    z-index: 4;
    transform: translateZ(80px);
    background: rgba(2, 132, 199, 0.8);
}

.m-layer:nth-child(3) {
    top: 140px;
    left: 10%;
    z-index: 3;
    transform: translateZ(60px);
    background: #334155;
}

.m-layer:nth-child(4) {
    top: 210px;
    left: 15%;
    z-index: 2;
    transform: translateZ(40px);
    background: rgba(14, 165, 233, 0.6);
}

.m-layer:nth-child(5) {
    top: 280px;
    left: 20%;
    z-index: 1;
    transform: translateZ(20px);
    background: #0f172a;
    border-color: #334155;
}

.tech-container:hover .m-layer {
    transform: translateZ(0) !important;
    left: 10% !important;
}

.tech-container:hover .m-layer:nth-child(1) {
    top: 0;
}

.tech-container:hover .m-layer:nth-child(2) {
    top: 130px;
}

.tech-container:hover .m-layer:nth-child(3) {
    top: 260px;
}

.tech-container:hover .m-layer:nth-child(4) {
    top: 390px;
}

.tech-container:hover .m-layer:nth-child(5) {
    top: 520px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
}

.spec-list li span:last-child {
    font-weight: 600;
    color: var(--accent-primary);
}

/* FOOTER (Oversized Modern) */
.modern-footer {
    background: var(--bg-main);
    padding: 8rem 0 3rem;
}

.footer-top {
    text-align: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-top h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* GLOBALS FOR OTHER PAGES */
.page-header {
    background: var(--bg-main);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(4rem, 8vw, 7rem);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-graphic {
        width: 50%;
    }

    .hero-content {
        width: 75%;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        width: 95%;
        top: 1rem;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 2rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-float);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
        margin-right: 1rem;
    }

    .hero-section {
        padding-top: 8rem;
        align-items: flex-start;
        height: auto;
        padding-bottom: 3rem;
    }

    .hero-graphic {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        right: 0;
        margin-bottom: 2rem;
        border-radius: var(--radius-md);
    }

    .hero-content {
        width: 100%;
        padding: 2rem;
        backdrop-filter: none;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .bento-card.span-2-row {
        grid-row: span 1;
    }

    .tech-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-container {
        padding: 3rem;
        border-radius: var(--radius-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content img {
    height: 80px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* MARQUEE ANIMATION */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

/* =========================================
   ARCHITECTURAL HIGH-END REDESIGN (HOMEPAGE)
   ========================================= */

/* Typography & Utilities */
.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.section-label-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.bg-dark {
    background-color: var(--dark-surface);
    color: #fff;
}

.text-light {
    color: #fff;
}

.bg-light-gray {
    background-color: #f1f5f9;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn-solid-white {
    background: #fff;
    color: #0f172a;
    border-radius: var(--radius-pill);
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    border: none;
    transition: var(--transition-fast);
}

.btn-solid-white:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background: #fff;
    color: #0f172a;
}

.btn-solid-dark {
    background: #0f172a;
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.btn-solid-dark:hover {
    background: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

/* Hero Section */
.modern-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Optional zoom effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    color: #fff;
}

.hero-overline {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cbd5e1;
    display: block;
    margin-bottom: 2rem;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--accent-primary);
}

.hero-content p {
    color: #cbd5e1;
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Clientele Minimal */
.py-small {
    padding: 3rem 0;
}

.clientele-minimal {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-track-minimal {
    display: flex;
    gap: 6rem;
    padding: 1rem 0;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-track-minimal h3 {
    font-size: 1.5rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Why Choose Us Editorial */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.editorial-image img {
    height: 800px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.editorial-content h2 {
    margin-bottom: 4rem;
}

.feature-item {
    margin-bottom: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Product Display Editorial */
.products-editorial {
    padding: 8rem 0;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item .img-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.item-meta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.item-meta p {
    color: #94a3b8;
}

/* Tech Specs Clean */
.tech-specs-clean {
    padding: 8rem 0;
    background: var(--bg-surface);
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.specs-intro p {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.minimal-table {
    width: 100%;
    border-collapse: collapse;
}

.minimal-table td,
.minimal-table strong {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: table-cell;
    font-size: 1.1rem;
}

.minimal-table strong {
    text-align: right;
    color: var(--text-main);
}

.minimal-table td {
    color: var(--text-muted);
}

/* Testimonials Editorial */
.testimonials-editorial {
    padding: 8rem 0;
}

.large-quote {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 3rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact Split Screen */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-side {
    background: #fff;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.contact-sub {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0;
    font-family: var(--font-main);
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
    color: var(--text-main);
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    border-bottom-color: var(--text-main);
}

.contact-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.contact-footer strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.contact-footer span {
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .editorial-grid,
    .tech-specs-grid,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .editorial-image img {
        height: 500px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .contact-image {
        display: none;
    }
}

/* ==============================================
   PREMIUM HOMEPAGE REDESIGN V3 — FULL SECTIONS
   ============================================== */

/* ---- Shared utilities ---- */
.hp-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
}

.hp-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 2px;
    background: var(--accent-primary);
}

.hp-label--light {
    color: #94a3b8;
}

.hp-label--light::before {
    background: #94a3b8;
}

.hp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.hp-section-head--center {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hp-section-head__title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ---- Buttons ---- */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hp-btn--white {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

.hp-btn--white:hover {
    background: transparent;
    color: #fff;
}

.hp-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hp-btn--ghost:hover {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

.hp-btn--dark {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.hp-btn--dark:hover {
    background: transparent;
    color: #0f172a;
}

.hp-btn--accent {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.hp-btn--accent:hover {
    background: transparent;
    color: var(--accent-primary);
}

/* ------------------------------------------------
   SECTION 1: HERO
   ------------------------------------------------ */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
}

.hp-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(8, 15, 30, 0.92) 0%,
            rgba(10, 20, 40, 0.75) 45%,
            rgba(0, 0, 0, 0.3) 100%);
}

.hp-hero__badges {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.hp-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.hp-badge i {
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.hp-hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding-top: 6rem;
}

.hp-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.hp-hero__heading {
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 2.5rem;
}

.hp-hero__heading em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.7);
}

.hp-hero__sub {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hp-hero__cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hp-hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hp-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        height: 40px;
    }

    50% {
        opacity: 1;
        height: 70px;
    }
}

/* ------------------------------------------------
   SECTION 2: STATS
   ------------------------------------------------ */
.hp-stats {
    background: #0f172a;
    padding: 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hp-stat {
    text-align: center;
    padding: 2rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-stat:last-child {
    border-right: none;
}

.hp-stat__num {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hp-stat__suffix {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-primary);
}

.hp-stat p {
    color: #64748b;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ------------------------------------------------
   SECTION 3: WHY CHOOSE US
   ------------------------------------------------ */
.hp-why {
    padding: 10rem 0;
    background: #fff;
}

.hp-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.hp-why__media {
    position: relative;
}

.hp-why__media img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px;
}

.hp-why__media-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--accent-primary);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.hp-why__media-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hp-why__media-badge strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.hp-why__media-badge span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.hp-why__body h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hp-why__intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hp-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

.hp-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hp-feature:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hp-feature__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-primary);
}

.hp-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.hp-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ------------------------------------------------
   SECTION 4: MARQUEE
   ------------------------------------------------ */
.hp-marquee {
    background: #f8fafc;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hp-marquee__header {
    display: flex;
    align-items: center;
    gap: 0rem;
    margin-bottom: 2.5rem;
}

.hp-marquee__header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.hp-marquee__track-wrap {
    overflow: hidden;
}

.hp-marquee__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: scrollMarquee 35s linear infinite;
}

.hp-marquee__track span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.18;
    flex-shrink: 0;
}

.hp-dot {
    color: var(--accent-primary) !important;
    opacity: 0.6 !important;
    font-size: 0.6rem !important;
}

/* ------------------------------------------------
   SECTION 5: PRODUCTS
   ------------------------------------------------ */
.hp-products {
    background: #0f172a;
    padding: 10rem 0;
}

.hp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.hp-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 350px;
}

.hp-product-card--tall {
    grid-row: span 2;
    height: auto;
}

.hp-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hp-product-card:hover img {
    transform: scale(1.08);
}

.hp-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
}

.hp-product-card:hover .hp-product-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.hp-product-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.hp-product-card__overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hp-product-card__overlay p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.hp-product-card__link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.hp-product-card:hover .hp-product-card__link {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------
   SECTION 6: TECH SPECS (DARK)
   ------------------------------------------------ */
.hp-specs {
    background: #020617;
    padding: 10rem 0;
}

.hp-specs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.hp-specs__left h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hp-specs__left p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-spec-row span {
    color: #64748b;
    font-size: 1rem;
}

.hp-spec-row strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

/* ------------------------------------------------
   SECTION 7: TESTIMONIALS
   ------------------------------------------------ */
.hp-testimonials {
    background: #fff;
    padding: 10rem 0;
}

.hp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.hp-tcard {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.hp-tcard--accent {
    background: var(--accent-primary);
    border-color: transparent;
}

.hp-tcard--accent .hp-tcard__quote,
.hp-tcard--accent p,
.hp-tcard--accent strong,
.hp-tcard--accent span {
    color: #fff;
}

.hp-tcard__quote {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.hp-tcard--accent .hp-tcard__quote {
    color: #fff;
    opacity: 0.3;
}

.hp-tcard p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 2rem;
    font-style: italic;
}

.hp-tcard__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.hp-tcard--accent .hp-tcard__author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.hp-tcard__avatar {
    width: 48px;
    height: 48px;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hp-tcard--accent .hp-tcard__avatar {
    background: rgba(255, 255, 255, 0.2);
}

.hp-tcard__author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.hp-tcard__author span {
    font-size: 0.85rem;
    color: #64748b;
}

/* ------------------------------------------------
   SECTION 8: CONTACT SPLIT
   ------------------------------------------------ */
.hp-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 900px;
}

.hp-contact__img-col {
    position: relative;
    overflow: hidden;
}

.hp-contact__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-contact__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

.hp-contact__img-overlay blockquote {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    border: none;
    margin: 0;
    padding: 0;
}

.hp-contact__form-col {
    background: #fff;
    padding: 7rem 6%;
    display: flex;
    align-items: center;
}

.hp-contact__form-inner {
    max-width: 600px;
    width: 100%;
}

.hp-contact__form-inner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

.hp-contact__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hp-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hp-form__field label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.hp-form__field input,
.hp-form__field textarea {
    padding: 1rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.25s;
    background: #f8fafc;
}

.hp-form__field input:focus,
.hp-form__field textarea:focus {
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.hp-contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hp-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.hp-contact__info-item i {
    font-size: 1.4rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.hp-contact__info-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-contact__info-item span {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ------------------------------------------------
   RESPONSIVE — PREMIUM SECTIONS
   ------------------------------------------------ */
@media (max-width: 1200px) {
    .hp-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-product-card--tall {
        grid-row: span 1;
        height: 350px;
    }

    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 1024px) {

    .hp-why__inner,
    .hp-specs__inner,
    .hp-contact {
        grid-template-columns: 1fr;
    }

    .hp-why {
        padding: 6rem 0;
    }

    .hp-why__media img {
        height: 500px;
    }

    .hp-why__media-badge {
        right: 1rem;
        bottom: -1.5rem;
    }

    .hp-contact__img-col {
        display: none;
    }

    .hp-contact__form-col {
        padding: 5rem 5%;
    }

    .hp-specs__inner {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .hp-hero__badges {
        display: none;
    }

    .hp-hero__heading {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hp-hero__cta {
        flex-direction: column;
    }

    .hp-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hp-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hp-form__row {
        grid-template-columns: 1fr;
    }

    .hp-marquee__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}