@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');

:root {
    --navy: #16243F;
    --gold: #E8A93D;
    --cream: #F7F1E2;
    --deep-gold: #C9851F;
    --red: #C82025;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

/* BUTTONS */
.btn {
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--deep-gold); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #A0181D; }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--navy); }

/* HEADER */
header {
    background: var(--navy);
    padding: 1rem 0;
    border-bottom: 3px solid var(--gold);
    position: sticky; top: 0; z-index: 10;
}
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; }
.logo span { color: var(--cream); }
nav a { color: var(--cream); text-decoration: none; margin-left: 1.5rem; font-weight: 500; font-size: 0.9rem; }
nav a:hover { color: var(--gold); }
nav .btn-gold { padding: 0.5rem 1.25rem; font-size: 1rem; margin-left: 1.5rem; }

/* HERO */
.hero {
    background: var(--navy);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 3rem;
}
.hero-text { z-index: 2; }
.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 400px;
}
.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

/* USES STRIP */
.uses-strip {
    background: var(--cream);
    padding: 4rem 0;
    text-align: center;
}
.uses-strip h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 2rem; }
.use-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.use-card {
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.use-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.use-mascot {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 0.75rem;
    border-radius: 4px;
}
.use-card h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.use-card p { color: #5A6575; font-size: 0.9rem; line-height: 1.5; }

/* PRODUCT STRIP */
.products-strip {
    background: var(--navy);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.products-strip .container { text-align: center; }
.products-strip h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 2rem; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--gold); }
.product-card .price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.25rem;
}
.product-card h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 0.5rem; }
.product-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1.25rem; }

/* HOW IT WORKS */
.how-it-works { padding: 4rem 0; text-align: center; }
.how-it-works h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 2rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
    border: 2px solid var(--navy);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-num {
    width: 3rem; height: 3rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: #5A6575; font-size: 0.9rem; }

/* WHY ZIP */
.why-zip { background: var(--navy); padding: 4rem 0; text-align: center; }
.why-zip h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 2rem; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature { padding: 1.5rem; }
.feature .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* TESTIMONIALS */
.testimonials { padding: 4rem 0; text-align: center; }
.testimonials h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 2rem; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote {
    border: 2px solid var(--navy);
    border-left: 6px solid var(--gold);
    border-radius: 4px;
    padding: 1.5rem;
    text-align: left;
}
.quote p { font-style: italic; margin-bottom: 0.75rem; color: var(--navy); }
.quote .author { font-weight: 700; color: var(--deep-gold); font-size: 0.85rem; }

/* CTA */
.cta-section { background: var(--gold); padding: 4rem 0; text-align: center; }
.cta-section h2 { font-size: 3rem; color: var(--navy); margin-bottom: 0.75rem; }
.cta-section p { font-size: 1.05rem; color: var(--navy); margin-bottom: 1.5rem; }

/* FOOTER */
footer { background: var(--navy); padding: 2rem 0; text-align: center; border-top: 3px solid var(--gold); }
footer p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
footer a { color: var(--gold); text-decoration: none; }

/* MOBILE */
@media (max-width: 768px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual img { max-width: 280px; }
    .product-cards, .use-cards, .features, .steps, .quotes { grid-template-columns: 1fr; }
    nav a { margin-left: 0.75rem; font-size: 0.8rem; }
    nav .btn-gold { margin-left: 0.75rem; }
}
@media (max-width: 480px) {
    .hero { min-height: auto; padding: 2rem 0; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-visual img { max-width: 220px; }
    header .container { flex-direction: column; gap: 0.75rem; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    nav a, nav .btn-gold { margin: 0; }
}