﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #C8001E;
    --red-dark: #8f0015;
    --navy: #0f1b35;
    --navy-light: #1a2a4a;
    --gold: #F5A623;
    --gold-light: #fdc962;
    --white: #ffffff;
    --off-white: #fdf8f0;
    --gray-light: #f4f1eb;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
}


/* BREADCRUMB */
.breadcrumb-wrap {
    background: white;
    border-bottom: 1px solid #e8e0d4;
}

.breadcrumb-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

    .breadcrumb-inner a {
        color: var(--red);
        text-decoration: none;
    }

        .breadcrumb-inner a:hover {
            text-decoration: underline;
        }

/* HERO */
.hero {
    background: var(--navy);
    padding: 64px 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-image: url();
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(44px, 9vw, 96px);
    color: white;
    line-height: 0.95;
    letter-spacing: 3px;
}

    .hero h1 .accent {
        color: var(--gold);
        display: block;
    }

.hero-sub {
    font-size: clamp(15px, 2.5vw, 19px);
    color: rgba(255,255,255,0.72);
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
}

    .hero-pill strong {
        color: var(--gold);
    }

.hero-img-wrap {
    width: min(600px, 92%);
    margin: 40px auto 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

    .hero-img-wrap img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

.why-icon i {
    color: #bd1a24;
}
/* RED STRIP */
.red-strip {
    background: var(--red);
    padding: 18px 24px;
    text-align: center;
}

    .red-strip h2 {
        font-family: 'Bebas Neue', cursive;
        font-size: clamp(24px, 5vw, 46px);
        color: white;
        letter-spacing: 3px;
    }

        .red-strip h2 span {
            color: var(--gold-light);
        }

/* APP DOWNLOAD STRIP */
.app-strip {
    background: var(--navy-light);
    padding: 22px 24px;
}

.app-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.app-strip-text h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: white;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.app-strip-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--navy);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

    .app-btn:hover {
        background: var(--gold-light);
    }

    .app-btn span {
        font-size: 11px;
        font-weight: 400;
        display: block;
        line-height: 1;
        color: #666;
    }

    .app-btn strong {
        display: block;
        font-size: 14px;
        line-height: 1.2;
    }

/* MAIN CONTENT */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-body {
    padding: 60px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.article-body h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(26px, 4vw, 42px);
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.article-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 28px 0 10px;
}

.article-body p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.85;
}

/* INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 26px 20px;
    border-top: 4px solid var(--red);
    text-align: center;
}

    .info-card .ic {
        font-size: 34px;
        margin-bottom: 12px;
        display: block;
    }

    .info-card h3 {
        font-family: 'Bebas Neue', cursive;
        font-size: 20px;
        color: var(--navy);
        letter-spacing: 1px;
        margin: 0 0 6px;
    }

    .info-card p {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.5;
    }

/* BIG OFFER BOX */
.offer-box {
    background: var(--navy);
    border-radius: 18px;
    padding: 48px 36px;
    text-align: center;
    margin: 44px 0;
}

.offer-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.offer-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 7vw, 76px);
    color: white;
    letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 16px;
}

    .offer-box h2 span {
        color: var(--gold);
    }

.offer-box p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 30px;
}

.offer-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .offer-btn:hover {
        background: var(--red-dark);
    }

/* FEATURE IMG */
.img-feature {
    border-radius: 16px;
    overflow: hidden;
    margin: 36px 0;
}

    .img-feature img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        display: block;
    }

.img-caption {
    background: var(--navy);
    padding: 14px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-align: center;
}

    .img-caption span {
        color: var(--gold);
        font-weight: 600;
    }

/* STEPS */
.steps-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 20px 22px;
    align-items: center;
}

.step-num {
    background: var(--red);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* PIZZA GRID */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.pizza-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

    .pizza-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
    }

.pizza-card-body {
    padding: 14px 14px 16px;
}

    .pizza-card-body h3 {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin: 0 0 8px;
    }

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.veg {
    background: #e8f5e9;
    color: #2e7d32;
}

.special {
    background: #fff3e0;
    color: #c66700;
}

span.ic i {
    color: #de3d3b;
}

/* QUOTE */
.quote-block {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 28px 28px 28px 40px;
    border-left: 5px solid var(--red);
    margin: 40px 0;
    font-size: 17px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.75;
}

    .quote-block cite {
        display: block;
        margin-top: 12px;
        font-style: normal;
        font-size: 13px;
        font-weight: 600;
        color: var(--red);
    }

/* APP SECTION */
.app-section {
    background: var(--navy);
    border-radius: 18px;
    padding: 44px 36px;
    margin: 44px 0;
    text-align:center;
}

.app-section-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(28px, 4vw, 44px);
    color: white;
    letter-spacing: 2px;
    margin-bottom: 14px;
    line-height: 1.1;
}

    .app-section-text h2 span {
        color: var(--gold);
    }

.app-section-text p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 24px;
}

    .app-features li {
        color: rgba(255,255,255,0.75);
        font-size: 14px;
        padding: 4px 0;
        text-align:center;
    }

       /* .app-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
        }*/

.app-dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content:center;
}

.app-dl-btn {
    display: inline-block;
    background: white;
    color: var(--navy);
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

    .app-dl-btn:hover {
        background: var(--gold-light);
    }

.app-phone-img {
    flex: 0 0 auto;
}

    .app-phone-img img {
        width: 160px;
        border-radius: 16px;
        display: block;
    }

/* DIVIDER */
.divider {
    height: 1px;
    background: #e5ddd2;
    margin: 56px 0;
    position: relative;
}

    .divider::after {
        content: '✦';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: var(--off-white);
        padding: 0 14px;
        color: var(--red);
        font-size: 13px;
    }

/* WHY BOXES */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 28px 0;
}



.why-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: #fff0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    margin: 32px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #eae4db;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

    .faq-q h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin: 0;
        line-height: 1.4;
    }

    .faq-q .faq-icon {
        width: 28px;
        height: 28px;
        background: var(--gray-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 18px;
        color: var(--red);
        font-weight: 700;
        transition: transform 0.3s, background 0.2s;
    }

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: white;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 100%;
}

.faq-a-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    border-top: 1px solid #f0ebe3;
    padding-top: 14px;
    margin: 0 20px;
}

/* CTA FOOTER */
.cta-footer {
    background: var(--red);
    padding: 64px 24px;
    text-align: center;
}

    .cta-footer h2 {
        font-family: 'Bebas Neue', cursive;
        font-size: clamp(34px, 6vw, 60px);
        color: white;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .cta-footer p {
        color: rgba(255,255,255,0.88);
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-footer-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.cta-btn-primary:hover {
    background: var(--gold-light);
}

.cta-btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}



@media (max-width: 640px) {
    .hero {
        padding: 44px 16px;
    }

    .offer-box {
        padding: 32px 20px;
    }

    .app-section {
        padding: 28px 20px;
    }

    .step-item {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        padding: 12px 16px;
    }

    .hero-pill {
        font-size: 8px;
    }

    .faq-a-inner {
        padding: 10px 5px;
    }
}


