:root {
    --bg-color: #242833;
    --accent-green: #00ad74;
    --accent-green-hover: #009362;
    --accent-green-glow: rgba(0, 173, 116, 0.25);
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --card-bg: #1c1f28;
    --border-color: rgba(255, 255, 255, 0.1);
    --wa-green: #25D366;
    --wa-green-hover: #1ebe5a;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--bg-color);
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-bubble {
    background: #1c1f28;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(37, 211, 102, 0.1);
    display: none;
    animation: slideUp 0.3s ease;
}

.wa-bubble.open { display: block; }

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

.wa-bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.wa-avatar {
    width: 42px;
    height: 42px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.wa-bubble-header-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.wa-bubble-header-text span {
    font-size: 0.8rem;
    color: var(--wa-green);
    font-weight: 500;
}

.wa-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #888;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.wa-form-group {
    margin-bottom: 12px;
}

.wa-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-form-group input,
.wa-form-group select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
}

.wa-form-group input:focus,
.wa-form-group select:focus {
    outline: none;
    border-color: var(--wa-green);
}

.wa-form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
    background-color: rgba(0,0,0,0.4);
}

.wa-form-group select option { background-color: #242833; color: #fff; }

.wa-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--wa-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s;
}

.wa-submit-btn:hover { background: var(--wa-green-hover); transform: translateY(-1px); }

.wa-disclaimer {
    font-size: 0.72rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* POPIA Consent Checkbox */
.consent-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 173, 116, 0.04);
    border: 1px solid rgba(0, 173, 116, 0.2);
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 14px;
    cursor: pointer;
}

.consent-block input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--accent-green);
    cursor: pointer;
    margin-top: 2px;
}

.consent-block label {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.5;
    cursor: pointer;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

.consent-block label a {
    color: var(--accent-green);
    text-decoration: underline;
}

.consent-block label a:hover { color: #fff; }

.consent-block.required-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Main form consent styling */
.form-consent-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 173, 116, 0.04);
    border: 1px solid rgba(0, 173, 116, 0.2);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 20px;
    cursor: pointer;
}

.form-consent-block input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--accent-green);
    cursor: pointer;
    margin-top: 2px;
}

.form-consent-block label {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.55;
    cursor: pointer;
}

.form-consent-block label a {
    color: var(--accent-green);
    text-decoration: underline;
}

.form-consent-block label a:hover { color: #fff; }

.form-consent-block.required-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.popia-notice {
    font-size: 0.78rem;
    color: #555;
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

.wa-main-btn {
    width: 60px;
    height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2.5s infinite;
}

.wa-main-btn:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7); }

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-main-btn svg { width: 32px; height: 32px; }

/* ============================================
   HEADER
============================================ */
.main-header {
    background-color: rgba(28, 31, 40, 0.97);
    padding: 15px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-container { display: flex; align-items: center; gap: 20px; }
.brand-logo { max-height: 40px; width: auto; display: block; }

.header-tagline {
    font-size: 0.8rem;
    color: #a1a1aa;
    border-left: 2px solid var(--accent-green);
    padding-left: 15px;
    font-weight: 500;
    max-width: 340px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.header-cta {
    background-color: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background-color: var(--accent-green);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 173, 116, 0.35);
}

.header-wa {
    width: 42px;
    height: 42px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.header-wa:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6); }
.header-wa svg { width: 22px; height: 22px; }

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 6% 40px 6%;
}

.hero-text { flex: 1; max-width: 580px; z-index: 5; }

.social-proof { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.proof-text { font-size: 0.78rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

/* ---- Eyebrow label above headline ---- */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,173,116,0.1);
    border: 1px solid rgba(0,173,116,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-text h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.hero-text p { font-size: 1.05rem; line-height: 1.65; color: var(--text-gray); margin-bottom: 28px; }

/* ---- Scroll cue ---- */
.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 28px;
    opacity: 0.4;
}

.scroll-cue span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 600;
}

.scroll-cue-line {
    width: 40px;
    height: 2px;
    background: var(--accent-green);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { width: 24px; opacity: 0.4; }
    50% { width: 48px; opacity: 1; }
}

/* ---- Audience tags — max 5 ---- */
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 28px;
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.76rem;
    color: #999;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: default;
}

.audience-tag:hover {
    border-color: rgba(0,173,116,0.4);
    color: var(--text-white);
    background: rgba(0,173,116,0.07);
}

.audience-tag svg {
    width: 11px;
    height: 11px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.cta-wrapper { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.cta-wrapper-center { display: flex; justify-content: center; margin-top: 30px; width: 100%; }

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 173, 116, 0.45);
}

