﻿/* ============================================================
   eat24 Corporate Page â€” Talabat Corporate Style
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3B0000;
    background: #FDF5EC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.corp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.corp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #C5960C;
    padding: 0 56px;
}
.corp-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
}
.corp-nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.corp-nav__logo img {
    height: 52px;
}
.corp-nav__badge {
    font-size: 18px;
    font-weight: 700;
    color: #CDFF50;
    padding-left: 20px;
    border-left: 2px solid rgba(255,255,255,.35);
}
.corp-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.corp-nav__link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: opacity .2s;
    white-space: nowrap;
}
.corp-nav__link:hover { opacity: .75; }
.corp-nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-shrink: 0;
}
.corp-nav__contact-btn {
    font-size: 15px;
    font-weight: 700;
    color: #3B0000;
    background: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all .2s;
    white-space: nowrap;
}
.corp-nav__contact-btn:hover {
    background: #FDF5EC;
    transform: translateY(-1px);
}
.corp-nav__lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #C5960C;
    background: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all .2s;
}
.corp-nav__lang-btn i {
    font-size: 18px;
    color: #C5960C;
}
.corp-nav__lang-btn:hover { background: #FDF5EC; }
.corp-nav__mobile-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    padding: 8px;
    margin-left: auto;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */
.corp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.corp-mobile-menu.active { visibility: visible; opacity: 1; }
.corp-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.corp-mobile-menu__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s;
    display: flex;
    flex-direction: column;
}
.corp-mobile-menu.active .corp-mobile-menu__panel { transform: translateX(0); }
.corp-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.corp-mobile-menu__logo { height: 36px; }
.corp-mobile-menu__close { font-size: 20px; color: #333; padding: 4px; }
.corp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.corp-mobile-menu__nav a {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background .2s;
}
.corp-mobile-menu__nav a:hover { background: #FDF5EC; color: #3B0000; }


/* ============================================================
   HERO
   ============================================================ */
.corp-hero {
    background: #C5960C;
    padding: 80px 0 0;
    overflow: hidden;
}
.corp-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    min-height: 600px;
}
.corp-hero__text {
    flex: 1;
    padding-bottom: 80px;
    padding-top: 40px;
}
.corp-hero__title {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -2px;
}
.corp-hero__highlight {
    color: #CDFF50;
    position: relative;
    display: inline;
    white-space: nowrap;
}
.corp-hero__highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -12px;
    right: -12px;
    top: 8px;
    background: #3B0000;
    z-index: -1;
    transform: skewX(-4deg);
    border-radius: 4px;
}
.corp-hero__sub {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    margin-bottom: 32px;
}
.corp-hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #CDFF50;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all .2s;
}
.corp-hero__cta:hover {
    background: #d8ff70;
    transform: translateY(-2px);
}
.corp-hero__image {
    flex: 0 0 40%;
    max-width: 520px;
    align-self: flex-start;
    margin-right: -56px;
}
.corp-hero__image-frame {
    border: 6px solid #3B0000;
    border-radius: 40px;
    overflow: hidden;
    transform: rotate(3deg);
    margin-top: 20px;
}
.corp-hero__image-frame img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}


/* ============================================================
   DELIVERING MOMENTS
   ============================================================ */
.corp-moments {
    padding: 100px 0 80px;
    background: #FDF5EC;
}
.corp-moments__title {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 64px;
    line-height: 1.15;
}
.corp-moments__italic {
    color: #C5960C;
    position: relative;
    display: inline-block;
}
.corp-moments__italic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #CDFF50;
    border-radius: 3px;
}
.corp-moments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.corp-moments__icon {
    margin-bottom: 24px;
    height: 72px;
    display: flex;
    align-items: flex-end;
}
.corp-moments__icon svg {
    display: block;
}
.corp-moments__card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 12px;
}
.corp-moments__card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* ============================================================
   CREATING VALUE / DRIVING GROWTH
   ============================================================ */
.corp-growth {
    padding: 120px 0;
    background: #FDF5EC;
    overflow: hidden;
}
.corp-growth__inner {
    position: relative;
}
.corp-growth__title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: #3B0000;
    line-height: 1;
    letter-spacing: -2px;
}
.corp-growth__accent {
    color: #C5960C;
}
.corp-growth__wave {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 110%;
    height: 100%;
    pointer-events: none;
    opacity: .7;
}


/* ============================================================
   STATS
   ============================================================ */
