/* =====================================================
   TEXN REWARDS - Exact Figma Design Implementation
   ===================================================== */

/* CSS Variables - Exact Figma Colors */
:root {
    /* Primary Colors */
    --color-bg-dark: #0a0a23;
    --color-bg-darker: #07071a;
    --color-bg-navy: #12112b;
    --color-bg-card: #161438;

    /* Accent Colors */
    --color-primary: #29b6f6;
    --color-primary-dark: #0d81d4;
    --color-accent-blue: #4fc3f7;

    /* Text Colors */
    --color-text-white: #ffffff;
    --color-text-gray: #9e9eb3;
    --color-text-muted: #6b6b80;

    /* Other */
    --color-star: #ffc107;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Sizing */
    --container-width: 1280px;
    --nav-height: 80px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-white);
    background: var(--color-bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 80px;
}

/* Typography Helpers */
.accent {
    color: var(--color-primary);
    font-family: var(--font-accent);
    font-style: italic;
}

.accent-italic {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-primary);
}

.blue {
    color: var(--color-primary);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background: var(--color-accent-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-gray);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #070123;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Nav Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 4px 0;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #29b6f6;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-nav {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    background: #29b6f6;
    color: #070123;
}

.btn-nav:hover {
    background: #4fc3f7;
}

/* Login Dropdown */
.nav-login-wrapper {
    position: relative;
}

.nav-login-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    transition: color 0.2s;
}

.nav-login-btn:hover {
    color: #29b6f6;
}

.nav-login-btn i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-login-btn.active i {
    transform: rotate(180deg);
}

.nav-login-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-login-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: rgba(41, 182, 246, 0.1);
}

.dropdown-item i {
    color: #29b6f6;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.section-cta .btn {
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
}

.section-cta-light .btn {
    background: #070123;
    color: #29b6f6;
    border: 2px solid #070123;
}

.section-cta-light .btn:hover {
    background: #12112b;
    border-color: #12112b;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #070123;
}

.hero-carousel {
    position: relative;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding-left: 0;
    margin-left: -60px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    white-space: nowrap;
}

.hero-accent {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: #29b6f6;
}

.hero-stat {
    font-size: 80px;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
}

.hero-stat-label {
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #9e9eb3;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
}

.btn-hero.btn-primary {
    background: #29b6f6;
    color: #070123;
    border: 2px solid #29b6f6;
}

.btn-hero.btn-primary:hover {
    background: #4fc3f7;
    border-color: #4fc3f7;
}

.btn-hero.btn-outline {
    background: transparent;
    color: #ffffff;
    border: none;
}

.btn-hero.btn-outline:hover {
    opacity: 0.8;
}

/* Kiosk Styling */
.hero-kiosk {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.kiosk-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Slide 2: Product Cards */
.hero-products {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.hero-product-card {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
}

.hero-product-card:hover {
    border-color: rgba(41, 182, 246, 0.45);
}

.hero-product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.1);
    border: 1px solid rgba(41, 182, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}

.hero-product-icon i {
    font-size: 22px;
    color: #29b6f6;
}

.hero-product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero-product-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9e9eb3;
    line-height: 1.6;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 1, 35, 0.6);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(41, 182, 246, 0.2);
    border-color: rgba(41, 182, 246, 0.5);
}

.hero-arrow i {
    font-size: 16px;
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

/* Hero Teaser Button */
.hero-teaser-btn {
    gap: 10px;
    animation: teaser-pulse 2.5s ease-in-out infinite;
}

.hero-teaser-btn:hover {
    border-color: rgba(41, 182, 246, 0.6);
    background: rgba(41, 182, 246, 0.15);
    animation: none;
}

.hero-teaser-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #070123;
    background: #29b6f6;
    padding: 3px 8px;
    border-radius: 4px;
}

.hero-teaser-btn i {
    font-size: 12px;
    color: #29b6f6;
    transition: transform 0.2s;
}

.hero-teaser-btn:hover i {
    transform: translateX(3px);
}

@keyframes teaser-pulse {
    0%, 100% { border-color: rgba(41, 182, 246, 0.2); }
    50% { border-color: rgba(41, 182, 246, 0.5); box-shadow: 0 0 20px rgba(41, 182, 246, 0.1); }
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: #29b6f6;
    border-color: #29b6f6;
}

.hero-dot:hover {
    border-color: #ffffff;
}

/* =====================================================
   SOLUTIONS SECTION
   ===================================================== */
