:root {
    /* Typography */
    --font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;

    /* Base Neutrals & Dark Tones */
    --white: #ffffff;
    --white-semi: #ffffff88;
    --black: #000000;
    --charcoal-pure: #111111;
    --ink-dark: #0d1015;
    --ink: #12161c;
    --dark-navy: #0f172a;
    --charcoal: #111827;

    /* Slate & Gray Scale */
    --slate-900: #121212;
    --slate-850: #121212;
    --brand-navy: #1e3a5f;
    --steel: #121212;
    --slate-700: #121212;
    --steel-2: #121212;
    --slate: #000;
    --slate-600: #121212;
    --gray-600: #4b5563;
    --gray-slate: #222222;
    --slate-500: #222222;
    --gray-500: #222222;
    --gray-subtle: #727880;
    --slate-400: #94a3b8;
    --gray-400: #9aa5b1;
    --gray-muted: #a0a5ab;
    --gray-ash: #aab3bd;
    --gray-silver: #c3cbd4;
    --gray-mid: #cfcfcf;

    /* Borders & Dividers */
    --border-light: #cbd5e1;
    --border-gray: #d1d5db;
    --border-divider: #e2e8f0;
    --gray-200: #e5e7eb;
    --gray-border-alt: #eaeaea;

    /* Backgrounds & Paper Surfaces */
    --paper: #eef0f2;
    --paper-2: #e2e6ea;
    --bg-soft: #f1f5f9;
    --bg-cool-light: #f3f5f8;
    --bg-cool: #f4f6f9;
    --bg-cool-alt: #f6f8fb;
    --bg-slate: #f8fafc;
    --bg-blue-tint: #f0f7fb;

    /* Brand Primary, Deep Blues & Cyans */
    --yellow: #056e91;
    --yellow-deep: #07355c;
    --brand-cyan: #0284c7;
    --brand-deep: #0369a1;
    --brand-dark: #07476e;
    --brand-darker: #032b45;
    --brand-accent: #0ea5e9;
    --brand-hover: #078bb7;
    --brand-blue-deep: #084372;
    --cyan-light: #38bdf8;
    --cyan-pale: #7dd3fc;
    --cyan-sky-deep: #075985;

    /* Accent & Status Colors */
    --emerald: #10b981;
    --emerald-light: #34d399;
    --emerald-bg: #ecfdf5;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --whatsapp-glow: rgba(37, 211, 102, 0.35);
    --rose: #e11d48;
    --rose-light: #f87171;
    --red-danger: #ef4444;
    --red-dark: #dc2626;

    /* Translucent Overlays, Lines & Patterns */
    --line: rgba(255, 255, 255, 0.12);
    --line-dark: rgba(18, 22, 28, 0.12);
    --dot-grid-color: rgba(2, 132, 199, 0.09);
    --dot-grid-ctl: rgba(148, 163, 184, 0.30);
    --dot-grid-ctl-active: rgba(148, 163, 184, 0.32);

    /* Layout Tokens */
    --radius: 6px;

    /* Dynamic Gradients (Fully Bound to Root Color Variables) */
    --primary-gradient: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
    --primary-gradient-hover: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand-blue-deep) 100%);
    --primary-gradient-rev: linear-gradient(135deg, var(--yellow-deep) 0%, var(--yellow) 100%);
    --accent-gradient: linear-gradient(135deg, var(--brand-accent) 0%, var(--yellow) 50%, var(--yellow-deep) 100%);
    --card-gradient: linear-gradient(180deg, var(--white) 0%, var(--bg-slate) 100%);
    --card-gradient-hover: linear-gradient(180deg, var(--white) 0%, var(--bg-blue-tint) 100%);
    --dark-card-gradient: linear-gradient(165deg, rgba(20, 27, 38, 0.95) 0%, rgba(12, 16, 23, 0.98) 100%);
    --hero-overlay: linear-gradient(180deg, rgba(10, 14, 20, 0.90) 0%, rgba(13, 18, 26, 0.76) 45%, rgba(10, 14, 20, 0.94) 100%);
    --trust-gradient: linear-gradient(90deg, var(--slate-850) 0%, var(--steel) 50%, var(--slate-850) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    --text-gradient: linear-gradient(135deg, var(--white) 30%, var(--cyan-light) 100%);
    --text-gradient-brand: linear-gradient(135deg, var(--yellow) 0%, var(--cyan-light) 100%);

    /* Shadows & Glows */
    --glow-primary: 0 10px 25px -3px rgba(5, 110, 145, 0.45);
    --glow-subtle: 0 6px 18px rgba(5, 110, 145, 0.28);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 22px 45px -10px rgba(7, 53, 92, 0.22);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-sans);
    margin: 0;
    letter-spacing: -0.01em;
}

