@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Infiniti Brand Colors */
    --brand:        #2E8FF0;   /* Primary Blue  */
    --brand-dark:   #06285C;   /* Deep Navy     */
    --brand-hover:  #1a7de0;
    --brand-light:  #eaf3fd;
    --accent:       #2E8FF0;
    --bg-main:      #F5F7FA;   /* White / Light Gray */
    --bg-white:     #ffffff;
    --text-primary: #06285C;
    --text-muted:   #6b7a99;
    --border-color: #e2e8f0;
    
    /* Effects */
    --shadow-sm: 0 2px 4px rgba(6,40,92,0.06);
    --shadow-md: 0 4px 12px rgba(6,40,92,0.10);
    --shadow-lg: 0 10px 30px rgba(6,40,92,0.13);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Preloader ─────────────────────────────────────────── */
#site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2E8FF0 0%, #06285C 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#site-preloader.preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#site-preloader dotlottie-wc {
    width: 300px;
    height: 300px;
}

#site-preloader .preloader-text {
    margin-top: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
}
/* ──────────────────────────────────────────────────────── */

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body, body * { 
    font-family: 'Outfit', sans-serif !important; 
}
body {
    background-color: var(--bg-main); 
    color: var(--text-primary);
    line-height: 1.6;
}

/* Prevent horizontal scroll on the page wrapper instead of body,
   so background-attachment:fixed still works on parallax sections */
.page-wrapper {
    overflow-x: hidden;
}

/* Product Section - Screenshot Match */
.product-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-v2 {
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #e2e6ee;
}

.product-card-img {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: var(--brand-light);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 20px;
}

.badge-blue { background: #2E8FF0; }
.badge-orange { background: #f59e0b; }

.product-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-label {
    color: #0A5DFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.product-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-card-outline {
    width: 100%;
    padding: 11px;
    border: 1.5px solid #0F172A;
    background: transparent;
    color: #0F172A;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
    border-radius: var(--radius-md);
}

.btn-card-outline:hover {
    background: #0F172A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-card-outline:active {
    transform: translateY(0) scale(0.98);
}

.btn-card-solid {
    width: 100%;
    padding: 11px;
    border: 1.5px solid var(--brand);
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
    border-radius: var(--radius-md);
}

.btn-card-solid:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 93, 255, 0.25);
}

.btn-card-solid:active {
    transform: translateY(0) scale(0.98);
}

.btn-card-disabled {
    border-color: #eee !important;
    color: #ccc !important;
    cursor: not-allowed;
}

.btn-card-disabled:hover {
    background: transparent !important;
    color: #ccc !important;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

/* Lucas Top Utility Bar */
.top-utility {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* Lucas Two-Tier Header */
.header-wrapper {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.header-wrapper.hide-nav {
    transform: translateY(-100%);
}

.header-wrapper.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    gap: 40px;
}

.lucas-search-container {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.lucas-search-container input {
    width: 100%;
    padding: 12px 25px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 50px; /* Fully rounded as in screenshot */
    font-size: 14px;
    color: #666;
}

.lucas-search-container iconify-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #444;
}

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.top-action-item:hover {
    color: var(--brand);
}

.top-action-item iconify-icon {
    font-size: 24px;
}

.top-action-item .badge-count {
    background: var(--brand);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: -5px;
}

.header-bottom-nav {
    border-top: 1px solid #f0f0f0;
    padding: 12px 5%;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: static; /* Mega menu anchors to .header-wrapper instead */
}

.nav-link-v3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-link-v3:hover {
    color: var(--brand);
}

.nav-link-v3.active {
    color: var(--brand);
    position: relative;
}

.nav-link-v3.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand);
}

/* Mega Menu Styling */
.nav-item-has-mega {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

.mega-menu {
    position: absolute;
    top: 100%; /* 100% of .header-wrapper height */
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid var(--brand);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    padding: 40px 8%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 9999;
}

.nav-item-has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Ensure the menu stays open when hovering the menu itself */
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Bridge gap to prevent closing when moving cursor */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.mega-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand);
    display: inline-block;
    min-width: 100px;
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-list li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 4px 0;
}