.solutions {
    padding: 80px 0;
    background: #070123;
}

.solutions-header {
    margin-bottom: 32px;
}

.solutions-label {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 68px;
    letter-spacing: -1.2px;
    margin-bottom: 0;
}

.solutions-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    font-style: italic;
    color: #279CEF;
    line-height: 68px;
    letter-spacing: -1px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #0f0a2e;
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    border-color: rgba(41, 182, 246, 0.45);
    box-shadow: 0 0 24px rgba(41, 182, 246, 0.12);
}

.solution-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.1);
    border: 1px solid rgba(41, 182, 246, 0.3);
    border-radius: 12px;
}

.solution-card-icon i {
    font-size: 24px;
    color: #29b6f6;
}

.solution-card-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.solution-card-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9e9eb3;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews {
    padding: 60px 0 80px;
    background: #F4FBFF;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.reviews-title-group {
    display: flex;
    flex-direction: column;
}

.reviews-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #100541;
    line-height: 68px;
    letter-spacing: -1.2px;
}

.reviews-title-accent {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    font-style: italic;
    color: #279CEF;
    line-height: 68px;
    letter-spacing: -1px;
}

.reviews-nav {
    display: flex;
    gap: 10px;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 6.4px;
    background: #d9d9d9;
    border: none;
    color: #070123;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav-btn:hover {
    background: #c0c0c0;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.review-card {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-card.active {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-card-content {
    flex: 1;
    max-width: 70%;
}

.review-rating {
    margin-bottom: 24px;
}

.rating-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #100541;
}

.rating-total {
    font-size: 24px;
    font-weight: 400;
    color: #6b6b80;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 18px;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #100541;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-author {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #279CEF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-logo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.review-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =====================================================
   EVENTS SECTION
   ===================================================== */
.events {
    padding: 60px 0 80px;
    background: #070123;
}

.events-header {
    text-align: center;
    margin-bottom: 32px;
}

.events-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 68px;
    letter-spacing: -1.2px;
    text-align: center;
}

.events-title-accent {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    color: #279CEF;
    line-height: 68px;
    letter-spacing: -1px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 16px;
    padding: 48px 56px;
}

.event-card-logo {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
}

.event-card-logo img {
    width: 100%;
    height: auto;
}

.event-card-details {
    flex: 1;
}

.event-card-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.event-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.event-card-date,
.event-card-location {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9e9eb3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-card-date i,
.event-card-location i {
    color: #29b6f6;
    width: 18px;
    text-align: center;
}

.btn-event {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
}

.cta-link {
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .event-card-logo {
        width: 160px;
    }

    .event-card-info {
        align-items: center;
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: 80px 0;
    background: #f8f9fc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #100541;
    line-height: 68px;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.about-title-accent {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    font-style: italic;
    color: #279CEF;
    line-height: 68px;
    letter-spacing: -1px;
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-mission {
    background: linear-gradient(135deg, #12112b 0%, #1a1845 50%, #0f0a2e 100%);
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
}

.about-mission-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}

.about-mission-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #279CEF;
}

.about-mission-subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-mission p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #c0c0d0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-title,
    .about-title-accent {
        font-size: 36px;
        line-height: 44px;
    }

    .about-mission {
        margin-top: 0;
    }

    .about-mission-title,
    .about-mission-subtitle {
        font-size: 28px;
    }
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    padding: 60px 0;
    background: #d4e5f7;
}

.cta-card {
    background: linear-gradient(135deg, #070123 0%, #12112b 100%);
    border-radius: 16px;
    text-align: center;
}

.cta-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #29b6f6;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #9e9eb3;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
}

.btn-cta {
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 36px 24px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* =====================================================
   VIN+ & UPULLUBID LANDING PAGE
   ===================================================== */

/* Hero */
.vp-hero {
    padding: 160px 0 80px;
    background: #070123;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.vp-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.vp-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #29b6f6;
    margin-bottom: 20px;
}

.vp-hero-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.vp-hero-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #29b6f6;
}

.vp-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #9e9eb3;
    line-height: 1.7;
    margin-bottom: 36px;
}

.vp-hero-desc-secondary {
    font-size: 15px;
    color: #6b6b80;
    margin-top: -20px;
}

.vp-hero-buttons {
    justify-content: center;
}

/* Problem Section */
.vp-problem {
    padding: 80px 0;
    background: #0a0a23;
}

.vp-problem-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.vp-problem-stat {
    text-align: center;
}

.vp-big-number {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
}

.vp-big-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ef4444;
    margin-top: 8px;
}

