﻿/* ============================================================
   Jalandhar Dental Lab – Modern 3D Homepage (v2)
   ============================================================ */

/* ─── V2 Page Body Overrides ─── */
.theme-v2 { background: #06101e; }
.theme-v2 .top-bar { background: rgba(6,16,30,.95); border-bottom: 1px solid rgba(255,255,255,.07); }
.theme-v2 .site-header {
    background: rgba(6,16,30,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
    backdrop-filter: blur(20px);
}
.theme-v2 .logo-main { color: #fff; }
.theme-v2 .logo-sub  { color: rgba(255,255,255,.45); }
.theme-v2 .logo-mark { background: rgba(200,155,42,.15); border: 1px solid rgba(200,155,42,.3); color: var(--gold); }
.theme-v2 .nav-link  { color: rgba(255,255,255,.65); }
.theme-v2 .nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.theme-v2 .nav-link.active { color: #fff; }
.theme-v2 .dropdown-menu { background: #0d1a2e; border-color: rgba(255,255,255,.1); }
.theme-v2 .dropdown-menu li a { color: rgba(255,255,255,.65); }
.theme-v2 .dropdown-menu li a:hover { background: rgba(255,255,255,.06); color: #fff; }
.theme-v2 .nav-cta .btn--primary { background: var(--gold); border-color: var(--gold); color: #07192a; }
.theme-v2 .nav-toggle { border-color: rgba(255,255,255,.2); }
.theme-v2 .nav-toggle span { background: #fff; }

/* ─── V2 Root Variables ─── */
:root {
    --v2-bg:        #06101e;
    --v2-surface:   rgba(255,255,255,.055);
    --v2-border:    rgba(255,255,255,.1);
    --v2-gold:      #c89b2a;
    --v2-gold-l:    #f0c040;
    --v2-blue:      #3b8df0;
    --v2-blue-d:    #1d6fa4;
    --v2-text:      #ffffff;
    --v2-muted:     rgba(255,255,255,.58);
    --v2-radius:    16px;
    --v2-radius-sm: 10px;
}

/* ─── V2 Hero ─── */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--v2-bg);
    overflow: hidden;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* Animated mesh gradient */
.hero-v2__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 45%, rgba(29,111,164,.32) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 80% 65%, rgba(200,155,42,.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 55% 0%,  rgba(59,130,246,.14) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: .85; transform: scale(1.04); }
}

/* Dot grid overlay */
.hero-v2__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Glowing orbs */
.hero-v2__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-v2__orb--1 {
    width: 500px; height: 500px;
    background: rgba(29,111,164,.2);
    top: -120px; left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-v2__orb--2 {
    width: 380px; height: 380px;
    background: rgba(200,155,42,.15);
    bottom: -80px; right: 5%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(20px, -30px); }
}

/* Gold line at bottom */
.hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--v2-gold) 25%, var(--v2-gold-l) 50%, var(--v2-gold) 75%, transparent 100%);
}

.hero-v2__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 5rem 0;
}

/* Eyebrow */
.hero-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--v2-gold);
    margin-bottom: 1.5rem;
    padding: .35rem 1rem;
    background: rgba(200,155,42,.1);
    border: 1px solid rgba(200,155,42,.25);
    border-radius: 100px;
}

/* Gradient title */
.hero-v2__title {
    font-size: clamp(2.6rem, 5.5vw, 4.25rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--v2-text);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -.03em;
}
.hero-v2__title .gradient-text {
    background: linear-gradient(135deg, var(--v2-gold) 0%, var(--v2-gold-l) 45%, #fff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2__subtitle {
    color: var(--v2-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-v2__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Gold CTA button v2 */
.btn--v2-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2.25rem;
    background: linear-gradient(135deg, var(--v2-gold), var(--v2-gold-l));
    color: #07192a;
    font-weight: 700;
    font-size: .9rem;
    border-radius: var(--v2-radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(200,155,42,.4);
    transition: all .3s ease;
}
.btn--v2-gold:hover {
    box-shadow: 0 8px 40px rgba(200,155,42,.55);
    transform: translateY(-2px);
    color: #07192a;
}

/* Glass outline button */
.btn--v2-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2.25rem;
    background: rgba(255,255,255,.06);
    color: var(--v2-text);
    font-weight: 600;
    font-size: .9rem;
    border-radius: var(--v2-radius-sm);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}
.btn--v2-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.35);
    color: var(--v2-text);
}