.m-auto {
    margin: auto;
}

.mono {
    font-family: var(--font-sans);
}

a {
    color: inherit;
    transition: var(--transition-smooth);
}

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

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- NAV (OVER HERO & DYNAMIC FULL-WIDTH SCROLL) ---------- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1360px;
    max-width: calc(100% - 40px);
    margin: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.5) 70%, transparent 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 50px;
    overflow: hidden;
    z-index: 100;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease,
        box-shadow 0.3s ease,
        border 0.3s ease;
}

header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 38px;
    max-width: 1360px;
    margin: 0 auto;
    background-color: var(--white-semi);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: padding 0.4s ease, max-width 0.4s ease, background-color 0.3s ease;
}

header.scrolled .nav {
    padding: 14px 28px;
    max-width: 1280px;
    background-color: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.brand {
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand:hover {
    transform: scale(1.02);
}

.brand small {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-top: 2px;
}

@media(max-width: 768px) {
    .brand {
        font-size: 20px;
    }
}

.nav-cta {
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 600;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 14.5px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--glow-subtle);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.nav-cta:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.nav-cta:hover::after {
    left: 140%;
}

/* ---------- HERO (VIDEO BACKGROUND + BLACK OPACITY OVERLAY) ---------- */
.hero {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(5, 10, 18, 0.72) 0%,
            rgba(5, 10, 18, 0.78) 50%,
            rgba(5, 10, 18, 0.92) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding: 130px 0 80px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.kicker {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan-light);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 7px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-light);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
    animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.7;
    }
}

.hero h1 {
    font-size: clamp(34px, 4.3vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--white);
    max-width: 640px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero p.lede {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 400;
    color: var(--border-light);
    max-width: 530px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-weight: 600;
    font-size: 15.5px;
    padding: 15px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--cyan-light);
    color: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.hero-stat-card {
    background: var(--slate);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--brand-cyan);
    padding: 14px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.hero-stat-card:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: var(--cyan-light);
    border-top-color: var(--cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.25);
}

.hero-stat-card b {
    display: block;
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-stat-card span {
    display: block;
    font-size: 11px;
    color: var(--paper);
    font-weight: 600;
    margin-top: 4px;
}

.hero-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo:hover img {
    transform: scale(1.03);
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    z-index: -1;
    pointer-events: none;
}

.hero-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(18, 22, 28, 0.88);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.03em;
    border-left: 3px solid var(--yellow);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ---------- LOGO / TRUST STRIP ---------- */
.trust {
    background-color: var(--yellow-deep);
    padding: 22px 0;
    border-top: 1px solid rgba(5, 110, 145, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--cyan-light), var(--yellow-deep), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
}

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 110, 145, 0.6);
    box-shadow: 0 10px 25px -5px rgba(5, 110, 145, 0.35);
}

.trust-card:hover::before {
    opacity: 0.12;
}

.trust-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(5, 110, 145, 0.15);
    border: 1px solid rgba(5, 110, 145, 0.4);
    color: var(--cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.trust-card:hover .trust-icon-box {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.08) rotate(4deg);
    box-shadow: var(--glow-subtle);
}