.corp-stats {
    padding: 80px 0;
    background: #FDF5EC;
}
.corp-stats__inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.corp-stats__image {
    flex: 0 0 42%;
    border-radius: 20px;
    overflow: hidden;
}
.corp-stats__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
.corp-stats__content {
    flex: 1;
}
.corp-stats__lead {
    font-size: 32px;
    font-weight: 400;
    color: #3B0000;
    margin-bottom: 48px;
    line-height: 1.3;
}
.corp-stats__item {
    margin-bottom: 44px;
}
.corp-stats__item-title {
    font-size: 36px;
    font-weight: 900;
    color: #C5960C;
    margin-bottom: 10px;
    line-height: 1.15;
}
.corp-stats__badge {
    display: inline-block;
    background: #3B0000;
    color: #CDFF50;
    font-size: 22px;
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.corp-stats__item p {
    font-size: 15px;
    color: #888;
    line-height: 1.5;
}


/* ============================================================
   TIMELINE
   ============================================================ */
.corp-timeline {
    padding: 100px 0 80px;
    background: #FDF5EC;
    position: relative;
    overflow: hidden;
}
.corp-timeline__heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 48px;
}
.corp-timeline__scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.corp-timeline__scroll:active,
.corp-timeline__scroll.is-dragging {
    cursor: grabbing;
}
.corp-timeline__scroll::-webkit-scrollbar { display: none; }
.corp-timeline__track {
    display: flex;
    gap: 40px;
    min-width: max-content;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.corp-timeline__item {
    flex: 0 0 220px;
    text-align: left;
}
.corp-timeline__img {
    width: 210px;
    height: 210px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.corp-timeline__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.corp-timeline__wave {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: max-content;
    height: 50px;
    margin: -10px 0 10px;
    display: block;
}
.corp-timeline__year {
    font-size: 40px;
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 8px;
    margin-top: 8px;
}
.corp-timeline__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 210px;
}


/* ============================================================
   NUMBERS THAT DELIVER
   ============================================================ */
.corp-numbers {
    padding: 80px 0 100px;
    background: #FDF5EC;
}
.corp-numbers .corp-container {
    max-width: 900px;
    margin: 0 auto;
}
.corp-numbers__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 50px;
}
.corp-numbers__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}
.corp-numbers__text p {
    font-size: 15px;
    color: #3B0000;
    line-height: 1.75;
}
.corp-numbers__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #3B0000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .2s;
}
.corp-numbers__btn:hover {
    background: #5a1a1a;
    transform: translateY(-2px);
}


/* ============================================================
   PHOTO PAIRS
   ============================================================ */
.corp-photos {
    padding: 40px 0;
    background: #FDF5EC;
}
.corp-photos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
}
.corp-photos__item {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(59, 0, 0, 0.08);
}
.corp-photos__item:first-child img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.corp-photos__item:last-child img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.corp-photos--alt .corp-photos__grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
}
.corp-photos--alt .corp-photos__item:first-child img {
    height: 400px;
}
.corp-photos--alt .corp-photos__item:last-child img {
    height: 400px;
}


/* ============================================================
   WHAT'S ON THE MENU
   ============================================================ */
.corp-menu {
    padding: 80px 0;
    background: #FDF5EC;
    position: relative;
}
.corp-menu__bar {
    height: 8px;
    background: #C5960C;
    margin-bottom: 64px;
}
.corp-menu__inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.corp-menu__text {
    flex: 1;
}
.corp-menu__text h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 20px;
    line-height: 1.2;
}
.corp-menu__text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}
.corp-menu__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #3B0000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .2s;
}
.corp-menu__btn:hover {
    background: #5a1a1a;
    transform: translateY(-2px);
}
.corp-menu__image {
    flex: 0 0 42%;
}
.corp-menu__image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #3B0000;
    /* Talabat-style shield shape via clip-path */
    border-radius: 24px 24px 24px 100px;
}
.corp-menu__image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/* ============================================================
   ABOUT
   ============================================================ */