/* ─── V2 Hero Stats Grid (3D floating) ─── */
.hero-v2__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.hero-v2__stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    transform: perspective(1000px) rotateY(-10deg) rotateX(4deg);
    transform-style: preserve-3d;
    width: 100%;
    max-width: 420px;
}
.stat-glass {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--v2-radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.08);
    animation: statFloat 6s ease-in-out infinite;
    transition: border-color .3s;
}
.stat-glass:hover { border-color: rgba(200,155,42,.35); }
.stat-glass:nth-child(2) { animation-delay: 1.5s; }
.stat-glass:nth-child(3) { animation-delay: 3s; }
.stat-glass:nth-child(4) { animation-delay: 4.5s; }
@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.stat-glass--gold {
    border-color: rgba(200,155,42,.3);
    background: rgba(200,155,42,.08);
}
.stat-glass__num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--v2-text);
    line-height: 1;
    margin-bottom: .35rem;
    letter-spacing: -.03em;
}
.stat-glass--gold .stat-glass__num { color: var(--v2-gold); }
.stat-glass__label {
    font-size: .72rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
}

/* ─── V2 Trust Strip ─── */
.trust-v2 {
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 1rem 0;
}
.trust-v2__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.trust-v2__label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.3);
    white-space: nowrap;
    flex-shrink: 0;
}
.trust-v2__label::before,
.trust-v2__label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.1);
    vertical-align: middle;
    margin: 0 .75rem;
}
.trust-v2__badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.trust-v2__badge {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}
.trust-v2__badge::before {
    content: '✦';
    color: var(--v2-gold);
    font-size: .6rem;
}

/* ─── V2 Partners Marquee ─── */
.partners-v2 {
    background: #040d18;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 0;
    overflow: hidden;
    position: relative;
}
/* fade edges */
.partners-v2::before,
.partners-v2::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.partners-v2::before { left: 0; background: linear-gradient(to right, #040d18, transparent); }
.partners-v2::after  { right: 0; background: linear-gradient(to left,  #040d18, transparent); }

.partners-v2__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 .5rem;
}
.partners-v2__label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,255,255,.2);
    white-space: nowrap;
}
.partners-v2__label::before,
.partners-v2__label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.1);
    vertical-align: middle;
    margin: 0 .75rem;
}

/* Scrolling track */
.partners-v2__track {
    display: flex;
    width: max-content;
    animation: partnersScroll 22s linear infinite;
    padding: .75rem 0 1.25rem;
}
.partners-v2__track:hover { animation-play-state: paused; }
@keyframes partnersScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-v2__set {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

/* Each partner item */
.partner-v2 {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .5rem 1.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .3s;
    position: relative;
}
/* dot separator between items */
.partner-v2::after {
    content: '✦';
    position: absolute;
    right: 0;
    color: rgba(200,155,42,.3);
    font-size: .45rem;
    top: 50%;
    transform: translateY(-50%);
}
.partner-v2:last-child::after { display: none; }

/* logo-style partner */
.partner-v2 img {
    max-height: 32px;
    max-width: 110px;
    object-fit: contain;
    opacity: .45;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity .3s, filter .3s;
}
.partner-v2:hover img { opacity: .85; filter: grayscale(0%); }

/* text-only partner — styled as a pill badge */
.partner-v2-name {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
    padding: .35rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 100px;
    transition: color .3s, border-color .3s, background .3s;
}
.partner-v2-name::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--v2-gold);
    opacity: .6;
    flex-shrink: 0;
}
.partner-v2:hover .partner-v2-name {
    color: rgba(255,255,255,.85);
    border-color: rgba(200,155,42,.3);
    background: rgba(200,155,42,.06);
}

/* ─── V2 Section wrappers ─── */
.section-v2 {
    padding: 6rem 0;
    background: var(--v2-bg);
}
.section-v2--alt {
    background: #080f1c;
}
.section-v2--light {
    background: #ffffff;
}

.section-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--v2-gold);
    margin-bottom: .75rem;
}
.section-v2__eyebrow::before,
.section-v2__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--v2-gold);
    opacity: .6;
}

.section-v2__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-v2__header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--v2-text);
    letter-spacing: -.025em;
    margin-bottom: .75rem;
    font-family: 'Inter', sans-serif;
}
.section-v2__header--light h2 { color: #0a2540; }
.section-v2__header p {
    color: var(--v2-muted);
    font-size: .95rem;
    max-width: 540px;
    margin: 0 auto;
}
.section-v2__header--light p { color: #6b7280; }

/* ─── V2 Category Cards (glassmorphism + 3D tilt) ─── */
.categories-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.cat-v2 {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--v2-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--v2-text);
    transition: border-color .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}
.cat-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), var(--v2-gold-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.cat-v2:hover::before { transform: scaleX(1); }
.cat-v2:hover {
    border-color: rgba(200,155,42,.35);
    box-shadow:
        0 0 40px rgba(200,155,42,.08),
        0 20px 60px rgba(0,0,0,.5);
    color: var(--v2-text);
}
.cat-v2__img {
    height: 210px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cat-v2__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.cat-v2:hover .cat-v2__img img { transform: scale(1.07); }
.cat-v2__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,16,30,.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
}
.cat-v2:hover .cat-v2__img::after { opacity: 1; }
.cat-v2__icon { font-size: 3.5rem; opacity: .15; }
.cat-v2__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-v2__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: .4rem;
}
.cat-v2__body p {
    font-size: .83rem;
    color: var(--v2-muted);
    flex: 1;
    margin-bottom: .75rem;
    line-height: 1.6;
}
.cat-v2__arrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--v2-gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: auto;
}
.cat-v2__arrow::after { content: '→'; transition: transform .2s ease; }
.cat-v2:hover .cat-v2__arrow::after { transform: translateX(4px); }