.trust-meta {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.trust-label {
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--slate-400);
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.trust-card:hover .trust-val {
    color: var(--cyan-pale);
}

.trust-phone-link {
    text-decoration: none;
    color: var(--white);
}

.trust-card-cta {
    background: rgba(5, 110, 145, 0.12);
    border-color: rgba(5, 110, 145, 0.35);
}

@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ---------- SECTION HEADERS ---------- */
.section {
    padding: 88px 0;
    position: relative;
}

.section.tight {
    padding: 64px 0;
}

.sec-head {
    margin-bottom: 48px;
}

.sec-eyebrow {
    font-family: var(--font-sans);
    font-size: 12.5px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: inline-block;
}

.sec-head h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.sec-head h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-head p {
    color: var(--slate);
    margin-top: 14px;
    font-size: 17px;
    max-width: 760px;
    line-height: 32px;
}

/* ==========================================================================
   PRODUCT SHOWCASE SECTIONS (EXACT EDITORIAL & FULL-WIDTH CAROUSEL)
   ========================================================================== */

.product-showcase-section {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Section 1: Herr Voss Slitter — Clean Architectural White */
.product-slitter-section {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

/* Section 2: KingJime CTL Line — Distinct Cool Steel Slate */
.product-ctl-section {
    background-color: var(--bg-cool-light);
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

/* Compact Editorial Block (Exact Match to User Image) */
.product-summary-block {
    max-width: 920px;
    margin-bottom: 36px;
}

.product-eyebrow-text {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.product-main-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 18px;
}

.product-brief-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 820px;
}

/* 2-Column Compact Specifications Grid (As in Image) */
.product-spec-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    margin-bottom: 34px;
    max-width: 820px;
}

.spec-col {
    display: flex;
    flex-direction: column;
}

.spec-line-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14.5px;
    line-height: 1.5;
}

.product-ctl-section .spec-line-item {
    border-bottom-color: var(--border-light);
}

.spec-prop {
    color: var(--gray-500);
    font-weight: 400;
}

.spec-val {
    color: var(--charcoal);
    font-weight: 700;
    text-align: right;
}

/* Product Action Buttons (As in Image) */
.product-btn-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn-product-enquire {
    background: var(--brand-dark);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(7, 71, 110, 0.2);
    transition: all 0.25s ease;
}

.btn-product-enquire:hover {
    background: var(--brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.btn-product-download {
    background: var(--white);
    color: var(--charcoal);
    border: 1.5px solid var(--border-gray);
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.25s ease;
}

.btn-product-download svg {
    flex-shrink: 0;
    color: var(--brand-dark);
}

.btn-product-download:hover {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
    background: var(--bg-slate);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   FULL SCREEN WIDTH CAROUSEL (WITHOUT DARK BACKGROUND)
   ========================================================================== */

.product-carousel-fullscreen {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 40px;
    box-sizing: border-box;
    background: transparent;
    margin-top: 40px;
}

.carousel-fluid-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.carousel-fluid-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-cyan);
    margin-bottom: 4px;
}

.carousel-fluid-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.carousel-fluid-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dual-carousel-counter {
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--slate-600);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    letter-spacing: 0.04em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.gallery-btn-group {
    display: flex;
    gap: 8px;
}

.dual-carousel-prev,
.dual-carousel-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dual-carousel-prev:hover,
.dual-carousel-next:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(7, 71, 110, 0.3);
}

.dual-carousel-prev:disabled,
.dual-carousel-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Dual Carousel Viewport & Track (2 slides visible at a time on desktop) */
.dual-carousel-wrapper {
    position: relative;
    width: 100%;
}

.dual-carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.dual-carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.dual-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
    box-sizing: border-box;
}

/* Slide Media Box with Clean Modern Presence */
.slide-media-box {
    position: relative;
    height: 440px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--border-divider);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px -6px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.slide-media-box img,
.slide-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-media-box:hover img,
.slide-media-box:hover video {
    transform: scale(1.035);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 22px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 26, 0.78) 60%, rgba(10, 15, 26, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.slide-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
    background: rgba(2, 132, 199, 0.28);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.slide-caption h4 {
    color: var(--white);
    font-size: 15.5px;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Aesthetic View & Video Action Buttons */
.slide-aesthetic-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.slide-aesthetic-zoom svg {
    flex-shrink: 0;
    stroke: var(--cyan-light);
    transition: transform 0.3s ease;
}

.slide-aesthetic-zoom:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.slide-aesthetic-zoom:hover svg {
    stroke: var(--white);
    transform: scale(1.15);
}

.slide-aesthetic-video {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: var(--brand-cyan);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
}

.slide-aesthetic-video:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

/* Dots Pagination */
.dual-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dual-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.dual-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--brand-dark);
    box-shadow: 0 2px 8px rgba(7, 71, 110, 0.3);
}

/* Global Lightbox Modal for Inspection */
.global-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-photo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-dimmer {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 18, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-frame {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-frame img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-dismiss-btn {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-dismiss-btn:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    transform: scale(1.1);
}

/* About Section */
.about-section {
    background: var(--white);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.about-section {
    background: var(--white);
    padding: 96px 0;
    position: relative;
    border-bottom: 1px solid var(--border-divider);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: stretch;
}

/* Image Composition */
.about-images {
    position: relative;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    padding-bottom: 44px;
    padding-right: 44px;
}

.about-img-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    height: 500px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.14), 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-divider);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.about-facility-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tag-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: pulse-dot 2s infinite ease-in-out;
}

