/* ============================================
MATRACK DESIGN SYSTEM — EXACT MATCH TO MATRACKINC.COM
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f5f7fa;

    --text-dark: #1a1d29;
    --text-body: #4a5568;
    --text-muted: #6c757d;
    --text-light: #a0aec0;

    --orange: #ff6b35;
    --orange-hover: #e85a2a;
    --orange-light: #fff5f2;

    --green: #10b981;
    --green-light: #d1fae5;
    --green-dark: #059669;

    --blue: #3b82f6;
    --blue-light: #dbeafe;

    --teal: #14b8a6;
    --teal-light: #ccfbf1;

    --border: #e2e8f0;
    --border-light: #edf2f7;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter,sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CES BANNER ===== */
.ces-banner {
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ces-banner span {
    opacity: 0.9;
    font-weight: 500;
    margin-left: 4px;
}

/* ===== HEADER / NAV ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-body);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.nav-phone {
    font-weight: 700 !important;
    font-size: 16px !important;
}

.btn-order {
    background-color: #e5f6fb !important;
    color: #148899 !important;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-order:hover {
    color: #148899;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, .3);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-dark, #1a1a2e);
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.nav-toggle:hover {
    background: var(--bg-alt, #f5f7fa);
}
.nav-toggle .nav-toggle-icon {
    position: absolute;
}
.nav-toggle .nav-icon-close { font-size: 26px; }
@media (max-width: 768px) {
    .nav-toggle { display: flex; position: relative; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-top: 1px solid var(--border, #e5e7eb);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light, #f0f0f0);
        font-size: 15px;
    }
    .nav-links a:last-child { border-bottom: none;padding: 12px;margin-top: 7px; }
}
@media (min-width: 769px) {
    .nav-links { display: flex !important; }
}

/* ===== HERO ===== */
.hero {
    padding: 20px 0 80px;
    background: var(--white);
}
.hero .container {
    max-width: 1440px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgba(18, 40, 46, .7);
    border: 1px solid #dcf4f7;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #4a5568;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 36px;
}

.hero-bullets li {
    font-size: 16px;
    color: var(--text-muted);
    padding: 8px 0 8px 1.75em;
    position: relative;
}

.hero-bullets li strong {
    color: var(--text-muted);
    font-weight: 700;
}

.hero-bullets li .check {
    color: var(--green);
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 150, 68, .3);
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #007a3a 0, #148899 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 68, .4);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dae8e9;
    color: #148899;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #dae8e9;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #dae8e9;
    color: #148899;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, .3);
}

/* Trust badges */
.trust-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-badge {
    align-items: center;
    gap: 10px;
}
.rating i {
    color: #ffc107;
    font-size: 13px;
}
.trust-badge img {
    height: 32px;
}

.trust-badge .score {
    font-size: 16px;
    font-weight: 800;
    color: #4a5568;
}

/* Video */
.hero-video-col {
    position: relative;
}

.video-wrap {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    background: #000;
    position: relative;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vid-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 8px;
}

.vid-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.vid-price .price {
    font-size: 28px;
    font-weight: 800;
    color: #4a5568;
}

.vid-price .price-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 600;
}

/* ===== PRICING BAR ===== */
.pricing-bar {
    background: #e4f1d87a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.pricing-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pb-item {
    text-align: center;
}