/* ─── V2 About Section ─── */
.about-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-v2__tag {
    display: inline-block;
    background: rgba(200,155,42,.12);
    color: var(--v2-gold);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 100px;
    border: 1px solid rgba(200,155,42,.25);
    margin-bottom: .9rem;
}
.about-v2 h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.025em;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}
.about-v2 p { color: rgba(255,255,255,.62); margin-bottom: 1.1rem; line-height: 1.8; font-size: .95rem; }
.about-v2__img-wrap {
    border-radius: var(--v2-radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.15);
    position: relative;
}
.about-v2__img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.about-v2__stat {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(200,155,42,.3);
    border-radius: var(--v2-radius-sm);
    padding: 1.25rem 1.75rem;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    text-align: center;
    backdrop-filter: blur(16px);
}
.about-v2__stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--v2-gold);
    line-height: 1;
}
.about-v2__stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.about-v2__placeholder {
    height: 380px;
    border-radius: var(--v2-radius);
    background: linear-gradient(135deg, #0d1f35 0%, #0a2540 60%, #071628 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid rgba(200,155,42,.2);
    color: rgba(255,255,255,.35);
    font-size: .9rem;
    gap: .75rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
}

/* ─── V2 Why Us Cards (gradient border) ─── */
.why-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.why-v2-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--v2-radius);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.why-v2-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), var(--v2-blue));
    opacity: 0;
    transition: opacity .3s ease;
}
.why-v2-card:hover {
    border-color: rgba(200,155,42,.25);
    box-shadow: 0 0 30px rgba(200,155,42,.06), 0 16px 48px rgba(0,0,0,.3);
    transform: translateY(-4px);
}
.why-v2-card:hover::after { opacity: 1; }
.why-v2-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(200,155,42,.15), rgba(59,141,240,.1));
    border: 1px solid rgba(200,155,42,.2);
    border-radius: var(--v2-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: transform .3s ease;
}
.why-v2-card:hover .why-v2-card__icon { transform: scale(1.1) rotate(-3deg); }
.why-v2-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: .5rem;
}
.why-v2-card p {
    font-size: .875rem;
    color: var(--v2-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── V2 Technology Section ─── */
.tech-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.tech-v2-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--v2-radius);
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
}
.tech-v2-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.tech-v2-card:hover {
    border-color: rgba(200,155,42,.25);
    box-shadow: 0 0 30px rgba(59,141,240,.08), 0 12px 40px rgba(0,0,0,.4);
    transform: translateY(-3px);
}
.tech-v2-card:hover::before { opacity: 1; }
.tech-v2-card__head {
    background: rgba(200,155,42,.1);
    border-bottom: 1px solid rgba(200,155,42,.15);
    color: var(--v2-gold);
    font-weight: 800;
    font-size: .95rem;
    padding: .85rem 1.25rem;
    letter-spacing: .04em;
}
.tech-v2-card__body { padding: 1.25rem; }
.tech-v2-card__body h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: .5rem;
}
.tech-v2-card__body p {
    font-size: .8rem;
    color: var(--v2-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── V2 CTA Section ─── */
.cta-v2 {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: var(--v2-bg);
}
.cta-v2__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,155,42,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(29,111,164,.15) 0%, transparent 60%);
}
.cta-v2__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cta-v2__border-top {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,155,42,.5), transparent);
}
.cta-v2__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-v2__inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--v2-text);
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}
.cta-v2__inner h2 .gradient-text {
    background: linear-gradient(135deg, var(--v2-gold), var(--v2-gold-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-v2__inner p {
    color: var(--v2-muted);
    font-size: 1.05rem;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

/* ─── V2 Homepage Responsive ─── */
@media (max-width: 1024px) {
    .hero-v2__inner    { grid-template-columns: 1fr; gap: 3rem; }
    .hero-v2__stat-grid { transform: none; }
    .about-v2          { grid-template-columns: 1fr; gap: 3rem; }
    .categories-v2     { grid-template-columns: repeat(2, 1fr); }
    .tech-v2-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-v2__stat    { position: static; margin-top: 1rem; width: max-content; }
}
@media (max-width: 768px) {
    /* ── Mobile nav: dark background in v2 theme ── */
    .theme-v2 .main-nav {
        background: #0c1929;
        border-bottom: 1px solid rgba(255,255,255,.1);
        box-shadow: 0 10px 40px rgba(0,0,0,.5);
    }
    .theme-v2 .main-nav .nav-link { color: rgba(255,255,255,.72); }
    .theme-v2 .main-nav .nav-link:hover,
    .theme-v2 .main-nav .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }
    .theme-v2 .main-nav .dropdown-menu {
        background: rgba(255,255,255,.05);
        border-radius: 8px;
        padding: .3rem 0 .3rem .75rem;
    }
    .theme-v2 .main-nav .dropdown-menu li a { color: rgba(255,255,255,.6); }
    .theme-v2 .main-nav .dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,.06); }

    /* ── Hero mobile layout ── */
    .hero-v2 { min-height: auto; padding: 5rem 1.5rem 3rem !important; }
    .hero-v2__inner { padding: 0; gap: 2.5rem; }
    .hero-v2__text { padding: 0; }
    .hero-v2__title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-v2__subtitle { font-size: .9rem; max-width: 100%; }
    .hero-v2__stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
        max-width: 100%;
        transform: none !important;
    }
    .stat-glass { padding: 1rem .75rem; }
    .stat-glass__num { font-size: 1.6rem; }

    .why-v2-grid   { grid-template-columns: 1fr; }
    .categories-v2 { grid-template-columns: 1fr; }
    .tech-v2-grid  { grid-template-columns: 1fr; }
    .section-v2    { padding: 4rem 0; }
    .trust-v2__inner { gap: .75rem; }
    .trust-v2__badges { justify-content: center; }
}
@media (max-width: 480px) {
    .hero-v2 { padding: 4.5rem 1.25rem 2.5rem !important; }
    .hero-v2__inner { padding: 0; }
    .hero-v2__text { padding: 0; }
    .hero-v2__stat-grid { grid-template-columns: 1fr 1fr; }
    .hero-v2__actions { flex-direction: column; gap: .75rem; }
    .hero-v2__actions a { width: 100%; justify-content: center; text-align: center; }
    .btn--v2-gold, .btn--v2-outline { padding: .85rem 1.5rem; font-size: .9rem; }
    .stat-glass__num   { font-size: 1.4rem; }
    .stat-glass__label { font-size: .6rem; }
}