.about-img-sub {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 75%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.22), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-sub:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 124px;
    left: -20px;
    background: var(--white);
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border: 1px solid var(--border-divider);
    border-left: 4px solid var(--brand-cyan);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.about-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(2, 132, 199, 0.2);
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(3, 105, 161, 0.18) 100%);
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-badge-text b {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.15;
}

.about-badge-text span {
    font-size: 11.5px;
    color: var(--slate-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Right Content */

.about-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.about-content h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead {
    color: var(--slate-600);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* 2x2 Capabilities Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-card {
    background: var(--bg-slate);
    border: 1px solid var(--border-divider);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.about-card:hover {
    background: var(--white);
    border-color: var(--brand-cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(2, 132, 199, 0.15);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--brand-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.08);
}

.about-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 5px;
    line-height: 1.3;
}

.about-card p {
    color: var(--slate-500);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

/* Checklist */
.about-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 16px 20px;
    background: var(--bg-slate);
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border-divider);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate-900);
}

/* CTA Row */
.about-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-ghost-dark {
    background: var(--white);
    color: var(--slate-900);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1.5px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-ghost-dark:hover {
    background: var(--bg-slate);
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.prod-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    box-shadow: var(--glow-subtle);
    z-index: 2;
}

/* Video slide overlay */
.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(18, 22, 28, 0.85);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 15;
    transition: var(--transition-smooth);
    backdrop-filter: blur(6px);
}

.video-play-overlay-btn:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: var(--glow-primary);
}

.thumb-item.thumb-video-icon {
    position: relative;
    background: var(--black);
}

.thumb-item.thumb-video-icon video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-vid-badge {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ---------- WHY US ---------- */
.why-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-cool);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.why-section .wrap {
    position: relative;
    z-index: 2;
}

/* Minimal Industrial Background Animation */
.why-bg-graphics {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.why-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--dot-grid-color) 1.2px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.8;
}

.why-gear {
    position: absolute;
    color: var(--brand-cyan);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.why-gear-primary {
    top: -90px;
    right: -70px;
    width: 440px;
    height: 440px;
    opacity: 0.16;
    animation: why-gear-rotate 75s linear infinite;
    transform-origin: center center;
}

.why-gear-secondary {
    bottom: -80px;
    left: -60px;
    width: 340px;
    height: 340px;
    opacity: 0.13;
    animation: why-gear-rotate-reverse 60s linear infinite;
    transform-origin: center center;
}

@keyframes why-gear-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes why-gear-rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Minimal Horizontal Slit Beam Tracker */
.why-slit-beam {
    position: absolute;
    left: 0;
    right: 0;
    top: 35%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(2, 132, 199, 0.02) 15%,
            rgba(56, 189, 248, 0.28) 50%,
            rgba(2, 132, 199, 0.02) 85%,
            transparent 100%);
    animation: why-slit-glide 12s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes why-slit-glide {
    0% {
        top: 25%;
        opacity: 0.3;
        transform: scaleX(0.85);
    }

    50% {
        top: 55%;
        opacity: 0.65;
        transform: scaleX(1);
    }

    100% {
        top: 75%;
        opacity: 0.3;
        transform: scaleX(0.85);
    }
}

.why-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .why-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-capability-card {
    background: var(--card-gradient);
    border-radius: 16px;
    padding: 26px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.why-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(5, 110, 145, 0.3);
}

.why-capability-card:hover::before {
    opacity: 1;
}

.card-top-content {
    position: relative;
    padding-right: 25px;
    margin-bottom: 24px;
}

.why-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--glow-subtle);
    transition: var(--transition-smooth);
}

.why-capability-card:hover .why-icon-badge {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--glow-primary);
}

.why-capability-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--charcoal-pure);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.why-capability-card:hover h4 {
    color: var(--yellow);
}

.why-capability-card p {
    font-size: 16px;
    color: var(--gray-slate);
    line-height: 30px;
    margin: 0;
}

.why-card-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-border-alt);
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-capability-card:hover .why-card-img img {
    transform: scale(1.08);
}