.pb-device {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.pb-cost {
    font-size: 40px;
    font-weight: 700;
    color: #4a5568;
    letter-spacing: -1px;
}

.pb-cost .per {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.pb-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pb-op {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
}

.pb-total .pb-cost {
    color: var(--green);
}

.pb-total .pb-note {
    color: var(--green-dark);
    font-weight: 700;
}

/* ===== AWARDS ROW ===== */
.awards-row {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.awards-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13rem;
    flex-wrap: wrap;
}

.award-item {
    align-items: center;
    gap: 14px;
}

.award-item img {
    height: 36px;
    margin: 0 auto;
}

.award-item .award-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== CES GALLERY ===== */
.ces-gallery {
    padding: 90px 0;
    background: var(--white);
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.section-top h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.2;
}

.section-top p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
    max-width: 500px;
    line-height: 1.6;
}

.booth-badge {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    border: 1px solid #00c2a8;
    color: rgba(18, 40, 46, .7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-photo {
    aspect-ratio: 2.5/3;
    border-radius: 12px;
    overflow: hidden;
    border: 2px dashed var(--border);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: all 0.3s;
}
.gallery-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gp-icon {
    font-size: 36px;
    opacity: 0.2;
}

.gp-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.gp-sub {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
}

.gallery-cap {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(180deg, #dcf4f7 0, rgba(220, 244, 247, .4) 100%);
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4a5568;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* ===== SECTION HEADERS ===== */
.section {
    padding: 90px 0;
}

.section.alt {
    background: #e4f1d87a;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 64px;
}
.pricing-bar .section-header {
    margin-bottom: 0;
}

.section-header .label {
    display: inline-block;
    border: 1px solid #00c2a8;
    border-radius: 999px;
    color: rgba(18, 40, 46, .7);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== VS COMPARISON ===== */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.vs-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.vs-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.vs-card.old {
    border-color: rgba(239, 68, 68, 0.3);
    background: #fef2f2;
}

.vs-card.old h3 {
    color: #ef4444;
}

.vs-card.new {
    border-color: var(--green);
    background: #ecfdf5;
}

.vs-card.new h3 {
    color: var(--green-dark);
}

.vs-list {
    list-style: none;
}

.vs-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-body);
}

.vs-list li:last-child {
    border-bottom: none;
}

.vs-icon {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.f-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.f-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.f-card .f-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.f-icon.orange { background: #fff3ef; }
.f-icon.green { background: #ecfdf5; }
.f-icon.blue { background: #eff6ff; }

.f-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
}

.f-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.f-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
}

.f-tag.eld { background: #ecfdf5; color: #16a34a; }
.f-tag.cam { background: #fff3ef; color: #e8461e; }
.f-tag.combo { background: #eff6ff; color: var(--blue); }

/* ===== ROI ===== */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.roi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.roi-num {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #4a5568;
}

.roi-label {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.s-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    counter-increment: step;
    box-shadow: var(--shadow);
}

.s-card::before {
    content: counter(step);
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    opacity: 0.30;
    display: block;
    margin-bottom: 16px;
}

.s-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
}

.s-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TIERS ===== */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.t-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.t-card.pop {
    box-shadow: 0 0 0 1px #00c2a8, var(--shadow-lg);
    position: relative;
    transform: scale(1.05);
    border: 2px solid #00c2a8;
}

.t-card.pop:hover {
    transform: scale(1.05) translateY(-4px);
}

.t-card.pop::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 5px 18px;
    border-radius: 50px;
}

.t-name {
    font-size: 24px;
    font-weight: 800;
    color: #4a5568;
    margin-bottom: 6px;
}

.t-trucks {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.t-price {
    font-size: 36px;
    font-weight: 800;
    color: #4a5568;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.t-price .per {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.t-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.t-features {
    list-style: none;
}

.t-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-section .container::after {
    content: "";
    position: absolute;
    width: 60%;
    display: inline-block;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    height: 100%;
    background: radial-gradient(circle at center, #e6fafd 0, #fff 100%);
    z-index: -1;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-contact {
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-muted);
}

.cta-contact strong {
    color: var(--text-dark);
    font-weight: 700;
}
.cta-contact strong a {
    color: #4a5568;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #2c3e50;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 32px;
    text-align: center;
    font-size: 14px;
}

.footer-logo {
    height: 50px;
    margin: 0 auto 20px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* ============================================
    NEW SECTIONS: CES EXPERIENCE
    ============================================ */

.ces-experience-section {
    background: var(--white);
}

.ces-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ces-experience-intro {
    font-size: 17px;
    color: var(--text-body);
    font-weight: 600;
    margin-bottom: 28px;
}

.ces-experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ces-experience-list li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ces-exp-icon {
    width: 48px;
    height: 48px;
    /* border-radius: 12px; */
    /* background: linear-gradient(135deg, #dcf4f7 0%, #e4f1d8 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    /* border: 1px solid #c5eaf0; */
}
.ces-exp-icon img {
    width: 35px;
    height: 35px;
}

.ces-experience-list li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 4px;
}

.ces-experience-list li p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.ces-exp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

.ces-exp-photo {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.ces-exp-photo.large {
    grid-column: 1 / -1;
}

.ces-exp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 11/9;
}

.ces-exp-photo.large img {
    aspect-ratio: 21/9;
}

.ces-exp-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 20px 12px 10px;
}

/* ============================================
    NEW SECTIONS: VIEWMASTER PRODUCT REVEAL
    ============================================ */

.viewmaster-section {
    background: var(--white);
}

.viewmaster-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

.viewmaster-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-highlight-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.vm-highlight-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: #b2e8f0;
}

.vm-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.vm-icon.orange { background: #fff3ef; }
.vm-icon.green  { background: #ecfdf5; }
.vm-icon.blue   { background: #eff6ff; }
.vm-icon.teal   { background: #ccfbf1; }

.vm-highlight-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 6px;
}

.vm-highlight-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Viewmaster Price Card */
.viewmaster-price-card {
    position: sticky;
    top: 100px;
}

.vp-card-inner {
    border: 2px solid #00c2a8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,194,168,0.15), var(--shadow-xl);
    background: var(--white);
}

.vp-card-top {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    padding: 0;
}

.vp-photo {
    width: 100%;
    overflow: hidden;
}

.vp-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.vp-card-body {
    padding: 28px;
}

.vp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.vp-price-item {
    text-align: center;
    flex: 1;
}

.vp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.vp-value {
    font-size: 28px;
    font-weight: 800;
    color: #4a5568;
}

.vp-value.free {
    color: var(--green-dark);
    font-size: 24px;
}

.vp-plus {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    flex-shrink: 0;
}

.vp-total-row {
    text-align: center;
    margin-bottom: 12px;
}

.vp-total-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.vp-total-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.1;
}

.vp-total-price span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.vp-savings {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
}

/* ============================================
    NEW SECTIONS: TRUSTED BY / SOCIAL PROOF
    ============================================ */

.trusted-section {
    background: linear-gradient(180deg, #dcf4f7 0, rgba(220, 244, 247, .3) 100%);
}

.trusted-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.trusted-stat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.trusted-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trusted-stat.highlight {
    border-color: #00c2a8;
    box-shadow: 0 0 0 1px rgba(0,194,168,0.2), var(--shadow-md);
}

.trusted-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #4a5568;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.trusted-stat.highlight .trusted-num {
    background: linear-gradient(90deg, #009644, #18adc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trusted-label {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.trusted-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.trusted-badge-item {
    text-align: center;
}

.trusted-badge-item img {
    height: 32px;
    margin: 0 auto 8px;
    opacity: 0.85;
}

.tb-stars {
    font-size: 16px;
    color: #f59e0b;
    margin-bottom: 4px;
}

.tb-score {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
   
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ces-experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .viewmaster-grid {
        grid-template-columns: 1fr;
    }

    .viewmaster-price-card {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .trusted-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
   
@media (max-width: 768px) {
    .cta-section .container::after { width: 100%;}
    .trust-row {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .hero {padding: 60px 0 60px;}
    .hero-video-col {
        order: 1;
    }
    .hero-content-col {
        order: 2;
    }
    .section {
        padding: 60px 0;
    }
    .ces-gallery {
        padding: 60px 0;
    }
    .features-grid,
    .roi-grid,
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .vs-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        padding: 16px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-inner {
        flex-direction: row;
        gap: 28px;
    }

    .nav-links {
        display: none;
    }

    .awards-inner {
        gap: 27px;
        flex-wrap: nowrap;
    }
    .award-item .award-text {
        font-size: 11px;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        padding-top: 8px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

    /* New sections mobile */
    .ces-experience-grid {
        grid-template-columns: 1fr;
    }
    .ces-experience-gallery {
        order: 1;
    }
    .ces-experience-content {
        order: 2;
    }

    .ces-exp-gallery-grid {
        grid-template-columns: 1fr;
    }

    .ces-exp-photo.large {
        grid-column: auto;
    }

    .viewmaster-grid {
        grid-template-columns: 1fr;
    }

    .trusted-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-badges {
        gap: 24px;
    }
}
   
@media (max-width: 500px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-top h2 {
        font-size: 25px;
    }
    .section-header h2 {
        font-size: 25px;
    }
    .roi-num {
        font-size: 40px;
    }
    .cta-section h2 {
        font-size: 25px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pb-cost {
        font-size: 32px;
    }

    .trusted-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trusted-num {
        font-size: 1.8rem;
    }

    .trusted-badges {
        flex-direction: column;
        gap: 20px;
    }
}
   
   
/* for hero section video and video popup */
.video-preview,.video-thumbnail-wrapper {position: relative;width: 100%}
.end-content,.forbes-badge,.rating-item,.stat-card,.watch-text {text-align: center}
.video-thumbnail {position: relative;cursor: pointer;border-radius: .75rem;overflow: hidden;box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);height: auto}
.video-preview {aspect-ratio: 16/10;background: #1f2937;overflow: hidden}
#previewVideo,.video-thumbnail-img {width: 100%;height: 100%;object-fit: cover;display: block}
.preview-badge,.watch-text span {border-radius: 9999px;color: #fff}
.preview-badge {position: absolute;top: .75rem;right: .75rem;background: #ef4444;font-size: .625rem;padding: .25rem .5rem;display: flex;align-items: center;gap: .25rem;z-index: 10}
.preview-badge .dot {width: .5rem;height: .5rem;background: #fff;border-radius: 50%;animation: 1s ease-in-out infinite pulse}
.watch-text {position: absolute;bottom: 1rem;left: 0;right: 0}
.watch-text span {background: rgba(0, 0, 0, .5);font-size: .875rem;padding: .5rem 1rem}
.video-popup {position: fixed;inset: 0;z-index: 9999;background: rgba(0, 0, 0, .95);display: none;align-items: center;justify-content: center;opacity: 0;transition: opacity .3s}
.video-popup.active {display: flex;opacity: 1}
.video-popup .close-btn {position: absolute;top: 1.5rem;right: 1.5rem;width: 3rem;height: 3rem;background: 0 0;border: none;color: rgba(255, 255, 255, .7);font-size: 2rem;cursor: pointer;border-radius: 50%;transition: .2s;display: flex;align-items: center;justify-content: center;z-index: 10001}
.video-popup .close-btn:hover {background: rgba(255, 255, 255, .1);color: #fff}
.video-popup .video-container {position: relative;width: 100%;max-width: 1000px;aspect-ratio: 16/9;margin: 2rem;background: #000;border-radius: .75rem;overflow: hidden}
.video-popup .video-container video {width: 100%;height: 100%;object-fit: contain;border-radius: .75rem}
.end-screen {position: absolute;inset: 0;background: rgba(0, 0, 0, .85);display: none;justify-content: center;animation: .5s ease-out fadeIn;align-items: center;border-radius: .75rem}
.end-screen.visible {display: flex}
.end-icon {width: 5rem;height: 5rem;background: #14b8a6;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 0 auto 1rem}
.end-icon svg {width: 2.5rem;height: 2.5rem;stroke: white;fill: none}
.end-title {font-size: 2rem;font-weight: 700;color: #fff;margin-bottom: .5rem}
.end-subtitle {color: #9ca3af;max-width: 400px;margin: 0 auto 2rem}
.end-buttons {display: flex;gap: 1rem;justify-content: center;flex-wrap: wrap}
.end-btn-secondary {color: #fff;padding: 1rem 2rem;transition: .2s;cursor: pointer;background: 0 0;border: 2px solid rgba(255, 255, 255, .3);border-radius: .75rem;font-weight: 500}
.end-btn-secondary:hover {border-color: rgba(255, 255, 255, .5);background: rgba(255, 255, 255, .1)}
.play-button-testimonial {background: linear-gradient(90deg, #009644 0, #18adc0 100%);color: #fff;border: none;border-radius: 25px;padding: 12px 20px;font-weight: 600;display: flex;align-items: center;gap: 10px;transition: background-color .3s;width: 100%;justify-content: space-between}
.play-button-testimonial:hover {background: #218838;color: #fff}
@keyframes pulse {
    0%,100% {transform: scale(1);opacity: 1}
    50% {transform: scale(1.5);opacity: .5}
}
@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}