.mega-list a:hover {
    color: var(--brand);
    padding-left: 8px;
}

.mega-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
}

.mega-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.mega-visual-content {
    padding: 20px 0 0 0;
    text-align: center;
}

.mega-visual-content p {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.btn-mega {
    display: block;
    width: 100%;
    padding: 15px;
    background: #c21a36 !important; /* Red accent from screenshot enforced */
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-mega:hover {
    background: #a1162d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(194, 26, 54, 0.2);
}

/* Lucas Category Nav */
.cat-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cat-link {
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

.cat-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand);
}

/* BYD-Inspired Hero Section */
.hero-v4 {
    height: calc(100vh - 121px);
    min-height: 500px;
    max-height: 800px;
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

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

.hero-v4-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.hero-v4-slide.active {
    opacity: 1;
}

.hero-v4-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-v4-content {
    position: absolute;
    bottom: 120px;
    left: 8%;
    z-index: 10;
    color: #fff;
    width: 100%;
}

.hero-v4-title {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-v4-slide.active .hero-v4-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-v4-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.hero-v4-slide.active .hero-v4-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-byd {
    background: #fff;
    color: #000;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-byd:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 93, 255, 0.25);
}

.btn-byd:active {
    transform: translateY(0) scale(0.98);
}

.hero-v4-arrows {
    display: flex;
    gap: 12px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
}

.hero-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Bottom Navigation Cards */
.hero-v4-nav {
    position: absolute;
    bottom: 50px;
    right: 5%;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-nav-card {
    width: 150px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.hero-nav-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease;
    margin-bottom: 10px;
}

.hero-nav-card span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.hero-nav-card.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-nav-card.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand);
}

.hero-nav-card:hover img {
    transform: scale(1.1);
}

.hero-nav-card:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-v4-nav {
        left: 5%;
        right: 5%;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        scrollbar-width: none; /* Hide scrollbar for cleaner look */
    }
    .hero-v4-nav::-webkit-scrollbar { display: none; }
    .hero-v4-title { font-size: 50px; }
    .hero-nav-card { width: 120px; flex-shrink: 0; }
}

@media (max-width: 768px) {
    .hero-v4 {
        height: 85vh;
        min-height: 480px;
    }
    .hero-v4-content {
        bottom: 150px;
        left: 5%;
        width: 90%;
        padding-right: 0;
    }
    .hero-v4-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .hero-v4-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .btn-byd, .btn-byd-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }
    .hero-v4-nav {
        bottom: 20px;
        left: 5%;
        right: 5%;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }
    .hero-nav-card {
        flex: 1;
        min-width: 0;
        height: 80px;
        padding: 8px 4px;
        align-items: center;
        justify-content: center;
    }
    .hero-nav-card img {
        height: 30px;
        margin-bottom: 5px;
    }
    .hero-nav-card span {
        font-size: 8px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    .hero-nav-card h4.nav-card-title {
        font-size: 9px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
}

/* Slider Components */
.hero-slider-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.hero-main .hero-slide img { opacity: 0.6; }
.hero-banner .hero-slide img { opacity: 0.4; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

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

.slider-dot.active {
    background: var(--brand); /* Premium Blue */
    box-shadow: 0 0 10px rgba(10, 93, 255, 0.5);
    width: 20px; /* Pill shape for active dot as in screenshot */
    border-radius: 4px;
}

.badge-lucas {
    background: var(--brand);
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title { font-size: 40px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; }
.banner-title { font-size: 24px; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }

.btn-lucas {
    background: var(--brand);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lucas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-lucas:hover { 
    background: var(--brand-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(10, 93, 255, 0.3);
}

.btn-lucas:hover::after {
    transform: translateX(100%);
}
.btn-outline { background: transparent; border: 1.5px solid var(--brand); color: var(--brand) !important; box-shadow: none; }
.btn-outline:hover { background: var(--brand); color: #fff !important; }

/* Sections Styling */
.section-padding { padding: clamp(60px, 8vw, 90px) 5%; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header > span:not(.hover-letter) {
    color: var(--brand);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.section-header h2,
#enquiry h2,
.enquiry-form h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: none;
    margin-top: 10px;
    letter-spacing: normal;
    line-height: 1.2;
}

/* Card Grid - Universal Lucas Style */
.grid-lucas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-lucas {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.card-lucas:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 48px;
    color: var(--brand);
    margin-bottom: 25px;
}

.card-lucas h3 { 
    font-size: 24px; 
    font-weight: 800; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: -0.02em;
}

.card-lucas p { 
    font-size: 14px; 
    color: var(--text-muted); 
    margin-bottom: 30px; 
    line-height: 1.7;
}

/* Store Section (Dark) */
.section-dark {
    background: #f8f9fc;
    color: #1a1a1a;
    padding: clamp(60px, 8vw, 80px) 5%;
}

.section-dark .section-header h2 { color: #1a1a1a; }
.section-dark .section-header span { color: var(--brand); }

.section-dark .card-lucas {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: #fff;
}

.section-dark .card-lucas p {
    color: rgba(255,255,255,0.5);
}

.section-dark .card-lucas:hover {
    background: rgba(255,255,255,0.05);
    border-color: #3897E9;
}

/* Architecture Grid */
/* Marquee */
.marquee-band {
    background: var(--brand);
    color: #fff;
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 20;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Architecture Grid */
.arch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.spec-item {
    border-left: 4px solid var(--brand);
    padding-left: 20px;
    margin-bottom: 20px;
}

.spec-item div:first-child { 
    font-weight: 900; 
    font-size: 20px; 
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.spec-item div:last-child { 
    font-size: 11px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.form-lucas input, .form-lucas textarea {
    width: 100%;
    padding: 20px 30px;
    background: #fcfcfc;
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-lucas input:focus, .form-lucas textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(10, 93, 255, 0.15);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: #0F172A;
    color: #fff;
    text-align: center;
    padding: clamp(80px, 10vw, 100px) 5%;
}

.cta-section h2 { 
    font-size: 64px; 
    font-weight: 900; 
    margin-bottom: 50px; 
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

/* Footer Premium Styling */
.footer-premium {
    background: #fff;
    padding: clamp(60px, 8vw, 90px) 5% 50px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-text {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--brand);
    padding-left: 5px;
}

/* Newsletter Styles */
.footer-newsletter {
    margin-top: 0;
}

.footer-newsletter h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 350px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-right: none;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.newsletter-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--brand);
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .main-header { gap: 20px; padding: 15px 5%; }
    .lucas-search { display: none; }
    .grid-lucas { grid-template-columns: 1fr 1fr; }
    .arch-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-grid-premium { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 50px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    /* Hero Grid - Tablet */
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
        padding: 10px 3%;
    }
    .hero-main {
        height: 420px;
        min-height: 340px;
    }
    .hero-side {
        flex-direction: row;
        height: auto;
        gap: 12px;
    }
    .hero-banner {
        flex: 1 1 0;
        height: 200px;
        min-height: 180px;
    }
    /* Mega menu hide on tablet */
    .mega-menu { display: none !important; }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .header-top {
        padding: 12px 4%;
        gap: 15px;
        flex-wrap: wrap;
    }
    .lucas-search-container { display: none; }
    .header-top-actions { gap: 16px; }
    .top-action-item span { display: none; }
    .header-bottom-nav {
        padding: 10px 4%;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    .header-bottom-nav::-webkit-scrollbar { display: none; }
    .nav-link-v3 { font-size: 12px; white-space: nowrap; }
    .mega-menu { display: none !important; }

    /* Hero Grid - Mobile stacked */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 8px 4%;
    }
    .hero-main {
        height: 320px;
        min-height: 280px;
    }
    .hero-side {
        flex-direction: column;
        gap: 10px;
        height: auto;
    }
    .hero-banner {
        flex: unset;
        height: 180px;
        min-height: 160px;
    }
    .hero-title { font-size: 28px; }
    .banner-title { font-size: 18px; }
    .banner-content { padding: 16px; }

    /* Sections */
    .section-padding { padding: clamp(40px, 6vw, 60px) 4%; }
    .section-dark { padding: clamp(40px, 6vw, 70px) 4%; }
    .section-header h2, #enquiry h2, .enquiry-form h3 { font-size: 38px; line-height: 1.1; margin-bottom: 15px; }
    .grid-lucas { grid-template-columns: 1fr; gap: 20px; }
    .product-grid-premium { grid-template-columns: 1fr; gap: 20px; }
    .arch-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-section { padding: 80px 4%; }
    .cta-section h2 { font-size: 36px; }
    .section-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }

    /* Footer */
    .footer-premium { padding: clamp(40px, 6vw, 60px) 4% 30px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    /* Header */
    .header-top { padding: 10px 4%; }
    .header-top-actions { gap: 12px; }

    /* Hero sliders - small phones */
    .hero-main {
        height: 260px;
        min-height: 220px;
    }
    .hero-banner {
        height: 150px;
        min-height: 140px;
    }
    .hero-title { font-size: 22px; }
    .banner-title { font-size: 15px; }
    .badge-lucas { font-size: 9px; padding: 3px 8px; margin-bottom: 8px; }
    .btn-lucas { font-size: 12px; padding: 10px 16px; }
    .slider-dots { bottom: 12px; right: 12px; }

    /* Sections */
    .section-header h2, #enquiry h2, .enquiry-form h3 { font-size: 30px; line-height: 1.1; margin-bottom: 12px; }
    .cta-section h2 { font-size: 28px; }
    .footer-links { grid-template-columns: 1fr; }
}

/* ============================================
   GLOBAL STYLES & CURSOR
   ============================================ */
body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="%230A5DFF" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m3 3 7.07 16.97 2.51-7.39 7.39-2.51L3 3z"/></svg>') 4 4, auto;
}

a, button, input, textarea, select, .hover-letter {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="%230A5DFF" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m3 3 7.07 16.97 2.51-7.39 7.39-2.51L3 3z"/></svg>') 4 4, pointer;
}

/* ============================================
   STORE PHOTO CARDS
   ============================================ */
.store-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 5%;
}

.store-photo-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.store-photo-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 20px 40px rgba(10,93,255,0.08);
}

.store-card-featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.store-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.store-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: transform 0.5s ease;
}

.store-photo-card:hover .store-card-img img {
    transform: scale(1.05);
}

.store-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,15,40,0.85));
}

.store-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.store-card-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.store-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.store-card-tag {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    border: 1px solid rgba(10,93,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

.tag-blue {
    color: var(--brand);
    border-color: var(--brand);
}

@media (max-width: 768px) {
    .store-cards-grid { grid-template-columns: 1fr; padding: 0 4%; }
}

/* ============================================
   PILLARS SECTION (Core Pillars)
   ============================================ */
.pillars-section {
    background: #f4f7fb;
    padding: 120px 5%;
}

.pillars-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 60px rgba(10,93,255,0.15);
}

.pillar-featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.pillar-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
    transition: transform 0.6s ease;
}

.pillar-card:hover .pillar-img img { transform: scale(1.06); }

.pillar-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,15,30,0.9));
}

.pillar-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pillar-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(10,93,255,0.15);
    border: 1px solid rgba(10,93,255,0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand);
    margin-bottom: 8px;
}