/* ---------- LEAD FORM / HERO FORM ---------- */
.lead {
    background: var(--ink);
    color: var(--white);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead h2 {
    color: var(--white);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    max-width: 460px;
}

.lead p {
    color: var(--gray-ash);
    margin-top: 16px;
    font-size: 15.5px;
    max-width: 440px;
}

.lead-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-points div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--gray-silver);
    transition: var(--transition-smooth);
}

.lead-points div:hover {
    transform: translateX(4px);
    color: var(--white);
}

.lead-points div::before {
    content: '';
    min-width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    margin-top: 6px;
    box-shadow: 0 0 8px var(--yellow);
}

form.card.hero-form {
    background: var(--paper);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 3.5px solid var(--brand-cyan);
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.65),
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    transition: var(--transition-smooth);
}

form.card.hero-form:hover {
    border-color: rgba(255, 255, 255, 0.28);
    border-top-color: var(--cyan-light);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(2, 132, 199, 0.25);
}

.hero-form-eyebrow {
    color: var(--cyan-light) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 8px;
    display: inline-block;
}

.hero-form-title {
    color: var(--ink) !important;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

form.card .field {
    margin-bottom: 18px;
    position: relative;
}

form.card.hero-form label {
    display: block;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 7px;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    font-weight: 600;
}

.required-star {
    color: var(--rose);
    font-weight: 700;
}

form.card.hero-form input,
form.card.hero-form select,
form.card.hero-form textarea {
    width: 100%;
    background: var(--gray-mid);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: var(--ink);
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}

form.card.hero-form select option {
    background: var(--dark-navy);
    color: var(--white);
}

form.card.hero-form input::placeholder,
form.card.hero-form textarea::placeholder {
    color: var(--slate-500);
    opacity: 1;
}

form.card.hero-form input:focus,
form.card.hero-form select:focus,
form.card.hero-form textarea:focus {
    outline: none;
    border-color: var(--cyan-light);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
    background: rgba(255, 255, 255, 0.14);
    color: var(--ink);
}

/* Valid & Invalid States */
form.card.hero-form input.is-invalid,
form.card.hero-form select.is-invalid {
    border-color: var(--rose-light) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
    background: rgba(239, 68, 68, 0.12) !important;
    color: var(--ink) !important;
}

form.card.hero-form input.is-valid {
    border-color: var(--emerald-light) !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important;
    background: rgba(16, 185, 129, 0.12) !important;
    color: var(--ink) !important;
}

form.card.hero-form .form-fine {
    color: var(--ink);
    font-size: 12px;
    margin-top: 14px;
    text-align: center;
    line-height: 1.4;
}

form.card.hero-form .form-success-card {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--white);
}

form.card.hero-form .form-success-card h3 {
    color: var(--white);
}

form.card.hero-form .form-success-card p {
    color: var(--border-light);
}

.field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--red-dark);
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0;
    max-height: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.field-error.visible {
    opacity: 1;
    max-height: 48px;
    transform: translateY(0);
}

