:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F5F3;
    --cream: #F7F6F4;
    --navy: #14213D;
    --navy-deep: #0D1626;
    --red: #D8232A;
    --red-deep: #A8161C;
    --gold: #F2A900;
    --white: #FFFFFF;
    --dark: #14181F;
    --shadow: rgba(20, 22, 30, 0.08);
    --shadow-strong: rgba(20, 22, 30, 0.18);
}

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

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', 'Nunito', sans-serif;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
}

.topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar-item i {
    color: var(--gold);
    font-size: 12px;
}

.topbar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-header {
    background: var(--navy);
    box-shadow: 0 6px 24px var(--shadow-strong);
}

.main-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.site-name-inline {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    font-size: 22px;
    letter-spacing: 0.02em;
}

.site-name-inline small {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

.main-nav {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.main-header .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link:focus {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.main-header .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

.main-header .nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-order-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 8px;
    background: var(--red);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(216, 35, 42, 0.35);
}

.btn-order-now:hover {
    background: var(--red-deep);
    transform: translateY(-1px);
    color: var(--white) !important;
}

.btn-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-icon-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.language-toggle {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.lang-btn {
    padding: 9px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
}

.content-wrapper {
    padding-top: 116px;
    min-height: 100vh;
}

/* ================= HERO ================= */
.hero-section {
    text-align: center;
    padding: 100px 20px 90px;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(242, 169, 0, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 88% 85%, rgba(216, 35, 42, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 130px;
    height: auto;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.hero-eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 60px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-family: 'Baloo 2', sans-serif;
    font-size: 32px;
    color: var(--red);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.25);
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 38px;
    line-height: 1.8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 42px;
}

.cta-button {
    display: inline-block;
    padding: 16px 46px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(216, 35, 42, 0.35);
}

.cta-button:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(216, 35, 42, 0.4);
    color: var(--white);
}

.cta-button-outline {
    display: inline-block;
    padding: 16px 46px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.cta-button-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button-outline-light {
    display: inline-block;
    padding: 16px 46px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.cta-button-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.platform-badges-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 4px;
}

.platform-badges-row {
    display: contents;
}

/* ================= ORDER NOW MODAL ================= */
.order-now-modal .modal-content {
    border-radius: 16px;
    border: none;
    padding: 8px;
}

.order-now-modal-icon {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 16px;
}

.order-now-modal .modal-body h3 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

.order-now-modal .modal-body p {
    color: var(--dark);
}

.order-now-modal-divider {
    margin: 20px 0;
    opacity: 0.15;
}

.order-now-modal-alt {
    font-size: 14px;
    color: rgba(20, 24, 31, 0.65);
    margin-bottom: 0;
}

.order-now-modal .modal-footer {
    gap: 10px;
}

.order-now-modal .cta-button,
.order-now-modal .cta-button-outline {
    padding: 14px 20px;
}

.order-now-modal .js-order-now-whatsapp {
    background: #25D366;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.order-now-modal .js-order-now-whatsapp:hover {
    background: #1EBE5A;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.platform-badge:hover {
    transform: translateY(-2px);
    color: var(--dark);
}

.platform-badge.is-link {
    cursor: pointer;
}

.platform-badge:not(.is-link) {
    opacity: 0.85;
    cursor: default;
}

/* ================= BANDS / SECTION ALTERNATION ================= */
.band {
    width: 100%;
}

.band-alt {
    background: var(--bg-alt);
}

.band-dark {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--red);
    margin-bottom: 10px;
}

.band-dark .section-eyebrow {
    color: var(--gold);
}

.section-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 42px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.band-dark .section-title {
    color: var(--white);
}

.section-title.mb-sm {
    margin-bottom: 14px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark);
    opacity: 0.7;
    max-width: 620px;
    margin: 0 auto 50px;
}

.band-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* ================= HIGHLIGHT / MISSION CARDS ================= */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(20, 22, 30, 0.06);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.25s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 16px 34px var(--shadow-strong);
}

.mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(216, 35, 42, 0.08);
    font-size: 26px;
    margin-bottom: 22px;
    color: var(--red);
}