.fud-reducer { display: flex; gap: 20px; font-size: 0.82rem; color: #a1a1aa; font-weight: 600; flex-wrap: wrap; }
.fud-reducer span { display: flex; align-items: center; gap: 6px; }
.fud-reducer span::before { content: '✓'; color: var(--accent-green); font-weight: 900; font-size: 1rem; }

/* Impact statement — tightened, key line pulled up */
.impact-statement {
    margin-top: 28px;
    padding: 18px 22px;
    background: rgba(0, 173, 116, 0.05);
    border-left: 3px solid var(--accent-green);
    border-radius: 0 6px 6px 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #b0b5c0;
}

.impact-statement strong {
    display: block;
    color: var(--text-white);
    font-size: 0.98rem;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ---- Logo strip — embedded at bottom of hero, above fold ---- */
.logo-strip {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 6%;
    margin-top: auto;
    background: rgba(0,0,0,0.15);
}

.logo-strip-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-strip-label {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3a3d47;
    font-weight: 700;
    white-space: nowrap;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    margin-right: 24px;
    flex-shrink: 0;
}

.logo-strip-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
    overflow: hidden;
}

/* Placeholder industry badge */
.industry-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0.3;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.industry-badge:hover { opacity: 0.55; }

.industry-badge svg {
    width: 15px;
    height: 15px;
    stroke: #aaa;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.industry-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ============================================
   HERO VISUAL — FIXED MOBILE SPEC TAGS
============================================ */
.hero-visual {
    flex: 1.4;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glow-accent {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-green);
    filter: blur(160px);
    opacity: 0.18;
    z-index: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.camera-stage {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 640px;
}

.product-title {
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.camera-frame {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    animation: float 6s ease-in-out infinite;
}

.camera-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 30px rgba(0,0,0,0.8));
    opacity: 0;
    animation: xfade 10s infinite ease-in-out;
}

.cam-1 { animation-delay: 0s; }
.cam-2 { animation-delay: 2.5s; }
.cam-3 { animation-delay: 5s; }
.cam-4 { animation-delay: 7.5s; }

@keyframes xfade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}

/* Spec tags: absolute on desktop, inline grid on mobile */
.spec-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.spec-tag {
    position: absolute;
    background: rgba(28, 31, 40, 0.92);
    border-left: 4px solid var(--accent-green);
    padding: 9px 14px;
    font-size: 0.82rem;
    line-height: 1.35;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    white-space: nowrap;
    border-radius: 0 4px 4px 0;
}

.spec-tag strong { color: var(--accent-green); display: block; font-size: 0.88rem; margin-bottom: 2px; }

.spec-1 { top: 8%;  left: 0; }
.spec-2 { top: 8%;  right: 0; border-left: none; border-right: 4px solid var(--accent-green); border-radius: 4px 0 0 4px; }
.spec-3 { bottom: 8%; left: 0; }
.spec-4 { bottom: 8%; right: 0; border-left: none; border-right: 4px solid var(--accent-green); border-radius: 4px 0 0 4px; }

.spec-grid-mobile { display: none; }

/* ============================================
   PROOF SECTION
============================================ */
.proof-section {
    padding: 60px 6% 30px 6%;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, #1c1f28 100%);
}

.proof-header { max-width: 850px; margin: 0 auto 35px auto; }
.proof-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.15;
}
.proof-header p { font-size: 1.1rem; color: var(--text-gray); line-height: 1.65; }

.video-wrapper { width: 62%; margin: 0 auto; position: relative; }

.video-bubble {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 173, 116, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 173, 116, 0.08);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.6), 0 0 60px rgba(0, 173, 116, 0.18);
    border-color: var(--accent-green);
}

.video-bubble video { width: 100%; display: block; object-fit: cover; cursor: pointer; }

.unmute-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 173, 116, 0.92);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 173, 116, 0.7); }
    70%  { box-shadow: 0 0 0 20px rgba(0, 173, 116, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 173, 116, 0); }
}

/* ============================================
   VALUE SECTION
============================================ */
.value-section {
    padding: 60px 6% 80px 6%;
    background-color: #1c1f28;
    text-align: center;
}

.value-header { margin-bottom: 50px; }
.value-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
}

/* Bottom 2 cards span into a 6-col grid centred */
.value-grid::after {
    content: none;
}

.value-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.value-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
}