.vp-problem-text p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 16px;
}

.vp-problem-text strong {
    color: #29b6f6;
}

.vp-trust {
    margin-top: 48px;
    text-align: center;
    padding: 24px 32px;
    background: rgba(41, 182, 246, 0.08);
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 12px;
}

.vp-trust p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9e9eb3;
    line-height: 1.6;
}

.vp-trust strong {
    color: #ffffff;
}

.vp-note {
    margin-top: 32px;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.vp-note p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b6b80;
    line-height: 1.7;
    font-style: italic;
}

/* Product Sections */
.vp-product {
    padding: 80px 0;
    background: #070123;
}

.vp-product-alt {
    background: #0a0a23;
}

.vp-product-header {
    margin-bottom: 48px;
    text-align: center;
}

.vp-product-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.vp-product-accent {
    color: #29b6f6;
}

.vp-product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #9e9eb3;
}

/* Feature Cards */
.vp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.vp-feature-card {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.3s;
}

.vp-feature-card:hover {
    border-color: rgba(41, 182, 246, 0.4);
}

.vp-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.1);
    border: 1px solid rgba(41, 182, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}

.vp-feature-icon i {
    font-size: 20px;
    color: #29b6f6;
}

.vp-feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.vp-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9e9eb3;
    line-height: 1.6;
}

/* Analytics Section */
.vp-analytics {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: 16px;
    padding: 48px;
}

.vp-analytics-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-align: center;
}

.vp-analytics-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #29b6f6;
    margin-bottom: 32px;
    text-align: center;
}

.vp-analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vp-analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.vp-analytics-item i {
    color: #29b6f6;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.vp-analytics-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}

.vp-analytics-item span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9e9eb3;
    line-height: 1.5;
}

/* Pricing Example */
.vp-pricing-example {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vp-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 36px;
    background: #1a1845;
}

.vp-pricing-header h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.vp-pricing-vin {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9e9eb3;
    margin-bottom: 8px;
}

.vp-tier {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.vp-tier-1 {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.vp-tier-4 {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.vp-pricing-max {
    text-align: right;
}

.vp-pricing-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9e9eb3;
}

.vp-pricing-amount {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.vp-pricing-breakdown {
    padding: 24px 36px;
}

.vp-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
}

.vp-pricing-row small {
    color: #9e9eb3;
    font-size: 12px;
    margin-left: 8px;
}

.vp-pricing-green span:last-child {
    color: #10b981;
}

.vp-pricing-red span:last-child {
    color: #ef4444;
}

.vp-pricing-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.vp-pricing-final {
    background: rgba(16, 185, 129, 0.1);
    margin: 8px -36px -24px;
    padding: 16px 36px !important;
    border-radius: 0 0 16px 16px;
}

.vp-pricing-final span:last-child {
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
}

/* Comparison */
.vp-comparison {
    margin-top: 48px;
}

.vp-comparison-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.vp-comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vp-comparison-card {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
}

.vp-comparison-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.vp-comparison-card > span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #29b6f6;
    display: block;
    margin-bottom: 20px;
}

.vp-comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9e9eb3;
}

.vp-comparison-row strong {
    font-size: 24px;
    color: #ffffff;
}

.vp-demand {
    text-align: left;
    margin-bottom: 16px;
}

.vp-demand span:first-child {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9e9eb3;
    margin-bottom: 8px;
}

.vp-demand-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.vp-demand-fill {
    height: 100%;
    border-radius: 4px;
}

.vp-demand-low .vp-demand-fill {
    background: #ef4444;
}

.vp-demand-high .vp-demand-fill {
    background: #10b981;
}

.vp-demand-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.vp-demand-low .vp-demand-label {
    color: #ef4444 !important;
}

.vp-demand-high .vp-demand-label {
    color: #10b981 !important;
}

.vp-comparison-callout {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.vp-comparison-callout p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

/* Catalytic Converter Section */
.vp-converter {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(41, 182, 246, 0.1);
}

.vp-converter-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.vp-converter-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #9e9eb3;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.vp-converter-example h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.vp-converter-breakdown {
    margin-top: 16px;
    background: transparent;
    border: none;
    padding: 0;
}

.vp-converter-breakdown .vp-pricing-row {
    padding: 8px 0;
    font-size: 14px;
}