.mission-card:nth-child(even) .mission-icon {
    background: rgba(20, 33, 61, 0.08);
    color: var(--navy);
}

.mission-card h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 21px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.mission-card p {
    font-size: 15px;
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.6;
}

/* ================= ABOUT ================= */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--red);
}

.about-card h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.85;
}

.about-highlights-list {
    list-style: none;
    margin-top: 10px;
}

.about-highlights-list li {
    padding: 10px 0;
    padding-left: 32px;
    font-size: 16px;
    position: relative;
}

.about-highlights-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

/* ================= MENU ================= */
.menu-category {
    margin-bottom: 55px;
}

.menu-category-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(20, 22, 30, 0.06);
    box-shadow: 0 4px 16px var(--shadow);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 14px 30px var(--shadow-strong);
}

.menu-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.menu-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.menu-card-name {
    font-family: 'Baloo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.menu-card-price {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--red);
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 14px;
    color: var(--dark);
    opacity: 0.65;
    line-height: 1.6;
}

.menu-intro-note {
    text-align: center;
    max-width: 640px;
    margin: -30px auto 50px;
    font-size: 15px;
    color: var(--dark);
    opacity: 0.55;
}

.menu-home-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    position: relative;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, transparent, rgba(13, 22, 38, 0.8));
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

/* ================= HOURS / LOCATION ================= */
.hours-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    padding: 32px 36px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(20, 22, 30, 0.08);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 16px;
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--navy);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--dark);
    opacity: 0.75;
}

.hours-table tr.is-closed td:last-child {
    color: var(--red);
    font-weight: 700;
}

.locations-section {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px var(--shadow);
}

.map-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* ================= CTA BAND ================= */
.cta-band {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}

.cta-band h2 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.cta-band p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* ================= FOOTER ================= */
footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 20px 30px;
    margin-top: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-logo {
    height: 56px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-heading {
    font-family: 'Baloo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-hours-list {
    list-style: none;
    font-size: 14px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    opacity: 0.75;
}

.footer-delivery-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-delivery-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-delivery-badges .platform-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: none;
}

.footer-delivery-badges .platform-badge:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 18px;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .main-nav {
        gap: 0;
    }

    .nav-link {
        padding: 10px 10px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }

    .content-wrapper {
        padding-top: 74px;
    }

    .main-header-inner {
        padding: 10px 20px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-tagline {
        font-size: 26px;
    }

    .section-title {
        font-size: 34px;
    }

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

@media (max-width: 768px) {
    .brand-logo {
        height: 42px;
    }

    .site-name-inline {
        font-size: 18px;
    }

    .hero-logo {
        width: 100px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .section {
        padding: 56px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .locations-section {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cta-band {
        padding: 45px 24px;
    }

    .menu-grid,
    .menu-home-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .menu-card-body {
        padding: 12px 14px 16px;
    }

    .menu-card-name {
        font-size: 15px;
    }

    .menu-card-price {
        font-size: 14px;
    }

    .menu-card-desc {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .cta-button-outline,
    .cta-button-outline-light {
        padding: 14px 34px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .platform-badges {
        flex-direction: column;
        gap: 8px;
    }

    .platform-badges-label {
        margin-right: 0;
        white-space: nowrap;
    }

    .platform-badges-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

/* ================= MOBILE NAV PANEL ================= */
.navbar-collapse.collapse,
.navbar-collapse.collapsing {
    width: 100%;
}

@media (max-width: 991px) {
    .main-header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .navbar-toggler {
        margin-left: auto;
        border: none;
        color: var(--white);
        box-shadow: none !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100vw;
        margin: 0;
        border-radius: 0;
        padding: 18px 24px 26px;
        background: var(--navy-deep);
        z-index: 999;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
    }

    .navbar-collapse.collapse {
        display: none;
    }

    .navbar-collapse.collapse.show {
        display: block;
    }

    .main-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-bottom: 16px;
    }

    .header-actions {
        flex-wrap: wrap;
    }
}

.navbar-nav .dropdown-menu {
    overflow: auto;
    max-height: 80vh;
}