.value-card {
    background-color: #1a1d25;
    border-radius: 14px;
    padding: 32px 28px 28px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid #2e3240;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, border-top-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--accent-green);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,173,116,0.15);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,173,116,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0,173,116,0.2);
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}

.value-card:hover .card-icon {
    background: rgba(0,173,116,0.18);
    border-color: rgba(0,173,116,0.4);
}

.card-icon svg { width: 26px; height: 26px; stroke: var(--accent-green); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Pain point — amber pill badge, empathetic not aggressive */
.pain-point {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.28);
    border-radius: 100px;
    padding: 5px 12px 5px 8px;
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-bottom: 18px;
    width: fit-content;
}

.pain-point::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

/* Divider between pain badge and solution */
.card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 0 18px 0;
}

.solution-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 auto 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
    padding-bottom: 20px;
}

.value-card p { font-size: 1rem; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ============================================
   HARDWARE SHOWCASE — carousel + lightbox
============================================ */
.hardware-section {
    padding: 80px 6%;
    background-color: var(--bg-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hardware-header { margin-bottom: 50px; }
.hardware-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hardware-header p { font-size: 1.1rem; color: var(--text-gray); line-height: 1.65; font-weight: 500; max-width: 800px; margin: 0 auto; }

/* Carousel track */
.hw-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hw-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.hw-track-wrap::-webkit-scrollbar { display: none; }
.hw-track-wrap.grabbing { cursor: grabbing; }

.hw-track {
    display: flex;
    gap: 20px;
    padding: 20px 4px 30px;
    width: max-content;
}

.hw-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 200px;
    background: #1a1d25;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.hw-card:hover {
    border-color: rgba(0,173,116,0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.hw-card img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}

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

.hw-card-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ccc;
    text-align: center;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hw-expand-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(0,173,116,0.15);
    border: 1px solid rgba(0,173,116,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.hw-card:hover .hw-expand-icon { opacity: 1; }
.hw-expand-icon svg { width: 13px; height: 13px; stroke: var(--accent-green); fill: none; stroke-width: 2; }

/* Scroll dots */
.hw-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.hw-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
    transition: background 0.25s, width 0.25s;
    cursor: pointer;
}

.hw-dot.active {
    background: var(--accent-green);
    width: 20px;
}

/* Lightbox */
.hw-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.hw-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.hw-lightbox-inner {
    position: relative;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.hw-lightbox img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.hw-lightbox.open img { transform: scale(1); }

.hw-lightbox-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hw-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #aaa;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.hw-lightbox-close:hover { background: rgba(255,255,255,0.16); color: #fff; }

.hw-lightbox-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.hw-lightbox-nav button {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #aaa;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hw-lightbox-nav button:hover { background: rgba(255,255,255,0.14); color: #fff; }
.hw-lightbox-nav svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   GOOGLE REVIEWS SECTION
============================================ */
.reviews-section {
    padding: 80px 6%;
    background: #161820;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.reviews-header { margin-bottom: 50px; }
.reviews-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.reviews-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.reviews-score {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
}

.reviews-stars-row { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.reviews-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.8rem; color: #555; font-weight: 600; }

/* Auto-scroll carousel */
.reviews-carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.reviews-track-outer {
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.reviews-track-outer::before,
.reviews-track-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.reviews-track-outer::before { left: 0; background: linear-gradient(to right, #161820, transparent); }
.reviews-track-outer::after  { right: 0; background: linear-gradient(to left, #161820, transparent); }

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 16px 4px 20px;
    width: max-content;
    will-change: transform;
    cursor: grab;
}

.reviews-track.paused { animation-play-state: paused !important; }
.reviews-track.grabbing { cursor: grabbing; }

.review-card {
    background: #1a1d25;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 26px 22px;
    text-align: left;
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
    border-color: rgba(0,173,116,0.25);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,173,116,0.15);
    border: 1px solid rgba(0,173,116,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    flex-shrink: 0;
}

.review-meta strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-white);
}

.review-stars { color: #f59e0b; font-size: 0.82rem; margin-bottom: 10px; letter-spacing: 1px; }

.review-text {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.7;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }

/* Arrow nav buttons */
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.reviews-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    font-family: inherit;
}

.reviews-nav button:hover {
    background: rgba(0,173,116,0.1);
    border-color: rgba(0,173,116,0.4);
    color: var(--accent-green);
}

.reviews-nav svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TRUST BAR — 2×3 grid, icon + single label
============================================ */
.trust-section {
    background: linear-gradient(135deg, #161820 0%, #1a1d25 100%);
    padding: 70px 6%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #444;
    margin-bottom: 44px;
    font-weight: 600;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.trust-item:hover {
    border-color: rgba(0,173,116,0.35);
    background: rgba(0,173,116,0.05);
    transform: translateY(-4px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0,173,116,0.1);
    border: 1px solid rgba(0,173,116,0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.35;
}

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

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

/* ============================================
   VALUE CARD — modal "learn more" trigger
============================================ */
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,173,116,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(0,173,116,0.2);
    flex-shrink: 0;
}

.card-icon svg { width: 24px; height: 24px; stroke: var(--accent-green); fill: none; }

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-green);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: gap 0.2s, opacity 0.2s;
    font-family: inherit;
}

.learn-more-btn:hover { gap: 10px; opacity: 0.85; }
.learn-more-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; transition: transform 0.2s; }
.learn-more-btn:hover svg { transform: translateX(3px); }

/* ============================================
   MODAL
============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #1c1f28;
    border: 1px solid rgba(0,173,116,0.25);
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-box .modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,173,116,0.1);
    border: 1px solid rgba(0,173,116,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-box .modal-icon svg { width: 28px; height: 28px; stroke: var(--accent-green); fill: none; }

.modal-pain {
    font-size: 0.82rem;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-pain::before { content: '✕'; }

/* ============================================
   MODAL — fully branded
============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #1a1d25;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--accent-green);
    border-radius: 16px;
    max-width: 580px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,173,116,0.1);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
    overflow: hidden;
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

/* Modal header bar */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}

.modal-logo {
    height: 22px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.modal-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #777;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

/* Modal body */
.modal-content {
    padding: 28px 28px 24px;
}

.modal-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.modal-box .modal-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0,173,116,0.1);
    border: 1px solid rgba(0,173,116,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box .modal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.modal-pain {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217,119,6,0.12);
    border: 1px solid rgba(217,119,6,0.28);
    border-radius: 100px;
    padding: 5px 12px 5px 8px;
    font-size: 0.73rem;
    color: #f59e0b;
    font-weight: 600;
    line-height: 1.3;
}

.modal-pain::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 14px 0 14px;
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 0 18px;
}

.modal-body {
    font-size: 0.97rem;
    color: #b0b5c0;
    line-height: 1.75;
    margin: 0;
}

/* Modal footer */
.modal-footer {
    padding: 20px 28px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.15);
    flex-wrap: wrap;
}

.modal-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: #fff;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.modal-cta-primary:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,173,116,0.4);
}

.modal-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.1);
    color: #25D366;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(37,211,102,0.3);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
    font-family: inherit;
}

.modal-cta-wa:hover {
    background: rgba(37,211,102,0.18);
    border-color: rgba(37,211,102,0.6);
    transform: translateY(-2px);
}

.modal-cta-wa svg, .modal-cta-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 520px) {
    .modal-footer { flex-direction: column; }
    .modal-cta-primary, .modal-cta-wa { width: 100%; justify-content: center; }
    .modal-content { padding: 22px 20px 18px; }
    .modal-header { padding: 16px 20px; }
    .modal-footer { padding: 16px 20px 20px; }
}

/* ============================================
   VIDEO PLAYER — poster + play button
============================================ */
.video-player-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0,173,116,0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,173,116,0.08);
    background: #000;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.video-player-wrap:hover { border-color: var(--accent-green); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(0,173,116,0.18); }