.pillar-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.pillar-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.pillar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    text-decoration: none;
    transition: var(--transition);
    margin-top: 8px;
}

.pillar-link:hover { gap: 12px; }

@media (max-width: 768px) {
    .pillars-section { padding: 70px 4%; }
    .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ARCHITECTURE SECTION (redesigned)
   ============================================ */
.arch-section {
    background: #f8f9fc;
    padding: 120px 5%;
    overflow: hidden;
}

.arch-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.arch-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    display: block;
    margin-bottom: 20px;
}

.arch-heading {
    font-size: 64px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.arch-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.arch-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.arch-spec-item {
    border-left: 3px solid var(--brand);
    padding-left: 18px;
}

.arch-spec-val {
    font-size: 16px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.arch-spec-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(1.875rem, 3vw, 2.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.4vw, 1.875rem); line-height: 1.2; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Letter Hover Effects */
.hover-letter {
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hover-letter:hover {
    color: #003B95 !important; /* Turns dark blue on light backgrounds */
    transform: translateY(-2px);
}

.section-photo-blue .hover-letter:hover,
.cta-photo-section .hover-letter:hover,
.section-solid-blue .hover-letter:hover {
    color: #003B95 !important; /* Turns dark blue on blue backgrounds */
}

/* Image stack */
.arch-img-col { position: relative; }

.arch-img-stack {
    position: relative;
}

.arch-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.arch-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(0.2);
    display: block;
}

.arch-img-thumb {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 4px solid #f8f9fc;
}

.arch-img-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    filter: grayscale(0.3);
    display: block;
}

.arch-badge-float {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--brand);
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(10,93,255,0.4);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .arch-section-inner { grid-template-columns: 1fr; gap: 60px; }
    .arch-heading { font-size: 48px; }
    .arch-img-thumb { display: none; }
    .arch-badge-float { left: 20px; }
}