/* Connection Section */
.vp-connection {
    padding: 80px 0;
    background: #070123;
}

.vp-connection-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 48px;
}

.vp-flow {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.vp-flow-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
}

.vp-flow-card {
    background: #12112b;
    border: 1px solid rgba(41, 182, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.vp-flow-card i {
    font-size: 24px;
    color: #29b6f6;
    margin-bottom: 12px;
}

.vp-flow-card h4,
.vp-flow-center h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.vp-flow-card p,
.vp-flow-center p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9e9eb3;
}

.vp-flow-arrow {
    padding: 12px 0;
    color: #9e9eb3;
    font-size: 20px;
}

.vp-flow-center {
    background: rgba(41, 182, 246, 0.1);
    border: 1px solid rgba(41, 182, 246, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: inline-block;
    min-width: 280px;
}

.vp-flow-center i {
    font-size: 24px;
    color: #29b6f6;
    margin-bottom: 12px;
}

.vp-flow-highlight {
    background: #12112b;
    border-color: rgba(16, 185, 129, 0.3);
}

.vp-connection-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.vp-connection-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #9e9eb3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.vp-connection-quote span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: #29b6f6;
    line-height: 1.5;
}

/* VIN+ CTA */
.vp-cta {
    padding: 80px 0;
    background: #0a0a23;
    text-align: center;
}

.vp-cta-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
}

.vp-cta-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #29b6f6;
}

.vp-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #9e9eb3;
    margin-bottom: 36px;
}

/* VIN+ Responsive */
@media (max-width: 768px) {
    .vp-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .vp-hero-title {
        font-size: 32px;
    }

    .vp-hero-desc {
        font-size: 16px;
    }

    .vp-hero-desc-secondary {
        font-size: 14px;
    }

    .vp-problem {
        padding: 60px 0;
    }

    .vp-problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .vp-big-number {
        font-size: 56px;
    }

    .vp-problem-text p {
        font-size: 16px;
    }

    .vp-product {
        padding: 60px 0;
    }

    .vp-product-title {
        font-size: 28px;
    }

    .vp-product-subtitle {
        font-size: 16px;
    }

    .vp-features-grid,
    .vp-analytics-grid,
    .vp-comparison-cards,
    .vp-flow-row {
        grid-template-columns: 1fr;
    }

    .vp-feature-card {
        padding: 24px;
    }

    .vp-analytics {
        padding: 32px 24px;
    }

    .vp-analytics-title {
        font-size: 24px;
    }

    .vp-pricing-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px;
    }

    .vp-pricing-max {
        text-align: center;
    }

    .vp-pricing-amount {
        font-size: 36px;
    }

    .vp-pricing-breakdown {
        padding: 20px;
    }

    .vp-pricing-row {
        font-size: 14px;
    }

    .vp-pricing-final {
        margin: 8px -20px -20px;
        padding: 16px 20px !important;
    }

    .vp-pricing-final span:last-child {
        font-size: 22px;
    }

    .vp-comparison-title {
        font-size: 24px;
    }

    .vp-comparison-card {
        padding: 24px;
    }

    .vp-comparison-callout p {
        font-size: 16px;
    }

    .vp-converter-title {
        font-size: 24px;
    }

    .vp-converter-desc {
        font-size: 16px;
    }

    .vp-connection {
        padding: 60px 0;
    }

    .vp-connection-title {
        font-size: 28px;
    }

    .vp-flow-center {
        min-width: auto;
        width: 100%;
    }

    .vp-connection-quote p {
        font-size: 16px;
    }

    .vp-connection-quote span {
        font-size: 18px;
    }

    .vp-cta {
        padding: 60px 0;
    }

    .vp-cta-title {
        font-size: 28px;
    }

    .vp-cta-desc {
        font-size: 16px;
    }

    .section-cta .btn {
        font-size: 13px;
        padding: 14px 28px;
    }
}

/* =====================================================
   DEMO / SCHEDULE PAGE
   ===================================================== */
.demo-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #070123;
    min-height: calc(100vh - 200px);
}

.demo-header {
    text-align: center;
    margin-bottom: 48px;
}

.demo-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    line-height: 68px;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.demo-title-accent {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    font-style: italic;
    color: #279CEF;
    line-height: 68px;
    letter-spacing: -1px;
}

.demo-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #9e9eb3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.demo-hint {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6b6b80;
    margin-top: 16px;
}