/* ══════════════════════════════════════════════════════════════
   THEME-V2 — ALL PAGES (About, Technology, Products, Contact)
   Scoped under .theme-v2 body class — overrides style.css
══════════════════════════════════════════════════════════════ */

/* ─── Global typography on dark bg ─── */
.theme-v2 body,
.theme-v2 { color: var(--v2-muted); }
.theme-v2 h1, .theme-v2 h2, .theme-v2 h3,
.theme-v2 h4, .theme-v2 h5 { color: var(--v2-text); }
.theme-v2 p { color: var(--v2-muted); }
.theme-v2 strong { color: var(--v2-text); }
.theme-v2 a { color: var(--v2-gold); }
.theme-v2 a:hover { color: var(--v2-gold-l); }

/* Gold button — restore dark text overridden by .theme-v2 a rule above */
.theme-v2 .btn--v2-gold,
.btn--v2-gold { color: #07192a; }
.theme-v2 .btn--v2-gold:hover,
.btn--v2-gold:hover { color: #07192a; }

/* WhatsApp FAB — keep identical in both themes */
.theme-v2 .whatsapp-fab { background: #25d366; color: #fff; }
.theme-v2 .whatsapp-fab:hover { color: #fff; }

/* ─── Main content wrapper ─── */
.theme-v2 .site-main { background: var(--v2-bg); }

/* ─── Sections ─── */
.theme-v2 .section { background: var(--v2-bg); }
.theme-v2 .section--bg { background: #080f1c; }
.theme-v2 .section--dark { background: #03080f; }

.theme-v2 .section-header h2 { color: var(--v2-text); }
.theme-v2 .section-header p  { color: var(--v2-muted); }
.theme-v2 .section-eyebrow   { color: var(--v2-gold); border-bottom-color: var(--v2-gold); }
.theme-v2 .section-header .section-eyebrow::before,
.theme-v2 .section-header .section-eyebrow::after { background: var(--v2-gold); }

/* ─── Page Hero Banner ─── */
.theme-v2 .page-hero {
    background: linear-gradient(150deg, #07192a 0%, #0c2240 55%, #06101e 100%);
    position: relative;
    overflow: hidden;
}
.theme-v2 .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.theme-v2 .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--v2-gold) 30%, var(--v2-gold-l) 50%, var(--v2-gold) 70%, transparent 100%);
}
.theme-v2 .page-hero h1 { color: #fff; position: relative; z-index: 1; }
.theme-v2 .breadcrumb    { position: relative; z-index: 1; color: rgba(255,255,255,.4); }
.theme-v2 .breadcrumb a  { color: var(--v2-gold); }
.theme-v2 .breadcrumb a:hover { color: var(--v2-gold-l); }
.theme-v2 .breadcrumb span { color: rgba(255,255,255,.45); }

/* ─── Page Layout (About / Tech) ─── */
.theme-v2 .page-content__main { color: var(--v2-muted); }
.theme-v2 .page-hero-img { border-radius: 14px; border: 1px solid rgba(255,255,255,.08); }

/* Rich content — explicit element overrides (inherited color doesn't beat element selectors) */
.theme-v2 .rich-content { color: rgba(255,255,255,.72); }
.theme-v2 .rich-content h1,
.theme-v2 .rich-content h2,
.theme-v2 .rich-content h3,
.theme-v2 .rich-content h4,
.theme-v2 .rich-content h5 { color: #ffffff; }
.theme-v2 .rich-content p  { color: rgba(255,255,255,.7); }
.theme-v2 .rich-content ul li,
.theme-v2 .rich-content ol li { color: rgba(255,255,255,.65); }
.theme-v2 .rich-content ul li::before { color: var(--v2-gold); }
.theme-v2 .rich-content strong { color: #ffffff; }
.theme-v2 .rich-content a  { color: var(--v2-gold); text-decoration: none; }
.theme-v2 .rich-content a:hover { color: var(--v2-gold-l); }

/* ─── Sidebar ─── */
.theme-v2 .sidebar-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
}
.theme-v2 .sidebar-card h3 {
    color: var(--v2-text);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: .75rem;
    margin-bottom: .75rem;
}
.theme-v2 .sidebar-list li {
    color: var(--v2-muted);
    border-bottom-color: rgba(255,255,255,.06);
    font-size: .84rem;
}
.theme-v2 .sidebar-list li a { color: var(--v2-muted); }
.theme-v2 .sidebar-list li a:hover { color: var(--v2-gold); }
.theme-v2 .sidebar-card--cta { background: rgba(200,155,42,.1); border-color: rgba(200,155,42,.25); }
.theme-v2 .sidebar-card--cta h3 { color: var(--v2-text); }
.theme-v2 .sidebar-card--cta p  { color: var(--v2-muted); }

/* ─── About — Core Value Cards ─── */
.theme-v2 .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.theme-v2 .value-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.theme-v2 .value-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), var(--v2-blue));
    opacity: 0;
    transition: opacity .3s;
}
.theme-v2 .value-card:hover { border-color: rgba(200,155,42,.3); box-shadow: 0 12px 40px rgba(0,0,0,.4); transform: translateY(-4px); }
.theme-v2 .value-card:hover::after { opacity: 1; }
.theme-v2 .value-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(200,155,42,.15), rgba(59,141,240,.1));
    border: 1px solid rgba(200,155,42,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.theme-v2 .value-card h3 { color: var(--v2-text); font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.theme-v2 .value-card p  { color: var(--v2-muted); font-size: .875rem; line-height: 1.65; margin: 0; }

/* ─── Technology Page Cards ─── */
.theme-v2 .tech-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.theme-v2 .tech-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    overflow: hidden;
    transition: all .3s;
    position: relative;
}
.theme-v2 .tech-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), transparent);
    opacity: 0; transition: opacity .3s;
}
.theme-v2 .tech-card:hover { border-color: rgba(200,155,42,.3); box-shadow: 0 12px 40px rgba(0,0,0,.45); transform: translateY(-3px); }
.theme-v2 .tech-card:hover::before { opacity: 1; }
.theme-v2 .tech-card__header {
    background: rgba(200,155,42,.1);
    border-bottom: 1px solid rgba(200,155,42,.15);
    color: var(--v2-gold);
    font-weight: 800;
    font-size: .95rem;
    padding: .85rem 1.25rem;
}
.theme-v2 .tech-card__body { padding: 1.25rem; }
.theme-v2 .tech-card__body h3 { color: var(--v2-text); font-size: .88rem; font-weight: 700; margin-bottom: .5rem; }
.theme-v2 .tech-card__body p  { color: var(--v2-muted); font-size: .8rem; line-height: 1.6; margin: 0; }

