:root {
    --primary: #0c7ac0;
    --primary-dark: #07527f;
    --accent: #ffb347;
    --bg: #f5f7fb;
    --text: #1f2933;
    --muted: #6b7280;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: white;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(14px);
    color: white;
}


.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.65rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
	border-radius: 10px;
}

.footer-logo .logo-img {
    height: 32px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-main {
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-sub {
    font-size: 0.78rem;
    color: #cbd5f5;
}

.navbar nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
}

.navbar nav a {
    color: #e5e7eb;
    opacity: 0.85;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.navbar nav a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: gray;
    color: var(--primary-dark);
    font-weight: 600;
}

/* HERO */

.hero {
    position: relative;
    min-height: 80vh;
    padding-top: 4.2rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(12, 122, 192, 0.7), transparent 55%),
                linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    max-width: 620px;
    padding-block: 2.5rem 3.5rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.hero h1 span {
    display: block;
    font-weight: 400;
    font-size: 0.9em;
    color: #e5e7eb;
}

.hero p {
    max-width: 540px;
    margin-bottom: 1.4rem;
    color: #e5e7eb;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.hero-autos-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.autos-text {
    flex: 1;
}

.autos-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .hero-autos-flex {
        flex-direction: column;
        text-align: center;
    }

    .autos-image img {
        width: 80%;
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.25);
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn.ghost:hover {
    background: rgba(15, 23, 42, 0.4);
}

.btn.full-width {
    width: 100%;
}

/* Hero badges */

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    font-size: 0.85rem;
}

.hero-badges div {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-badges strong {
    display: block;
    font-size: 1rem;
}

/* Sections */

.section {
    padding: 4.5rem 0;
}

.section h2 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
}

.section p {
    color: var(--muted);
}

.highlight {
    background: var(--bg);
}

.highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.45rem;
    color: var(--muted);
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.08rem;
    font-size: 0.85rem;
    color: var(--primary);
}

/* Stats */

.stats-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    box-shadow: var(--shadow-soft);
}

.stats-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    font-size: 0.9rem;
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.15rem;
}

.stat-label {
    color: var(--muted);
}

/* Product sections */

.product-section {
    background: white;
}

.product-section.alt-bg {
    background: #f9fafb;
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.product-text p {
    margin-bottom: 0.9rem;
}

/* Images */

.product-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

/* Testimonials */

.testimonials {
    text-align: center;
}

.testimonial-grid {
    margin-top: 2.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    text-align: left;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -2.6rem;
    right: 1.2rem;
    font-size: 7rem;
    color: rgba(148, 163, 184, 0.22);
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.testimonial-name {
    font-weight: 600;
    display: block;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Contact */

.contact-section {
    background: linear-gradient(135deg, #0b1120, #020617);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr);
    gap: 2.6rem;
    align-items: flex-start;
}

.contact-section p {
    color: #e5e7eb;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 1.2rem;
    color: #e5e7eb;
}

.contact-info li {
    margin-bottom: 0.35rem;
}

.contact-form {
    background: rgba(15, 23, 42, 0.92);
    padding: 1.6rem 1.5rem;
    border-radius: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
}

.form-field label {
    font-size: 0.85rem;
    color: #cbd5f5;
}

input,
textarea,
select {
    border-radius: 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 0.55rem 0.7rem;
    background: #020617;
    color: white;
    font: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: transparent;
}

textarea {
    resize: vertical;
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

/* Footer */

.footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.6rem 0 1.8rem;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 1.8rem;
    align-items: center;
}

.footer-logo .logo-mark {
    width: 30px;
    height: 30px;
}

.footer-text {
    margin-top: 0.4rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-small {
    font-size: 0.78rem;
    color: #6b7280;
}

/* Reveal on scroll */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
    .nav-content {
        gap: 1rem;
    }
    .navbar nav {
        display: none; /* keep simple for now */
    }
    .hero {
        min-height: 72vh;
    }
    .highlight-grid,
    .product-grid,
    .contact-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-text {
        padding-bottom: 2.2rem;
    }
    .hero-badges {
        gap: 0.7rem;
    }
    .section {
        padding: 3.4rem 0;
    }
    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-meta {
        text-align: left;
        align-items: flex-start;
    }
}
