/* ============================================
   WinRide Landing Page - Custom Styles
   Brand Colors: #FFB22C, #E9ECF4, #0B0D13, #FFFFFF
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #FFB22C;
    --primary-dark: #E69B1A;
    --primary-light: #FFCE66;
    --bg-light: #E9ECF4;
    --bg-dark: #0B0D13;
    --bg-dark-secondary: #12141A;
    --white: #FFFFFF;
    --text-dark: #0B0D13;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border-color: rgba(255, 178, 44, 0.2);
    --shadow-sm: 0 2px 8px rgba(11, 13, 19, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 13, 19, 0.1);
    --shadow-lg: 0 8px 40px rgba(11, 13, 19, 0.15);
    --shadow-primary: 0 8px 30px rgba(255, 178, 44, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-winride {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 13, 19, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar-winride.scrolled {
    background: rgba(11, 13, 19, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.nav-brand .nav-logo {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 178, 44, 0.08);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 12px 32px;
    }

    .btn-nav-cta {
        display: none;
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 178, 44, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(165deg, var(--bg-dark) 0%, #1a1c24 40%, #232630 70%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated background */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: floatSlow 12s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 178, 44, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 178, 44, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding: 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 178, 44, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 178, 44, 0.05);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-trust-avatar:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero-trust-text strong {
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-phone-mockup {
    position: relative;
    width: 280px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    background: linear-gradient(145deg, #1e2028, #2a2d38);
    border-radius: 40px;
    padding: 12px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 178, 44, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark), #141620);
    aspect-ratio: 9/19;
    display: flex;
    flex-direction: column;
}

.hero-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 0;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-phone-notch {
    width: 80px;
    height: 20px;
    background: #1e2028;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
}

.hero-phone-map {
    flex: 1;
    background: linear-gradient(180deg, #1a1d26 0%, #232630 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-map-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 178, 44, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-map-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 178, 44, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.hero-map-pulse::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

.hero-phone-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin: 12px;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 178, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
}

.hero-card-text {
    flex: 1;
}

.hero-card-title {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card-value {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.hero-card-price {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 800;
}

.hero-card-btn {
    width: 100%;
    padding: 8px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: var(--transition);
}

.hero-phone-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-phone-nav-item {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-phone-nav-item.active {
    color: var(--primary);
}

.hero-phone-nav-item i {
    font-size: 0.85rem;
}

/* Floating cards */
.hero-float-card {
    position: absolute;
    background: rgba(11, 13, 19, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.fade-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card.fade-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1.5s;
}

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

.hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-float-icon.gold {
    background: rgba(255, 178, 44, 0.15);
    color: var(--primary);
}

.hero-float-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.hero-float-info h4 {
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
}

.hero-float-info p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone-mockup {
        width: 220px;
    }

    .hero-phone-frame {
        width: 220px;
    }

    .hero-float-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    pointer-events: none;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.how-step {
    position: relative;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.how-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.how-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
}

.how-step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 178, 44, 0.08), rgba(255, 178, 44, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.how-step:hover .how-step-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.how-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.how-connector {
    position: absolute;
    top: 52px;
    left: calc(25% + 10px);
    width: calc(50% - 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(255, 178, 44, 0.2));
    z-index: 0;
}

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

    .how-connector {
        display: none;
    }
}

@media (max-width: 576px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--white);
}

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

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-icon.icon-primary {
    background: rgba(255, 178, 44, 0.1);
    color: var(--primary);
}

.feature-icon.icon-dark {
    background: rgba(11, 13, 19, 0.06);
    color: var(--bg-dark);
}

.feature-card:hover .feature-icon.icon-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-area {
    position: relative;
}

.about-image-main {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--bg-dark), #1e2028);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 178, 44, 0.05), transparent);
}

.about-car-icon {
    font-size: 5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.about-image-main p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.about-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.about-float-card.fc-1 {
    bottom: -20px;
    right: -10px;
    animation-delay: 0s;
}

.about-float-card.fc-2 {
    top: -20px;
    right: -10px;
    animation-delay: 1s;
}

.about-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-float-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.about-float-icon.gold {
    background: rgba(255, 178, 44, 0.1);
    color: var(--primary);
}

.about-float-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-float-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content h2 .highlight {
    color: var(--primary);
}

.about-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.about-highlight-item i {
    color: var(--primary);
    font-size: 1rem;
}

.about-highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-main {
        max-width: 100%;
    }

    .about-float-card {
        display: none;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-section .section-badge {
    background: rgba(255, 178, 44, 0.1);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-dark);
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3rem;
    color: rgba(255, 178, 44, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

/* ============================================
   INSTALL SECTION
   ============================================ */
.install-section {
    background: linear-gradient(165deg, var(--bg-dark) 0%, #141620 100%);
    position: relative;
    overflow: hidden;
}

.install-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 178, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.install-section .section-badge {
    background: rgba(255, 178, 44, 0.1);
}

.install-section .section-title {
    color: var(--white);
}

.install-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.install-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.install-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(255, 178, 44, 0.2);
}

.install-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
}

.install-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.install-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.install-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.install-cta p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 16px;
}

.install-note {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px 24px;
    background: rgba(255, 178, 44, 0.06);
    border: 1px solid rgba(255, 178, 44, 0.15);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.install-note p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.install-note strong {
    color: var(--primary);
}

@media (max-width: 992px) {
    .install-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--white);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1c24 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 178, 44, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-winride {
    background: var(--bg-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.contact-list i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 3px;
    width: 16px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-dark { color: var(--text-dark); }
.bg-primary { background: var(--primary); }