.demo-hint i {
    color: #29b6f6;
    margin-right: 4px;
}

.demo-scheduler {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.demo-scheduler iframe {
    display: block;
}

@media (max-width: 768px) {
    .demo-title,
    .demo-title-accent {
        font-size: 36px;
        line-height: 44px;
    }

    .demo-description {
        font-size: 16px;
    }

    .demo-scheduler iframe {
        height: 600px;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--color-bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    margin-top: auto;
}

.social-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--color-text-white);
    font-size: 20px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--color-primary);
}

.footer-links h4,
.footer-resources h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-resources ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-resources a {
    font-size: 14px;
    color: var(--color-text-gray);
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-resources a:hover {
    color: var(--color-text-white);
}

.contact-phone {
    font-size: 14px;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.contact-phone a {
    color: inherit;
    text-decoration: none;
}

.contact-phone a:hover {
    color: var(--color-primary);
}

.btn-outline-white {
    border-color: var(--color-text-white);
    color: var(--color-text-white);
}

.btn-outline-white:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-bottom a {
    color: var(--color-text-gray);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

.footer-bottom-left {
    flex-shrink: 0;
}

.footer-credit {
    margin-top: 4px;
    color: var(--color-text-muted);
}

.footer-web-promo {
    font-size: 13px;
    color: var(--color-text-muted);
    max-width: 420px;
    text-align: right;
    line-height: 1.5;
}

.footer-web-promo a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-web-promo a:hover {
    text-decoration: underline;
}

.email-svg {
    display: inline;
    width: 158px;
    height: 14px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-kiosk {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-products {
        order: 1;
    }

    .kiosk-image {
        max-width: 350px;
    }

    .hero-stat {
        font-size: 60px;
    }

    .hero-stat-label {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(7, 1, 42, 0.98);
        padding: 20px;
        gap: 15px;
        z-index: 999;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-login-wrapper {
        display: none;
    }

    .btn-nav {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-line {
        font-size: 36px;
    }


    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-wide {
        max-width: 100%;
    }

    .reviews-header {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-title,
    .reviews-title-accent {
        font-size: 36px;
        line-height: 44px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-card.active {
        flex-direction: column;
    }

    .review-card-content {
        max-width: 100%;
    }

    .rating-number {
        font-size: 36px;
    }

    .rating-total {
        font-size: 18px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-logo {
        width: 100px;
        height: 100px;
        margin-left: 0;
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .kiosk-image {
        max-width: 280px;
    }
}

/* ========================================
   REVIEWS PAGE
   ======================================== */

.reviews-page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--color-bg-dark);
}

.reviews-page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 16px;
}

.reviews-page-accent {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-style: italic;
}

.reviews-page-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.reviews-page-summary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px 32px;
}

.reviews-page-summary-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-page-summary-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-white);
}

.reviews-page-summary-stars {
    display: flex;
    gap: 3px;
}

.reviews-page-summary-stars i {
    color: #f5a623;
    font-size: 18px;
}

.reviews-page-summary-label {
    font-size: 15px;
    color: var(--color-text-gray);
    border-left: 1px solid var(--color-border);
    padding-left: 20px;
}

.reviews-page-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.reviews-filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-gray);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-text-white);
}

.reviews-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 600;
}

.reviews-page-grid-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.reviews-page-card.hidden {
    display: none;
}

.reviews-page-mid-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px 0;
}

.reviews-page-mid-cta .btn {
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reviews-page-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.reviews-page-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.reviews-page-card:hover {
    border-color: rgba(41, 182, 246, 0.3);
}

.reviews-page-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviews-page-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-page-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-white);
}

.reviews-page-score-total {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.reviews-page-stars {
    display: flex;
    gap: 2px;
}

.reviews-page-stars i {
    color: #f5a623;
    font-size: 14px;
}

.reviews-page-logo {
    width: 160px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-page-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.reviews-page-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-gray);
    flex: 1;
    margin-bottom: 20px;
}

.reviews-page-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.reviews-page-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.reviews-page-company {
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .reviews-page-hero {
        padding: 120px 0 40px;
    }

    .reviews-page-title {
        font-size: 32px;
    }

    .reviews-page-summary {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
    }

    .reviews-page-summary-label {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 12px;
    }

    .reviews-page-grid {
        grid-template-columns: 1fr;
    }

    .reviews-page-card {
        padding: 24px;
    }
}
