:root {
    --primary: #e4002b;
    --primary-dark: #9b001d;
    --secondary: #f6f8fb;
    --text: #171822;
    --muted: #6b7280;
    --accent: #ffd166;
    --white: #ffffff;
    --background: #f9fbff;
    font-size: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--primary-dark);
}

.navigation {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.navigation a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a:focus {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sign-in {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sign-in:hover {
    background: var(--primary);
    color: var(--white);
}

.hotline {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

.hotline .label {
    font-size: 0.75rem;
    color: var(--muted);
}

.hotline .number {
    font-size: 1.1rem;
    color: var(--primary);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    padding: 4rem 4rem 3rem;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(228, 0, 43, 0.08), rgba(228, 0, 43, 0)), var(--white);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-eyebrow {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--muted);
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-cta .primary,
.hero-cta .secondary {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta .primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(228, 0, 43, 0.25);
}

.hero-cta .primary:hover {
    transform: translateY(-2px);
}

.hero-cta .secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(228, 0, 43, 0.2);
}

.hero-cta .secondary:hover {
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--primary);
}

.hero-badges span {
    background: rgba(228, 0, 43, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.plate {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, #fff, #f5f7fb);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drumstick {
    width: 8rem;
    height: 5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 80% 20% 40% 60%;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.3);
    position: relative;
}

.drumstick::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    background: #facc15;
    border-radius: 50%;
}

.sauce {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 3rem;
    height: 3rem;
    background: radial-gradient(circle at top, #ef4444, #b91c1c);
    border-radius: 50% 45% 55% 50%;
}

.testimonial {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 18rem;
}

.testimonial p {
    font-style: italic;
    color: var(--muted);
}

.media {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    padding: 3rem 4rem;
}

.video-card,
.news-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.video-card h2,
.news-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.video-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.news-list li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 1rem;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.news-list p {
    color: var(--muted);
    font-size: 0.95rem;
}

.news-list span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(228, 0, 43, 0.2);
    color: var(--primary);
    font-weight: 600;
    transition: background 0.2s ease;
}

.more-link:hover {
    background: rgba(228, 0, 43, 0.08);
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 4rem;
}

.service-item {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-item .icon {
    font-size: 2.5rem;
}

.service-item h3 {
    font-size: 1.2rem;
}

.service-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.ghost {
    background: transparent;
    border: 1px solid rgba(228, 0, 43, 0.2);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.stories {
    padding: 3rem 4rem;
    background: var(--secondary);
}

.stories-header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-card p {
    color: var(--muted);
}

.story-card a {
    color: var(--primary);
    font-weight: 600;
}

.app-promo {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 3rem 4rem 4rem;
    background: linear-gradient(135deg, rgba(228, 0, 43, 0.9), rgba(228, 0, 43, 0.7));
    color: var(--white);
}

.app-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-text p {
    color: rgba(255, 255, 255, 0.85);
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: inherit;
    font-weight: 600;
    transition: background 0.2s ease;
}

.store:hover {
    background: rgba(255, 255, 255, 0.15);
}

.phone {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 1.5rem;
    width: 14rem;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.screen {
    background: var(--white);
    color: var(--text);
    border-radius: 1.5rem;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screen-title {
    font-weight: 600;
    color: var(--primary);
}

.screen ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.screen li {
    font-weight: 500;
}

.main-footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
}

.main-footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.main-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.main-footer li {
    font-size: 0.95rem;
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.order-now {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(228, 0, 43, 0.35);
    transition: transform 0.2s ease;
}

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

@media (max-width: 1200px) {
    .top-bar {
        padding: 1rem 2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-badges {
        justify-content: center;
    }

    .media {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-text {
        align-items: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .main-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .top-bar {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem 2rem;
    }

    .media,
    .services,
    .stories,
    .app-promo {
        padding: 2.5rem 1.5rem;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .main-footer {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 2rem;
    }

    .order-now {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