form.card textarea {
    resize: vertical;
    min-height: 80px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.field-row .field {
    margin-bottom: 0;
}

form.card button {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 15.5px;
    padding: 16px;
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

form.card button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

form.card button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--cyan-sky-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
}

form.card button:hover:not(:disabled):after {
    left: 140%;
}

form.card button:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: btn-spin 0.75s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.form-fine {
    font-size: 12px;
    color: var(--slate-500);
    margin-top: 14px;
    text-align: center;
}

/* Success Confirmation State */
.form-body-wrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-body-wrapper.hidden {
    display: none;
}

.form-success-card {
    text-align: center;
    padding: 24px 12px;
    animation: successFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--emerald-bg);
    border: 2px solid var(--emerald);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.form-success-card h3 {
    color: var(--dark-navy);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.form-success-card p {
    color: var(--slate-600);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-success-reset {
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    color: var(--dark-navy);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-success-reset:hover {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--glow-subtle);
    transform: translateY(-2px);
}

/* ---------- TESTIMONIAL CAROUSEL ---------- */
.testimonials-section {
    background-image: url('../img/bg1.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow-deep);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.testimonials-section .wrap {
    position: relative;
    z-index: 2;
}

.flexy {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.testimonial-carousel-wrap {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 52px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    display: inline-block;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-700);
    margin-bottom: 26px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    box-shadow: var(--glow-subtle);
}

.client-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal-pure);
    margin: 0 0 2px 0;
}

.client-info span {
    font-size: 13px;
    color: var(--slate-500);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.testi-btn {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.testi-btn:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--glow-subtle);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testi-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testi-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 6px;
    box-shadow: 0 0 8px var(--yellow);
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    background-image: url('../img/pro2/pic5.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 18, 0.82);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.faq-section .wrap {
    position: relative;
    z-index: 2;
}

.text-white {
    color: var(--white) !important;
}

.faq-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(18, 22, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(5, 110, 145, 0.5);
    transform: translateX(4px);
    background: rgba(18, 22, 28, 0.85);
}

.faq-item.active {
    border-color: var(--yellow);
    background: rgba(18, 22, 28, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 15px rgba(5, 110, 145, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    text-align: left;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--cyan-pale);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(180deg);
    box-shadow: var(--glow-subtle);
}

.faq-answer {
    padding: 0 26px 22px 26px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInAnswer 0.3s ease;
}

@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: 15px;
    color: var(--border-light);
    line-height: 1.65;
    margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background-color: var(--ink-dark);
    color: var(--gray-muted);
    font-family: var(--font-sans);
    padding-top: 80px;
    position: relative;
    border-top: 1px solid var(--line);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-col .footer-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 30px;
    max-width: 420px;
    letter-spacing: -0.01em;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--glow-primary);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.footer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.footer-btn:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(5, 110, 145, 0.55);
}

.footer-btn:hover::after {
    left: 140%;
}

.footer-btn svg {
    transition: transform 0.3s ease;
}

.footer-btn:hover svg {
    transform: translateX(4px);
}

.footer-heading {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: var(--text-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-menu,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a,
.footer-contact-list a {
    color: var(--gray-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-menu a:hover,
.footer-contact-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.footer-contact-list li:hover {
    transform: translateX(4px);
}

.footer-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(5, 110, 145, 0.15);
    border: 1px solid rgba(5, 110, 145, 0.4);
    color: var(--cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-contact-list li:hover .footer-icon-box {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.08) rotate(4deg);
    box-shadow: var(--glow-subtle);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-text span,
.footer-contact-text a {
    color: var(--border-light);
    transition: color 0.2s ease;
}

.footer-contact-text a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 25px 40px;
}

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

.copyright {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--gray-subtle);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: var(--glow-subtle);
    border-color: transparent;
}

.back-to-top {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 46px;
    height: 46px;
    background: var(--primary-gradient);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    transition: var(--transition-smooth);
}

.back-to-top:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-4px) scale(1.08);
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    display: none;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.45);
}

.sticky-cta .sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 12px;
    border-radius: var(--radius);
    text-decoration: none;
    line-height: 1;
    transition: var(--transition-smooth);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.sticky-cta .sticky-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* Call button */
.sticky-cta .sticky-btn-call {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 11px 14px;
}

.sticky-cta .sticky-btn-call:hover,
.sticky-cta .sticky-btn-call:active {
    background: rgba(255, 255, 255, 0.20);
    color: var(--white);
    transform: translateY(-2px);
}

/* WhatsApp button */
.sticky-cta .sticky-btn-whatsapp {
    flex: 1;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px var(--whatsapp-glow);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sticky-cta .sticky-btn-whatsapp:hover,
.sticky-cta .sticky-btn-whatsapp:active {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Enquire Now button */
.sticky-cta .sticky-btn-enquire {
    flex: 1.15;
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--glow-primary);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.sticky-cta .sticky-btn-enquire:hover,
.sticky-cta .sticky-btn-enquire:active {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
}

@media (max-width: 380px) {
    .sticky-cta {
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
    }

    .sticky-cta .sticky-btn {
        font-size: 12px;
        padding: 10px 8px;
        gap: 5px;
    }

    .sticky-cta .sticky-btn-call {
        padding: 10px 10px;
    }

    .sticky-cta .sticky-btn-call span {
        display: none;
    }
}

/* ---------- ON-SCROLL FADE-IN & REVEAL SYSTEM ---------- */
[data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"] {
    transform: translateY(36px);
}

[data-reveal="fade-down"] {
    transform: translateY(-36px);
}

[data-reveal="fade-left"] {
    transform: translateX(40px);
}

[data-reveal="fade-right"] {
    transform: translateX(-40px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.92);
}

/* When in viewport */
[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger Delays */
[data-reveal-delay="50"] {
    transition-delay: 50ms;
}

[data-reveal-delay="100"] {
    transition-delay: 100ms;
}

[data-reveal-delay="150"] {
    transition-delay: 150ms;
}

[data-reveal-delay="200"] {
    transition-delay: 200ms;
}

[data-reveal-delay="250"] {
    transition-delay: 250ms;
}

[data-reveal-delay="300"] {
    transition-delay: 300ms;
}

[data-reveal-delay="350"] {
    transition-delay: 350ms;
}

[data-reveal-delay="400"] {
    transition-delay: 400ms;
}

[data-reveal-delay="500"] {
    transition-delay: 500ms;
}

/* Accessibility fallback */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 40px 20px;
    }

    .footer-cta-col .footer-title {
        font-size: 30px;
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .back-to-top {
        right: 20px;
    }
}

@media (max-width: 900px) {
    .flexy {
        flex-direction: column;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: auto;
        min-height: unset;
        padding-right: 30px;
        padding-bottom: 60px;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-img-main {
        width: 88%;
        height: auto;
        min-height: unset;
    }

    .about-img-main img {
        height: 340px;
    }

    .about-img-sub {
        width: 55%;
        height: auto;
    }

    .about-img-sub img {
        height: 190px;
    }

    .about-badge {
        left: 0;
        bottom: 12px;
        top: auto;
        right: auto;
        padding: 10px 16px;
    }

    .about-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .faq-container {
        margin: 0 auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 150px 20px 40px;
    }

    .hero-photo img {
        height: 320px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-header-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-showcase-section {
        padding: 60px 0 70px;
    }

    .dual-slide {
        flex: 0 0 100%;
    }

    .slide-media-box {
        height: 300px;
    }

    .gallery-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .gallery-nav-controls {
        width: 100%;
        justify-content: space-between;
    }

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

    .lead-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .mini-specs {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel-wrap {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 14.5px;
        margin-bottom: 20px;
    }

    .testimonial-controls {
        margin-top: 18px;
    }
}

@media (max-width: 640px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-checklist {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .about-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .about-cta-row a {
        width: 100%;
        text-align: center;
    }

    .about-images {
        padding-right: 15px;
        padding-bottom: 50px;
    }

    .about-img-main img {
        height: 280px;
    }

    .about-img-sub {
        width: 62%;
        height: auto;
        bottom: 10px;
    }

    .about-img-sub img {
        height: 160px;
    }

    .about-badge {
        bottom: 8px;
        left: 0;
        padding: 8px 12px;
        gap: 10px;
    }

    .about-badge-icon {
        width: 36px;
        height: 36px;
    }

    .about-badge-text b {
        font-size: 17px;
    }

    .about-badge-text span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero h1 {
        font-size: 30px;
    }

    form.card {
        padding: 24px 18px;
    }
}

/* ==========================================================================
   PRODUCT SHOWCASE SECTIONS: COMPACT CLEAN LAYOUT & FULL-WIDTH CAROUSEL
   ========================================================================== */

.product-showcase-section {
    position: relative;
    padding: 76px 0 68px;
    background-image: radial-gradient(circle, var(--dot-grid-ctl-active) 1.25px, transparent 1.25px);
    background-size: 26px 26px;
}

.product-slitter-section {
    background-color: var(--white);
    background-image: radial-gradient(circle, var(--dot-grid-ctl) 1.25px, transparent 1.25px);
    background-size: 26px 26px;
    border-bottom: 1px solid var(--border-divider);
}

.product-ctl-section {
    background-color: var(--bg-cool-alt);
    background-image: radial-gradient(circle, var(--dot-grid-ctl) 1.25px, transparent 1.25px);
    background-size: 26px 26px;
    border-bottom: 1px solid var(--border-divider);
}

/* ==========================================================================
   2-COLUMN SPLIT HERO (LEFT: INFO, RIGHT: SPECS & ACTIONS)
   ========================================================================== */

.product-split-hero {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 44px;
}

.product-split-left {
    display: flex;
    flex-direction: column;
    padding-top: 6px;
}

.product-eyebrow-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-navy);
    margin-bottom: 12px;
}

.product-main-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.product-main-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.product-brief-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-600);
    margin: 0;
}

/* Right Side Technical Specification Box */
.product-split-right {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(203, 213, 225, 0.8);
    border-radius: 14px;
    padding: 26px 30px 24px;
    box-shadow: 0 6px 24px -4px rgba(15, 23, 42, 0.06);
}

.product-ctl-section .product-split-right {
    background: rgba(255, 255, 255, 0.95);
}

/* Compact 2-Column Spec Table with Clean Horizontal Dividers */
.product-spec-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 44px;
    margin-bottom: 24px;
}

.spec-col {
    display: flex;
    flex-direction: column;
}

.spec-line-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-divider);
    font-size: 13.5px;
}

.spec-prop {
    color: var(--slate-500);
    font-weight: 500;
}

.spec-val {
    color: var(--dark-navy);
    font-weight: 700;
    text-align: right;
}

/* Action Buttons inside right column */
.product-btn-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.btn-product-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-dark);
    color: var(--white);
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(7, 71, 110, 0.25);
    border: 1px solid transparent;
}