@media (max-width: 768px) {
    .arch-section { padding: 70px 4%; }
    .arch-heading { font-size: 36px; }
    .arch-specs { grid-template-columns: 1fr; }
}

/* ============================================
   TERMINAL TESTIMONIALS SECTION
   ============================================ */
.terminal-section {
    background: #070B14;
    padding: 120px 5%;
}

.terminal-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.terminal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.terminal-card {
    background: #0D1117;
    border: 1px solid #30363D;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.terminal-card:hover {
    border-color: var(--brand);
    box-shadow: 0 20px 50px rgba(10,93,255,0.1);
    transform: translateY(-4px);
}

.terminal-card-featured {
    border-color: #1a5c3a;
    background: #0A1A11;
}

.terminal-card-featured:hover {
    border-color: #4ade80;
    box-shadow: 0 20px 50px rgba(74,222,128,0.1);
}

.terminal-topbar {
    background: #161B22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #30363D;
}

.terminal-topbar-blue {
    background: #0D1B2A;
    border-color: #1a5c3a;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }

.terminal-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-family: 'Courier New', monospace;
    margin-left: 8px;
}

.terminal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 200px;
}

.terminal-prompt {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.prompt-symbol {
    color: #4ade80;
    font-weight: 700;
    margin-right: 8px;
}

.terminal-output {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    flex: 1;
}

.terminal-output-green {
    color: #4ade80 !important;
    line-height: 1.9;
}

.terminal-meta {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.terminal-author {
    color: var(--brand);
    font-weight: 700;
}

.terminal-stars {
    display: flex;
    gap: 4px;
    padding-top: 10px;
}

.star-filled {
    color: #f59e0b;
    font-size: 16px;
}

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

@media (max-width: 768px) {
    .terminal-section { padding: 70px 4%; }
}

/* ============================================
   CTA PHOTO SECTION
   ============================================ */
.cta-photo-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1558002038-1055907df827?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.section-photo-blue {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.section-photo-blue > * {
    position: relative;
    z-index: 2;
}

.section-photo-blue .section-header h2,
.section-photo-blue .section-header > span:not(.hover-letter) {
    color: #fff !important;
}

.section-photo-blue .arch-heading,
.section-photo-blue .arch-spec-val {
    color: #fff !important;
}

.section-photo-blue .arch-desc,
.section-photo-blue .text-gray-500 {
    color: rgba(255,255,255,0.8) !important;
}

.section-photo-blue .text-xl,
.section-photo-blue .text-brand {
    color: #fff !important;
}

.section-photo-blue .arch-spec-label {
    color: rgba(255,255,255,0.6) !important;
}

.section-solid-blue {
    background-color: var(--brand);
    color: #fff;
}

.section-solid-blue .section-header-flex .btn-card-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.section-solid-blue .section-header-flex .btn-card-outline:hover {
    background-color: #fff;
    color: var(--brand);
    border-color: #fff;
}

.section-solid-blue .product-card-v2 {
    /* Prevent cards from inheriting white text inside */
    color: var(--text-dark);
}

.cta-photo-overlay, .section-photo-blue::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,93,255,0.85) 0%, rgba(5,8,15,0.92) 100%);
    content: '';
    z-index: 1;
}

