/* CSS Document */
/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #F7F9FC;
    color: #1A1A1A;
    line-height: 1.5;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/hero-rv.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons a {
    padding: 12px 25px;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #1A73E8;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

/* TRUST BAR */
.trust-bar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #E5E9F0;
    text-align: center;
}

.trust-items span {
    margin: 0 20px;
    color: #6B7280;
    font-size: 0.95rem;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 60px 5%;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #6B7280;
}

/* PRICING SECTION */
.pricing {
    padding: 60px 5%;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #6B7280;
    margin-bottom: 20px;
}

.card .btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px 5%;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-style: italic;
}