.btn-product-enquire:hover {
    background: var(--brand-darker);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 71, 110, 0.35);
}

.btn-product-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: var(--white);
    color: var(--dark-navy);
    font-size: 14.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-product-download svg {
    color: var(--brand-cyan);
    transition: transform 0.25s ease;
}

.btn-product-download:hover {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
    background: var(--bg-slate);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(7, 71, 110, 0.12);
}

.btn-product-download:hover svg {
    transform: translateY(2px);
}

/* ==========================================================================
   FULL-WIDTH SWIPER CAROUSEL (NO DARK CONTAINER)
   ========================================================================== */

.product-carousel-fullscreen {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 24px 48px 12px;
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel-fluid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1360px;
    margin: 0 auto 20px;
    padding: 0 8px;
}

.carousel-fluid-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 4px;
}

.carousel-fluid-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
}

.carousel-fluid-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dual-carousel-counter {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-500);
    letter-spacing: 0.05em;
}

.gallery-btn-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dual-carousel-prev,
.dual-carousel-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--slate-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dual-carousel-prev:hover:not(.swiper-button-disabled),
.dual-carousel-next:hover:not(.swiper-button-disabled) {
    background: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(7, 71, 110, 0.3);
}

.dual-carousel-prev.swiper-button-disabled,
.dual-carousel-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    background: var(--bg-soft);
    color: var(--slate-400);
    border-color: var(--border-divider);
}