/* ─── Products Landing Grid ─── */
.theme-v2 .products-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.theme-v2 .product-cat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .35s, box-shadow .35s, transform .35s;
    display: flex; flex-direction: column;
    position: relative;
}
.theme-v2 .product-cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), var(--v2-gold-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.theme-v2 .product-cat-card:hover::before { transform: scaleX(1); }
.theme-v2 .product-cat-card:hover { border-color: rgba(200,155,42,.35); box-shadow: 0 20px 60px rgba(0,0,0,.5); transform: translateY(-4px); }
.theme-v2 .product-cat-card__img {
    height: 200px; overflow: hidden;
    background: rgba(255,255,255,.04);
    display: flex; align-items: center; justify-content: center;
}
.theme-v2 .product-cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.theme-v2 .product-cat-card:hover .product-cat-card__img img { transform: scale(1.07); }
.theme-v2 .cat-icon { font-size: 3.5rem; opacity: .12; }
.theme-v2 .product-cat-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.theme-v2 .product-cat-card__body h3 { color: var(--v2-text); font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.theme-v2 .product-cat-card__body p  { color: var(--v2-muted); font-size: .85rem; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.theme-v2 .product-cat-card__products { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.theme-v2 .mini-product-link {
    display: inline-block;
    background: rgba(200,155,42,.1);
    border: 1px solid rgba(200,155,42,.2);
    border-radius: 100px;
    color: var(--v2-gold);
    font-size: .73rem; font-weight: 600;
    padding: .2rem .75rem;
    text-decoration: none;
    transition: background .2s;
}
.theme-v2 .mini-product-link:hover { background: rgba(200,155,42,.22); color: var(--v2-gold-l); }

/* ─── Category / Product Detail Grid ─── */
.theme-v2 .category-intro {
    background: rgba(200,155,42,.06);
    border-left: 3px solid var(--v2-gold);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.5rem;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.theme-v2 .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.theme-v2 .product-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--v2-text);
    display: flex; flex-direction: column;
    transition: all .3s;
    position: relative;
}
.theme-v2 .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--v2-gold), var(--v2-gold-l));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.theme-v2 .product-card:hover::before { transform: scaleX(1); }
.theme-v2 .product-card:hover { border-color: rgba(200,155,42,.3); box-shadow: 0 16px 50px rgba(0,0,0,.5); transform: translateY(-3px); color: var(--v2-text); }
.theme-v2 .product-card__img { height: 180px; overflow: hidden; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; }
.theme-v2 .product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.theme-v2 .product-card:hover .product-card__img img { transform: scale(1.07); }
.theme-v2 .product-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.theme-v2 .product-card__body h3 { color: var(--v2-text); font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.theme-v2 .product-card__body p  { color: var(--v2-muted); font-size: .82rem; line-height: 1.6; flex: 1; }
.theme-v2 .product-card__benefits { list-style: none; margin: .75rem 0; padding: 0; }
.theme-v2 .product-card__benefits li { font-size: .78rem; color: rgba(255,255,255,.48); padding: .15rem 0 .15rem 1.1rem; position: relative; }
.theme-v2 .product-card__benefits li::before { content: '✦'; position: absolute; left: 0; top: .3rem; color: var(--v2-gold); font-size: .55rem; }
.theme-v2 .btn-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; color: var(--v2-gold); text-transform: uppercase; letter-spacing: .06em; margin-top: auto; }
.theme-v2 .btn-link::after { content: '→'; transition: transform .2s; }
.theme-v2 .product-card:hover .btn-link::after { transform: translateX(4px); }

/* ─── Other Categories Strip ─── */
.theme-v2 .other-cats { display: flex; flex-wrap: wrap; gap: .75rem; }
.theme-v2 .other-cat-link {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 100px;
    padding: .5rem 1.25rem;
    font-size: .85rem; font-weight: 600;
    color: var(--v2-muted);
    text-decoration: none;
    transition: all .25s;
}
.theme-v2 .other-cat-link:hover { background: rgba(200,155,42,.12); border-color: rgba(200,155,42,.3); color: var(--v2-gold); }

/* ─── FAQ Accordion ─── */
.theme-v2 .faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    overflow: hidden;
}
.theme-v2 .faq-question {
    background: transparent;
    color: var(--v2-text);
    font-size: .95rem;
    font-weight: 600;
}
.theme-v2 .faq-question:hover {
    background: rgba(255,255,255,.04);
    color: var(--v2-gold);
}
.theme-v2 .faq-item.open .faq-question {
    background: rgba(200,155,42,.08);
    color: var(--v2-gold);
}
.theme-v2 .faq-icon { color: var(--v2-gold); }
.theme-v2 .faq-answer__inner { color: var(--v2-muted); }
.theme-v2 .faq-view-more-btn {
    border-color: rgba(255,255,255,.15);
    color: var(--v2-muted);
    background: transparent;
}
.theme-v2 .faq-view-more-btn:hover {
    border-color: var(--v2-gold);
    color: var(--v2-gold);
    background: rgba(200,155,42,.08);
}
.theme-v2 .faq-view-more-btn span { color: rgba(255,255,255,.4); }
.theme-v2 .empty-state { color: var(--v2-muted); }