.cta-photo-content {
    position: relative;
    z-index: 2;
    padding: 80px 5%;
    max-width: 860px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 20px;
}

.cta-photo-content h2 {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
}

.cta-photo-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-photo-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-ghost {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cta-photo-content h2 { font-size: 36px; }
    .cta-photo-section { background-attachment: scroll; }
    .section-photo-blue { background-attachment: scroll; }
    .cta-photo-btns { flex-direction: column; }
}

/* Store section override: light bg + dark text for cards */
.section-dark .store-card-body h3 { color: #1a1a1a; }
.section-dark .store-card-body p { color: #555; }
.section-dark .store-photo-card {
    background: #fff;
    border: 1px solid #eef0f5;
    box-shadow: var(--shadow-sm);
}
.section-dark .store-photo-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #dde2ef;
}
.section-dark .store-card-featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px var(--brand);
}
.section-dark .store-card-tag {
    color: #777;
    border-color: #ddd;
}
.section-dark .tag-blue {
    color: var(--brand);
    border-color: var(--brand);
}

/* ============================================
   CLIENT REVIEW CARDS
   ============================================ */
.reviews-section {
    background: #f4f7fb;
    padding: 120px 5%;
}

.reviews-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 80px;
    line-height: 1;
    color: var(--brand);
    opacity: 0.08;
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.review-card-featured {
    border-color: var(--brand);
    box-shadow: 0 8px 40px rgba(10,93,255,0.12);
    background: linear-gradient(145deg, #fff 60%, #f0f5ff);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-quote {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #3897E9);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.review-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.review-role {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .reviews-section { padding: 70px 4%; }
    .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   HAMBURGER BUTTON + MOBILE NAV DRAWER
   ============================================ */

/* Ham button - hidden on desktop */
.ham-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.ham-btn:hover { border-color: var(--brand); }

.ham-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: var(--transition);
}

/* Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}

/* Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #fff;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 60px rgba(0,0,0,0.15);
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.ham-close-btn {
    background: transparent;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    transition: var(--transition);
}

.ham-close-btn:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.mobile-nav-links {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand);
    background: #f0f5ff;
    padding-left: 34px;
}

.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Show hamburger on mobile, hide nav row */
@media (max-width: 768px) {
    .ham-btn { display: flex; }
    .header-bottom-nav { display: none !important; }
    .top-action-item span { display: none; }
}

/* Override light background for specific sections */
.pillars-section, .arch-section {
    background: #fff;
    color: #1a1a1a;
}

/* ============================================
   HERO V4 - MISSING ELEMENTS
   ============================================ */
.hero-v4-badge {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-v4-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.hero-v4-slide.active .hero-v4-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Nav Cards - text labels */
.nav-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 6px;
}

.nav-card-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0;
}

