@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --bg: #faf5f0;
    --bg-card: #ffffff;
    --bg-soft: #f5f0eb;
    --primary: #ff6b6b;
    --primary-hover: #e05555;
    --text: #2d3436;
    --text-muted: #636e72;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
    --police: #1565c0;
    --firefighter: #d32f2f;
    --racing: #00acc1;
    --unicorn: #e91e63;
    --petronas: #00897b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f6 50%, #f8f0ff 100%);
}

.hero-content {
    max-width: 500px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 440px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.hero-image {
    max-width: 440px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.emotional-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.emotional-banner img {
    width: 100%;
    height: auto;
    display: block;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

.edition-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.edition-pill {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.edition-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 80px;
}

.feature-strip::-webkit-scrollbar {
    height: 6px;
}

.feature-strip::-webkit-scrollbar-track {
    background: var(--bg-soft);
    border-radius: 3px;
}

.feature-strip::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.feature-strip img {
    flex-shrink: 0;
    width: 280px;
    height: auto;
    border-radius: var(--radius-sm);
    scroll-snap-align: start;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-strip img:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.power-section {
    margin-bottom: 80px;
}

.power-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.power-visual {
    position: sticky;
    top: 100px;
}

.power-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.power-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.power-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 4px solid var(--card-accent, var(--primary));
    transition: var(--transition);
}

.power-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}

.power-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-accent, var(--primary));
    color: #fff;
    border-radius: 12px;
}

.power-card-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.power-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.spec-section {
    text-align: center;
    margin-bottom: 80px;
}

.spec-hero {
    max-width: 500px;
    margin: 0 auto 40px;
}

.spec-hero img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.spec-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.spec-badge {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px 24px;
    min-width: 100px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.spec-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.spec-badge-icon {
    font-size: 22px;
    line-height: 1;
}

.spec-badge-value {
    font-size: 20px;
    font-weight: 700;
}

.spec-badge-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-cta {
    text-align: center;
}

.spec-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.spec-price-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item img {
    height: 64px;
    width: auto;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    line-height: 1.8;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-soft);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        min-height: auto;
        padding: 40px 20px;
        gap: 30px;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image {
        max-width: 300px;
    }
    .container {
        padding: 40px 20px;
    }
    .power-grid {
        grid-template-columns: 1fr;
    }
    .power-visual {
        position: static;
    }
    .power-visual img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px;
    }
    .trust-bar {
        gap: 16px;
    }
    .trust-item img {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .feature-strip img {
        width: 220px;
    }
}

.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid var(--bg-soft);
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}