/* ─── Contact Page ─── */
.theme-v2 .contact-info h2 { color: var(--v2-text); }
.theme-v2 .contact-info > p { color: var(--v2-muted); }
.theme-v2 .contact-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    gap: 1rem;
}
.theme-v2 .contact-item__icon {
    background: linear-gradient(135deg, rgba(200,155,42,.15), rgba(59,141,240,.1));
    border: 1px solid rgba(200,155,42,.2);
    border-radius: 10px;
    color: var(--v2-gold);
    font-size: 1.15rem;
}
.theme-v2 .contact-item strong { color: var(--v2-text); display: block; margin-bottom: .2rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.theme-v2 .contact-item p, .theme-v2 .contact-item p a { color: var(--v2-muted); margin: 0; }
.theme-v2 .contact-item p a:hover { color: var(--v2-gold); }
.theme-v2 .contact-form-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 2rem;
}
.theme-v2 .contact-form-wrap h3 { color: var(--v2-text); margin-bottom: 1.5rem; }
.theme-v2 .contact-form .form-group label { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.theme-v2 .contact-form input,
.theme-v2 .contact-form select,
.theme-v2 .contact-form textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--v2-text);
    border-radius: 8px;
}
.theme-v2 .contact-form input::placeholder,
.theme-v2 .contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.theme-v2 .contact-form input:focus,
.theme-v2 .contact-form textarea:focus {
    border-color: rgba(200,155,42,.45);
    background: rgba(255,255,255,.09);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200,155,42,.09);
}
.theme-v2 .section-eyebrow ~ h2,
.theme-v2 .contact-info h2 + p { color: var(--v2-muted); }