/* ============================================
   BTN BYD OUTLINE (Missing Button Variant)
   ============================================ */
.btn-byd-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-byd-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

.btn-byd-outline:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================
   CTA V2 SECTION (Final CTA on Homepage)
   ============================================ */
.cta-v2 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.cta-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}

.cta-v2-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 93, 255, 0.88) 0%, rgba(5, 8, 20, 0.94) 100%);
}

.cta-v2-content {
    position: relative;
    z-index: 2;
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.cta-v2-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta-v2 { min-height: 420px; }
    .cta-v2-title { font-size: 26px; }
    .cta-v2-content { padding: 70px 5%; }
}

/* ============================================
   ARCHITECTURE NUMBER & VISUAL BG
   ============================================ */
.arch-number {
    width: 56px;
    height: 56px;
    background: var(--brand);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    letter-spacing: -0.03em;
}

.arch-visual-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, #f0f5ff, #e6edff);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* ============================================
   PILLAR CARD & ICON (Homepage "Pillars of Persistence")
   ============================================ */
.pillar-card {
    background: #fff;
    border: 1.5px solid #eef0f5;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: rgba(10, 93, 255, 0.1);
    border: 1.5px solid rgba(10, 93, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand);
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */
.testimonial-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.testimonial-card p {
    color: #1a1a1a;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial-card { padding: 32px 24px; }
}

/* ============================================
   LUCAS INPUT (Form Inputs on Homepage)
   ============================================ */
.lucas-input {
    display: block;
    width: 100%;
    padding: 13px 18px;
    background: #f8f9fc;
    border: 1.5px solid #e8eaf0;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.lucas-input:focus {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(10, 93, 255, 0.1);
}

.lucas-input::placeholder {
    color: #aaa;
}

.product-card-body .card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}
.product-card-body .card-actions > a,
.product-card-body .card-actions > button {
    flex: 1;
    margin-top: 0;
}

