/* ===== INDEX / LANDING PAGE ===== */

/* Hero */
.hero {
    color: var(--white);
    padding: 6rem 1.5rem 5.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    background: url('/static/background.jpeg') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero:hover .hero__bg-img { transform: scale(1.0); }

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28,16,4,0.92) 0%, rgba(59,26,0,0.80) 55%, rgba(124,51,3,0.70) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    background: rgba(251,191,36,0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: fadeDown 0.6s ease both;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    margin-bottom: 1rem;
    color: var(--white);
    animation: fadeDown 0.7s ease 0.1s both;
    line-height: 1.15;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #D1D5DB;
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
    animation: fadeDown 0.7s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeDown 0.7s ease 0.3s both;
}

.hero__trust {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    animation: fadeDown 0.7s ease 0.4s both;
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll-dot {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    position: relative;
}

.hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollDot 1.6s infinite;
}

/* Button size variants */
.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn--ghost {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: var(--white); }

/* Stats Bar */
.stats-bar {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.75rem 1.5rem;
}

.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
}

.stats-bar__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stats-bar__label {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

.stats-bar__divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* Quick order strip */
.quick-order-strip {
    background: linear-gradient(90deg, var(--gold-light), #FFF);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-order-strip p {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Pricing */
.pricing { background: var(--bg); }

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing__card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing__card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(249,115,22,0.15); border-color: var(--orange); }
.pricing__card--featured { border-color: var(--gold); box-shadow: 0 8px 40px rgba(251,191,36,0.2); }
.pricing__card--featured:hover { border-color: var(--gold); box-shadow: 0 16px 50px rgba(251,191,36,0.3); }

.pricing__popular {
    background: linear-gradient(90deg, var(--gold), var(--orange));
    color: var(--dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    text-align: center;
    letter-spacing: 0.04em;
}

.pricing__img-wrap {
    position: relative;
    height: 140px;
}

.pricing__img {
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.pricing__img--photo {
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: transform 0.5s ease;
}

.pricing__card:hover .pricing__img--photo {
    transform: scale(1.06);
}

.pricing__size-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--orange);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.pricing__size-badge--featured { background: var(--gold); color: var(--dark); }
.pricing__size-badge--xl       { background: var(--orange-dark); }

.pricing__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing__size {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.pricing__sub { font-size: 0.82rem; color: var(--grey); margin-bottom: 0.75rem; }

.pricing__price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.pricing__price span { font-size: 0.95rem; font-weight: 500; color: var(--grey); }

.pricing__wrap {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: var(--grey);
    background: var(--gold-light);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing__btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* How It Works */
.how-it-works { background: var(--white); }

.hiw__grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 3rem;
}

.hiw__step {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hiw__step:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(249,115,22,0.12); }

.hiw__bubble {
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(249,115,22,0.35);
}

.hiw__icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.hiw__step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.hiw__step p  { font-size: 0.88rem; color: var(--grey); line-height: 1.55; }

.hiw__connector {
    width: 40px;
    flex-shrink: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    margin-top: 4rem;
}

.hiw__cta { text-align: center; margin-top: 2.5rem; }

/* Why us */
.why { background: linear-gradient(135deg, #FFF8EE 0%, #FEF3C7 100%); }

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.why__item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    transition: transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.why__item:hover { transform: translateY(-4px); }

.why__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.why__item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.why__item p  { font-size: 0.88rem; color: var(--grey); line-height: 1.55; }

/* Section titles */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-title span { color: var(--orange); }
.section-sub {
    text-align: center;
    color: var(--grey);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* Track promo */
.track-promo { padding: 0 0 2rem; }
.track-promo__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #3B1A00 100%);
    color: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.track-promo__icon { font-size: 2.5rem; flex-shrink: 0; }
.track-promo__text { flex: 1; min-width: 200px; }
.track-promo__text h3 { color: var(--white); margin-bottom: 0.3rem; }
.track-promo__text p  { color: #D1D5DB; font-size: 0.9rem; }

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p  { opacity: 0.9; margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
    0%   { top: 4px; opacity: 1; }
    80%  { top: 14px; opacity: 0; }
    100% { top: 4px; opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
    .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 1.5rem; }
    .hiw__grid { flex-direction: column; gap: 0; }
    .hiw__connector { width: 2px; height: 28px; margin: 0 auto; }
    .hiw__step { padding: 2rem 1.25rem; }
}

@media (max-width: 600px) {
    .hero { padding: 4.5rem 1rem 4rem; min-height: 520px; }
    .hero__trust { gap: 0.6rem; font-size: 0.78rem; }
    .hero__actions { gap: 0.75rem; }
    .stats-bar { padding: 1.25rem 1rem; }
    .stats-bar__item  { padding: 0.4rem 1rem; }
    .stats-bar__num   { font-size: 1.6rem; }
    .stats-bar__divider { display: none; }
    .quick-order-strip { flex-direction: column; text-align: center; padding: 1rem; }
    .track-promo { padding: 0 0 1.5rem; }
    .track-promo__inner { padding: 1.5rem 1.25rem; text-align: center; justify-content: center; }
    .track-promo__text { text-align: center; }
    .pricing__img-wrap { height: 120px; }
    .cta-banner { padding: 3.5rem 1rem; }
    .why__grid { gap: 1.25rem; }
    .why__item { padding: 1.5rem 1.25rem; }
}