.video-player-wrap video { width: 100%; display: block; object-fit: cover; }

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(28,31,40,0.7) 0%, rgba(0,0,0,0.5) 100%);
    transition: opacity 0.3s;
}

.video-play-overlay.hidden { opacity: 0; pointer-events: none; }

.play-btn-circle {
    width: 76px;
    height: 76px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(0,173,116,0.5);
    animation: playPulse 2.2s infinite;
    transition: transform 0.2s;
}

.video-player-wrap:hover .play-btn-circle { transform: scale(1.08); }

@keyframes playPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,173,116,0.55); }
    70%  { box-shadow: 0 0 0 22px rgba(0,173,116,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,173,116,0); }
}

.play-btn-circle svg { width: 30px; height: 30px; fill: white; margin-left: 4px; }

.play-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
}

/* ============================================
   FORM SECTION
============================================ */
.form-section {
    padding: 100px 20px;
    background-color: var(--card-bg);
}

.form-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.form-container h2 {
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-container > div > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group { margin-bottom: 22px; flex: 1; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: #ccc; }

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s, background 0.25s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(0, 173, 116, 0.04);
}

select.form-control {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    padding-right: 38px;
    background-color: rgba(0,0,0,0.35);
}

select.form-control option { background-color: #242833; color: #fff; }

#successMessage {
    display: none;
    background: rgba(0, 173, 116, 0.08);
    border: 1px solid var(--accent-green);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
}

#successMessage h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-green);
    margin-top: 0;
    font-size: 2rem;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
============================================ */
footer {
    padding: 60px 20px 40px;
    text-align: center;
    background: #0b0c10;
    border-top: 1px solid #1a1e29;
}

.contact-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.contact-links a:hover { color: #fff; }

.policy-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.policy-links a { color: var(--text-gray); text-decoration: underline; transition: color 0.2s; }
.policy-links a:hover { color: #fff; text-decoration: none; }
.policy-links span { color: var(--border-color); }

.footer-legal {
    margin-top: 30px;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.9;
}

.pierpont-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    margin-top: 40px;
    transition: transform 0.2s, background 0.2s;
}

.pierpont-badge:hover { transform: translateY(-3px); background: rgba(255,255,255,0.07); }
.pierpont-logo { height: 20px; filter: brightness(0) invert(1); opacity: 0.65; }
.pierpont-text { color: #777; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-left: 1px solid #333; padding-left: 15px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .main-header {
        flex-direction: column;
        gap: 14px;
        padding: 18px 5%;
        text-align: center;
    }

    .logo-container { flex-direction: column; gap: 10px; }

    .header-tagline {
        border-left: none;
        border-top: 2px solid var(--accent-green);
        padding-left: 0;
        padding-top: 10px;
        max-width: 100%;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5% 30px;
        gap: 0;
        min-height: auto;
    }

    .hero-text { max-width: 100%; }
    .social-proof { justify-content: center; }
    .cta-wrapper { align-items: center; }
    .fud-reducer { justify-content: center; }
    .impact-statement { text-align: left; }
    .stat-bar { width: 100%; }
    .stat-number { font-size: 1.3rem; }
    .logo-strip-inner { flex-direction: column; gap: 16px; text-align: center; }
    .logo-strip-label { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .logo-strip-logos { justify-content: center; gap: 24px; }

    /* HERO VISUAL MOBILE */
    .hero-visual { width: 100%; }
    .glow-accent { width: 280px; height: 280px; }
    .camera-stage { max-width: 90%; }
    .product-title { font-size: 1.3rem; }

    /* Hide absolute spec tags on mobile, show grid instead */
    .spec-overlay { display: none; }

    .spec-grid-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 14px;
        width: 100%;
    }

    .spec-grid-mobile .spec-tag {
        position: static;
        white-space: normal;
        text-align: center;
        font-size: 0.75rem;
        border-left: none;
        border-top: 3px solid var(--accent-green);
        border-radius: 6px;
        padding: 10px 10px;
        background: rgba(28, 31, 40, 0.95);
    }

    .spec-grid-mobile .spec-tag strong {
        font-size: 0.78rem;
        margin-bottom: 3px;
    }

    .video-wrapper { width: 95%; }
    .hw-card { width: 160px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .form-container { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 0; }

    .wa-fab { bottom: 18px; right: 14px; }
    .wa-bubble { width: 270px; }
}

@media (max-width: 992px) {
    /* 1. Value Grid: High Specificity Stack */
    body .value-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 20px !important;
    }
    
    body .value-card { 
        width: 100% !important; 
        margin-left: 0 !important; 
        margin-right: 0 !important;
    }
    
    body .hw-card { 
        width: 145px !important; 
    }

    /* 2. Hero Section Fixes */
    body .hero-inner {
        flex-direction: column !important;
        padding-top: 20px !important;
    }
    body .hero-text {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    body .cta-wrapper {
        align-items: center !important;
    }
    body .social-proof, 
    body .audience-tags {
        justify-content: center !important;
    }

    /* 3. Logo Strip Wrap Fix */
    body .logo-strip-inner {
        flex-direction: column !important;
        gap: 12px !important;
    }
    body .logo-strip-label {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        padding-right: 0 !important;
        padding-bottom: 10px !important;
        margin-right: 0 !important;
    }
    body .logo-strip-logos {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px 24px !important;
    }

    /* 4. Lightbox Close Button Fix (Preserved) */
    .hw-lightbox-close {
        width: 50px !important;
        height: 50px !important;
        padding: 15px !important; 
        font-size: 2rem !important;
        background: rgba(0,0,0,0.5) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        position: absolute !important; 
        top: 15px !important;
        right: 15px !important;
        z-index: 9999 !important; 
    }
}