/* ============================================
   CATALOG REBUILD — HERO, CATEGORY CARDS, FILTERS, ENQUIRY
   ============================================ */
.hero-simple {
    background: #11141a;
    padding: clamp(70px, 10vw, 110px) 5% clamp(50px, 7vw, 80px);
    text-align: center;
}

.hero-simple-badge {
    display: inline-block;
    background: rgba(10, 93, 255, 0.15);
    color: #6ea3ff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-simple h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    max-width: 720px;
    margin: 0 auto 16px;
}

.hero-simple p {
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 15px;
}

.hero-simple-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

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

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

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

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

.category-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.icon-tile {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.category-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    margin-bottom: 0;
}

.product-icon-tile {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--brand);
    background: var(--brand-light);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    padding: 9px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.filter-pill.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.badge-soon {
    display: inline-block;
    background: #fff7e6;
    color: #b27200;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    border: 1.5px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.empty-state p {
    margin-bottom: 0;
    font-size: 13.5px;
}

.breadcrumb-row {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-row a {
    color: var(--text-muted);
    text-decoration: none;
}

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

.enquiry-form {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.enquiry-form h3 {
    margin-bottom: 4px;
}

.enquiry-form > p {
    font-size: 13px;
    margin-bottom: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13.5px;
}

.spec-row span:first-child {
    color: var(--text-muted);
    font-weight: 600;
}

.spec-row span:last-child {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

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

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

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

/* Branded Floating Dev Console for Authentication Simulation */
.dev-role-console {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: 'Outfit', sans-serif;
}
.dev-console-toggle {
    background: #0A5DFF;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(10, 93, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dev-console-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 93, 255, 0.6);
}
.dev-console-panel {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    display: none;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.dev-console-panel.active {
    display: block;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.dev-console-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dev-role-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dev-role-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.dev-role-btn.active {
    background: #0A5DFF;
    border-color: #0A5DFF;
    font-weight: 800;
}
.dev-console-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

/* ============================================
   AUTHENTICATION & PROFILE SCREENS (High-Fidelity)
   ============================================ */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 121px - 280px); /* accounting for header & footer */
    background: radial-gradient(circle at 10% 20%, rgba(10, 93, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(10, 93, 255, 0.03) 0%, transparent 40%),
                #fafbfe;
    padding: clamp(40px, 6vw, 80px) 20px;
    font-family: 'Outfit', sans-serif;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 45px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 
                0 1px 3px rgba(0, 0, 0, 0.01),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
    animation: authFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.auth-logo img {
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(10, 93, 255, 0.15));
}

.auth-card h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.auth-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 30px;
}

/* Social Login */
.social-login-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-1px);
}

.social-btn i {
    font-size: 16px;
}

.google-icon { color: #ea4335; }
.fb-icon { color: #1877f2; }

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 25px;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider::before { margin-right: 15px; }
.auth-divider::after { margin-left: 15px; }

/* Form Elements */
.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: #0F172A;
    font-weight: 500;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(10, 93, 255, 0.1);
}

/* Password field with toggle eye */
.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    padding-right: 48px;
}

.toggle-eye {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.toggle-eye:hover {
    color: #475569;
}

.forgot-link {
    align-self: flex-end;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    margin-top: 8px;
    transition: var(--transition);
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Auth Submit Button */
.btn-auth {
    width: 100%;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    box-shadow: 0 10px 20px rgba(10, 93, 255, 0.15);
}

.btn-auth:hover {
    background: #004ecc;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10, 93, 255, 0.25);
}

.btn-auth:active {
    transform: translateY(0);
}

/* Switch links */
.auth-switch {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 25px;
}

.auth-switch a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Password Strength Bar */
.pwd-strength-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.pwd-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.pwd-strength-label {
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ============================================
   PREMIUM POLISH — extended tokens
   ============================================ */
:root {
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
}

/* ============================================
   PREMIUM POLISH — accessible keyboard focus
   Visible only for keyboard navigation, not mouse clicks.
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================
   PREMIUM POLISH — reusable card/row/input hooks
   Add these classes alongside existing utility classes
   to get consistent hover/focus treatment without
   redeclaring background/border/radius (avoids fighting
   the Tailwind CDN stylesheet, which loads after this file).
   ============================================ */
.ui-card {
    transition: var(--transition);
}
.ui-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ui-row-card {
    transition: var(--transition);
}
.ui-row-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 93, 255, 0.25) !important;
}

.ui-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ui-input:focus {
    outline: none;
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 4px rgba(10, 93, 255, 0.12);
}

/* ============================================
   PREMIUM POLISH — typography & image refinements
   ============================================ */
h1, h2, h3 {
    text-wrap: balance;
}

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

/* Removed section watermark styles per user request */

/* Keep heading and label above the watermark */
.section-header > *:not(.section-watermark) {
    position: relative;
    z-index: 1;
}

/* Enquiry section — light bg variant */
.bg-\[#fcfcfc\] .section-header .section-watermark,
#enquiry .section-watermark {
    color: rgba(10, 93, 255, 0.05);
}

/* ============================================
   DATASHEET DOWNLOAD CARDS
   ============================================ */
.datasheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.datasheet-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.datasheet-card:hover {
    box-shadow: 0 8px 24px rgba(10, 93, 255, 0.10);
    border-color: #0A5DFF;
    transform: translateY(-2px);
}

.datasheet-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0A5DFF;
}

.datasheet-card-body {
    flex: 1;
    min-width: 0;
}

.datasheet-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.datasheet-meta {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.datasheet-dl-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #0A5DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: background 0.2s;
}

.datasheet-card:hover .datasheet-dl-btn {
    background: #004ecc;
}

/* Gated card variant */
.datasheet-card--gated {
    border-style: dashed;
    border-color: #f59e0b;
    background: #fffbf0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.datasheet-card--gated:hover {
    border-color: #d97706;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
    transform: translateY(-2px);
}

.datasheet-icon--gated {
    background: #fef3c7;
    color: #d97706;
}

.datasheet-dl-btn--lock {
    background: #f59e0b;
}

.datasheet-card--gated:hover .datasheet-dl-btn--lock {
    background: #d97706;
}

/* ============================================
   DATASHEET EMAIL GATE MODAL
   ============================================ */
.ds-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s;
}

.ds-gate-overlay--visible {
    opacity: 1;
}

.ds-gate-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    transform: translateY(20px);
    transition: transform 0.25s;
    text-align: center;
}

.ds-gate-overlay--visible .ds-gate-modal {
    transform: translateY(0);
}

.ds-gate-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.ds-gate-close:hover {
    color: #1a1a1a;
    background: #f5f5f5;
}

.ds-gate-icon {
    width: 56px;
    height: 56px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0A5DFF;
    margin: 0 auto 16px;
}

.ds-gate-modal h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.ds-gate-docname {
    font-size: 13px;
    font-weight: 600;
    color: #0A5DFF;
    margin-bottom: 8px;
}

.ds-gate-hint {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ds-gate-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ds-gate-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    color: #1a1a1a;
}

.ds-gate-success-icon {
    font-size: 48px;
    color: #15803d;
    margin-bottom: 4px;
}

.ds-gate-success strong {
    font-size: 1.1rem;
}

.ds-gate-success p {
    font-size: 13px;
    color: #555;
}

.ds-gate-success span {
    font-weight: 700;
    color: #0A5DFF;
}