.corp-about {
    padding: 80px 0 100px;
    background: #FDF5EC;
}
.corp-about .corp-container {
    max-width: 900px;
    margin: 0 auto;
}
.corp-about__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #3B0000;
    margin-bottom: 48px;
}
.corp-about__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}
.corp-about__text p {
    font-size: 15px;
    color: #3B0000;
    line-height: 1.75;
}
.corp-about__btn {
    display: inline-flex;
    padding: 16px 36px;
    background: #3B0000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .2s;
}
.corp-about__btn:hover {
    background: #5a1a1a;
    transform: translateY(-2px);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.corp-cta {
    padding: 60px 0 80px;
    background: #FDF5EC;
}
.corp-cta__card {
    background: #C5960C;
    border-radius: 24px;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}
.corp-cta__mascot {
    position: absolute;
    right: 40px;
    bottom: 0;
    height: 90%;
    max-height: 380px;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}
.corp-cta__circle {
    position: absolute;
    top: -40px;
    right: 30%;
    width: 200px;
    height: 200px;
    border: 6px solid #3B0000;
    border-radius: 50%;
    opacity: .3;
}
.corp-cta__title {
    font-size: clamp(36px, 3vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.corp-cta__accent {
    color: #CDFF50;
}
.corp-cta__sub {
    font-size: 12px;
    color: rgba(255,255,255,.8);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.corp-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #CDFF50;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all .2s;
    position: relative;
    z-index: 1;
}
.corp-cta__btn:hover {
    background: #d8ff70;
    transform: translateY(-2px);
}


/* ============================================================
   FOOTER
   ============================================================ */
.corp-footer {
    background: #FDF5EC;
    padding: 80px 0 40px;
    border-top: 4px solid #C5960C;
}
.corp-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}
.corp-footer__logo img {
    height: 48px;
}
.corp-footer__social {
    display: flex;
    gap: 12px;
}
.corp-footer__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C5960C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .2s;
}
.corp-footer__social a:hover {
    background: #3B0000;
    transform: translateY(-2px);
}

/* Contact items */
.corp-footer__contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 56px;
}
.corp-footer__contact-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 8px;
}
.corp-footer__contact-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}
.corp-footer__contact-item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #3B0000;
    text-decoration: underline;
    transition: color .2s;
}
.corp-footer__contact-item a:hover { color: #C5960C; }
.corp-footer__contact-item a i { color: #C5960C; }

/* Link columns */
.corp-footer__links {
    display: flex;
    gap: 80px;
    margin-bottom: 56px;
}
.corp-footer__col h5 {
    font-size: 18px;
    font-weight: 800;
    color: #3B0000;
    margin-bottom: 16px;
}
.corp-footer__col a {
    display: block;
    font-size: 15px;
    color: #666;
    padding: 4px 0;
    text-decoration: underline;
    transition: color .2s;
}
.corp-footer__col a:hover { color: #3B0000; }

/* Bottom bar */
.corp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #ddd;
    margin-bottom: 16px;
}
.corp-footer__app {
    display: flex;
    align-items: center;
    gap: 10px;
}
.corp-footer__app-icon img {
    height: 36px;
    border-radius: 8px;
}
.corp-footer__app-text {
    font-size: 15px;
    font-weight: 700;
    color: #3B0000;
}
.corp-footer__stores {
    display: flex;
    gap: 10px;
}
.corp-footer__store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: border-color .2s;
}
.corp-footer__store-badge:hover { border-color: #3B0000; }
.corp-footer__store-badge i { font-size: 18px; }
.corp-footer__lang a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #C5960C;
    font-weight: 600;
    border: 2px solid #C5960C;
    border-radius: 50px;
    padding: 8px 16px;
    transition: all .2s;
}
.corp-footer__lang a:hover { background: rgba(197,150,12,.08); }

.corp-footer__legal {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #999;
}
.corp-footer__legal a { text-decoration: underline; }
.corp-footer__legal a:hover { color: #3B0000; }


/* ============================================================
   RESPONSIVE â€” TABLET (â‰¤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .corp-container { padding: 0 32px; }
    .corp-nav { padding: 0 32px; }
    .corp-nav__links { gap: 20px; }
    .corp-nav__link { font-size: 14px; }

    .corp-moments__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .corp-stats__inner { gap: 40px; }
    .corp-stats__image { flex: 0 0 38%; }
    .corp-stats__image img { height: 500px; }
    .corp-numbers__text { gap: 32px; }
    .corp-about__text { gap: 32px; }
    .corp-menu__inner { gap: 40px; }
    .corp-footer__contacts { gap: 24px; }
}


/* ============================================================
   RESPONSIVE â€” MOBILE (â‰¤768px)
   ============================================================ */
@media (max-width: 768px) {
    .corp-container { padding: 0 20px; }
    .corp-nav { padding: 0 20px; }
    .corp-nav__inner { height: 60px; }
    .corp-nav__logo img { height: 40px; }
    .corp-nav__badge { font-size: 15px; }
    .corp-nav__links { display: none; }
    .corp-nav__right { display: none; }
    .corp-nav__mobile-toggle { display: block; }

    /* Hero */
    .corp-hero { padding: 48px 0 0; }
    .corp-hero__inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 32px;
        min-height: auto;
    }
    .corp-hero__text { padding-bottom: 0; padding-top: 0; }
    .corp-hero__image {
        flex: none;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }
    .corp-hero__image-frame {
        transform: rotate(0);
        border-radius: 24px;
        border-width: 4px;
    }
    .corp-hero__image-frame img { height: 300px; }

    /* Moments */
    .corp-moments { padding: 60px 0 48px; }
    .corp-moments__grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Growth */
    .corp-growth { padding: 60px 0; }
    .corp-growth__title { letter-spacing: -1px; }

    /* Stats */
    .corp-stats { padding: 48px 0; }
    .corp-stats__inner { flex-direction: column; gap: 32px; }
    .corp-stats__image { flex: none; width: 100%; }
    .corp-stats__image img { height: 300px; width: 100%; }
    .corp-stats__lead { font-size: 22px; margin-bottom: 32px; }

    /* Timeline */
    .corp-timeline { padding: 60px 0; }
    .corp-timeline__item { flex: 0 0 190px; }
    .corp-timeline__img { width: 180px; height: 180px; border-radius: 22px; }
    .corp-timeline__year { font-size: 34px; }
    .corp-timeline__desc { max-width: 180px; }

    /* Numbers */
    .corp-numbers { padding: 60px 0; }
    .corp-numbers__text { grid-template-columns: 1fr; gap: 20px; }

    /* Photos */
    .corp-photos__item:first-child img { height: 320px; }
    .corp-photos__item:last-child img { height: 260px; }
    .corp-photos--alt .corp-photos__item:first-child img { height: 260px; }
    .corp-photos--alt .corp-photos__item:last-child img { height: 320px; }

    /* Menu */
    .corp-menu { padding: 48px 0; }
    .corp-menu__inner { flex-direction: column; gap: 32px; }
    .corp-menu__image { flex: none; width: 100%; }
    .corp-menu__image-frame img { height: 350px; }

    /* About */
    .corp-about { padding: 60px 0; }
    .corp-about__text { grid-template-columns: 1fr; gap: 20px; }

    /* CTA */
    .corp-cta__card { padding: 48px 28px; }

    /* Footer */
    .corp-footer { padding: 48px 0 32px; }
    .corp-footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
    .corp-footer__contacts { grid-template-columns: 1fr; gap: 28px; }
    .corp-footer__links { flex-direction: column; gap: 32px; }
    .corp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}


/* ============================================================
   RESPONSIVE â€” SMALL MOBILE (â‰¤480px)
   ============================================================ */
@media (max-width: 480px) {
    .corp-container { padding: 0 16px; }
    .corp-nav { padding: 0 16px; }
    .corp-nav__inner { height: 52px; }
    .corp-nav__logo img { height: 32px; }
    .corp-nav__badge { font-size: 13px; padding-left: 12px; }

    .corp-hero__title { font-size: 36px; }
    .corp-hero__image-frame img { height: 220px; }
    .corp-hero__image-frame { border-radius: 16px; }

    .corp-moments__grid { grid-template-columns: 1fr; gap: 28px; }
    .corp-moments__card h3 { font-size: 18px; }

    .corp-growth__title { font-size: 36px; }

    .corp-stats__item-title { font-size: 26px; }
    .corp-stats__badge { font-size: 18px; padding: 5px 14px; }

    .corp-timeline__item { flex: 0 0 160px; }
    .corp-timeline__img { width: 150px; height: 150px; border-radius: 18px; }
    .corp-timeline__year { font-size: 28px; }
    .corp-timeline__desc { max-width: 150px; }
    .corp-timeline__track { gap: 24px; }

    .corp-photos__grid { grid-template-columns: 1fr; }
    .corp-photos__item:first-child img,
    .corp-photos__item:last-child img { height: 220px; }
    .corp-photos__item:last-child,
    .corp-photos--alt .corp-photos__item:first-child { margin-top: 0; }
    .corp-photos--alt .corp-photos__grid { grid-template-columns: 1fr; }
    .corp-photos--alt .corp-photos__item:first-child img,
    .corp-photos--alt .corp-photos__item:last-child img { height: 220px; }

    .corp-cta__card { padding: 36px 20px; border-radius: 16px; }
    .corp-cta__title { font-size: 28px; }

    .corp-footer__stores { flex-wrap: wrap; }
}