/* Swiper Container */
.swiper-slitter,
.swiper-ctl {
    max-width: 1360px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.swiper-slide {
    height: auto;
    user-select: none;
}

.slide-media-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 380px;
    background: var(--dark-navy);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.slide-media-box img,
.slide-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-media-box:hover img {
    transform: scale(1.04);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px 20px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
    color: var(--white);
    pointer-events: none;
}

.slide-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.slide-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-slate);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Aesthetic Capsule Inspect / Zoom Button */
.slide-aesthetic-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.slide-aesthetic-zoom svg {
    color: var(--cyan-light);
    transition: transform 0.25s ease;
}

.slide-aesthetic-zoom:hover {
    background: rgba(7, 71, 110, 0.95);
    border-color: var(--cyan-light);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
}

.slide-aesthetic-zoom:hover svg {
    transform: scale(1.15);
}

/* Aesthetic Capsule Video Demo Button */
.slide-aesthetic-video {
    width: fit-content;
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(7, 71, 110, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(7, 71, 110, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.slide-aesthetic-video svg {
    color: var(--cyan-light);
}

.slide-aesthetic-video:hover {
    background: var(--brand-cyan);
    border-color: var(--cyan-pale);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

/* Swiper Dots Pagination */
.swiper-dots-clean {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.swiper-dots-clean .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border-light);
    opacity: 1;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.swiper-dots-clean .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--brand-cyan);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
}

/* Lightbox Modal */
.global-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-photo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-dimmer {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-frame {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-frame img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lightbox-dismiss-btn {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-navy);
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.lightbox-dismiss-btn:hover {
    background: var(--red-danger);
    color: var(--white);
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR PRODUCT SHOWCASE
   ========================================================================== */

@media (max-width: 991px) {
    .product-split-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-carousel-fullscreen {
        padding: 20px 24px 10px;
    }

    .slide-media-box {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .product-showcase-section {
        padding: 50px 0 40px;
    }

    .product-split-right {
        padding: 20px 18px;
    }

    .product-spec-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-carousel-fullscreen {
        padding: 16px 16px 10px;
    }

    .slide-media-box {
        height: 290px;
    }

    .carousel-fluid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .carousel-fluid-nav {
        width: 100%;
        justify-content: space-between;
    }

    .product-btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-product-enquire,
    .btn-product-download {
        width: 100%;
        text-align: center;
    }
}