/* ─── Buttons — global dark theme overrides ─── */
.theme-v2 .btn--primary {
    background: linear-gradient(135deg, var(--v2-gold), var(--v2-gold-l)) !important;
    border-color: transparent !important;
    color: #07192a !important;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(200,155,42,.3);
}
.theme-v2 .btn--primary:hover {
    box-shadow: 0 8px 32px rgba(200,155,42,.5) !important;
    transform: translateY(-2px);
    color: #07192a !important;
}
.theme-v2 .btn--outline,
.theme-v2 .btn--lg.btn--outline {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    color: var(--v2-text) !important;
    backdrop-filter: blur(6px);
}
.theme-v2 .btn--outline:hover { background: rgba(255,255,255,.11) !important; color: var(--v2-text) !important; }

/* ─── Product Detail Page ─── */
.theme-v2 .product-detail__content p { color: var(--v2-muted); }
.theme-v2 .product-detail__content h2 { color: var(--v2-text); }
.theme-v2 .product-detail__img-wrap { background: transparent; border-radius: 14px; }
.theme-v2 .product-detail__img-placeholder {
    background: linear-gradient(135deg, #0d1f35, #0a2540, #071628);
    border: 1px solid rgba(200,155,42,.18);
    color: rgba(255,255,255,.35);
}
.theme-v2 .product-detail__img-placeholder span { opacity: .15; }
.theme-v2 .product-detail__img-placeholder p { color: rgba(255,255,255,.35); }
.theme-v2 .product-detail__img { border: 1px solid rgba(255,255,255,.07); }
.theme-v2 .benefits-list li { color: var(--v2-muted); border-bottom-color: rgba(255,255,255,.07); }
.theme-v2 .benefit-check { color: var(--v2-gold); }
.theme-v2 .sidebar-card--benefits { border-color: rgba(200,155,42,.2); }
.theme-v2 .sidebar-card--cta p { color: var(--v2-muted); }
.theme-v2 .product-detail-grid .section-eyebrow { color: var(--v2-gold); }

/* ─── Product/Category cards (no-image placeholders) ─── */
.theme-v2 .product-card__img .cat-icon,
.theme-v2 .product-cat-card__img .cat-icon {
    background: linear-gradient(135deg, #0d1f35, #071628);
    color: rgba(255,255,255,.25);
}
.theme-v2 .product-card__img { background: #0d1f35; }
.theme-v2 .product-cat-card__img { background: #0d1f35; }

/* ─── Alert messages ─── */
.theme-v2 .alert--success { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: #6ee7b7; }
.theme-v2 .alert--error   { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.3); color: #fca5a5; }

/* ─── Scroll Reveal (shared with classic, repeated here for v2 specificity) ─── */
.theme-v2 .reveal { opacity: 0; transition: opacity .65s cubic-bezier(.25,.46,.45,.94), transform .65s cubic-bezier(.25,.46,.45,.94); will-change: opacity, transform; }
.theme-v2 .reveal-up    { transform: translateY(30px); }
.theme-v2 .reveal-left  { transform: translateX(-30px); }
.theme-v2 .reveal-right { transform: translateX(30px); }
.theme-v2 .reveal-scale { transform: scale(0.93); }
.theme-v2 .reveal.visible { opacity: 1; transform: none; }
.theme-v2 .reveal[data-delay="1"] { transition-delay: .07s; }
.theme-v2 .reveal[data-delay="2"] { transition-delay: .14s; }
.theme-v2 .reveal[data-delay="3"] { transition-delay: .21s; }
.theme-v2 .reveal[data-delay="4"] { transition-delay: .28s; }
.theme-v2 .reveal[data-delay="5"] { transition-delay: .35s; }
.theme-v2 .reveal[data-delay="6"] { transition-delay: .42s; }

/* V2 section header underline */
.theme-v2 .section-v2__header::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--v2-gold);
    border-radius: 2px;
    margin: .75rem auto 0;
    transition: width 1.2s cubic-bezier(.22,.61,.36,1) .3s;
}
.theme-v2 .section-v2__header.visible::after { width: 64px; }

/* V2 section-header children cascade */
.theme-v2 .section-v2__header .section-v2__eyebrow {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
}
.theme-v2 .section-v2__header.visible .section-v2__eyebrow { opacity: 1; transform: none; }

.theme-v2 .section-v2__header p {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s .5s ease, transform .8s .5s ease;
}
.theme-v2 .section-v2__header.visible p { opacity: 1; transform: none; }

/* V2 word-split reveal */
.theme-v2 .split-words .word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: 1.25; }
.theme-v2 .split-words .word { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .85s cubic-bezier(.22,.61,.36,1), opacity .6s ease; }
.theme-v2 .section-v2__header.visible .split-words .word { transform: translateY(0); opacity: 1; }

/* V2 trust badge pop */
.theme-v2 .trust-v2__badge.badge-pop { animation: badgePop .75s cubic-bezier(.34,1.4,.64,1) both; }

/* V2 CTA glow pulse on entry */
@keyframes v2CtaGlow {
    0%   { box-shadow: inset 0 0 0 rgba(200,155,42,0); }
    40%  { box-shadow: inset 0 0 80px rgba(200,155,42,.12), 0 0 60px rgba(200,155,42,.1); }
    100% { box-shadow: inset 0 0 0 rgba(200,155,42,0); }
}
.cta-v2.in-view { animation: v2CtaGlow 3s ease forwards; }

/* V2 hero text entry */
@keyframes v2HeroEntry {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}
.hero-v2__eyebrow  { animation: v2HeroEntry .8s cubic-bezier(.22,.61,.36,1) both; }
.hero-v2__title    { animation: v2HeroEntry .9s .12s cubic-bezier(.22,.61,.36,1) both; }
.hero-v2__subtitle { animation: v2HeroEntry .9s .24s cubic-bezier(.22,.61,.36,1) both; }
.hero-v2__actions  { animation: v2HeroEntry .9s .36s cubic-bezier(.22,.61,.36,1) both; }
/* stat grid fades in slightly later so text is already visible */
.hero-v2__stat-grid { animation: v2HeroEntry .95s .52s cubic-bezier(.22,.61,.36,1) both; }

/* ─── V2 Theme — Inner Page Responsive ─── */
@media (max-width: 1024px) {
    .theme-v2 .values-grid          { grid-template-columns: repeat(2, 1fr); }
    .theme-v2 .tech-cards           { grid-template-columns: repeat(2, 1fr); }
    .theme-v2 .products-landing-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-v2 .products-grid        { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .theme-v2 .values-grid          { grid-template-columns: 1fr; }
    .theme-v2 .tech-cards           { grid-template-columns: 1fr; }
    .theme-v2 .products-landing-grid { grid-template-columns: 1fr; }
    .theme-v2 .products-grid        { grid-template-columns: 1fr; }
    .theme-v2 .contact-form-wrap    { padding: 1.25rem; }
}

/* ── Gallery entrance (v2 thumb hover preserved via animationend cleanup) ── */
.theme-v2 .gal-enter      { animation: galEnter     .8s cubic-bezier(.34,1.2,.64,1) both; }
.theme-v2 .gal-enter-left { animation: galEnterLeft .9s cubic-bezier(.22,.61,.36,1) both; }
.theme-v2 .gal-enter-up   { animation: galEnterUp   .9s cubic-bezier(.22,.61,.36,1) both; }

/* V2 gallery thumb hover lift (needs explicit override after animation cleanup) */
.theme-v2 .gallery-thumb { transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.theme-v2 .gallery-thumb:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,.35); }

/* ─── Footer — Modern Dark (v2) ─── */
.theme-v2 .site-footer { background: #030d18 !important; border-top: 1px solid rgba(201,168,76,.1); }
.theme-v2 .site-footer h4 { color: #c9a84c !important; }
.theme-v2 .site-footer .footer__col ul a { color: rgba(255,255,255,.55) !important; }
.theme-v2 .site-footer .footer__col ul a:hover { color: #c9a84c !important; }
.theme-v2 .site-footer address a { color: rgba(255,255,255,.55) !important; }
.theme-v2 .site-footer address a:hover { color: #c9a84c !important; }
.theme-v2 .site-footer .footer__brand p { color: rgba(255,255,255,.5) !important; }
.theme-v2 .site-footer .footer__bottom { border-top-color: rgba(201,168,76,.08); color: rgba(255,255,255,.35) !important; }
.theme-v2 .site-footer .footer__bottom p { color: rgba(255,255,255,.35) !important; }
.theme-v2 .site-footer .footer__bottom a { color: rgba(255,255,255,.4) !important; }
.theme-v2 .site-footer .footer__bottom a:hover { color: #c9a84c !important; }
