/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== COLOR VARS ===== */
:root {
    --gold: #C5A55A;
    --gold-dark: #A68B3E;
    --dark: #1A1A1A;
    --dark2: #2D2926;
    --dark3: #3D3530;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
    height: 72px;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    color: var(--gold);
    font-size: 24px;
}

.nav-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > li > a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-menu > li > a:hover { color: var(--gold); }

.nav-cta-btn {
    background: var(--gold) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-cta-btn:hover {
    background: var(--gold-dark) !important;
}

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26,26,26,0.97);
    min-width: 150px;
    padding: 8px 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s;
    backdrop-filter: blur(12px);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.dropdown li a:hover {
    background: rgba(197,165,90,0.15);
    color: var(--gold);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.lang-current:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197,165,90,0.1);
}

.lang-globe {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lang-arrow {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 140px;
    padding: 6px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 9px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    transition: all 0.2s;
}

.lang-option:hover {
    background: rgba(197,165,90,0.12);
    color: var(--gold);
}

.lang-option.active {
    color: var(--gold);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(197,165,90,0.4);
    padding: 6px 20px;
    border-radius: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-sm { padding: 10px 24px; font-size: 13px; }
.btn-lg { padding: 16px 48px; font-size: 16px; }

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(197,165,90,0.4);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-outline-dark {
    border: 2px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== VALUES STRIP ===== */
.values-section {
    background: var(--dark);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.value-item:last-child { border-right: none; }

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-sub,
.section-header.light .section-desc {
    color: #fff;
}

.section-header.light .section-sub { color: var(--gold); }
.section-header.light .section-desc { color: rgba(255,255,255,0.6); }

.section-sub {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== JOBS SECTION ===== */
.jobs-section {
    padding: 100px 0;
    background: #f9f8f6;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.job-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.job-body {
    padding: 24px;
}

.job-tag {
    display: inline-block;
    background: rgba(197,165,90,0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.job-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.job-body p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.job-salary {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
}

.job-type {
    font-size: 12px;
    color: #999;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 10px;
}

/* ===== IMAGE BANNER ===== */
.img-banner {
    position: relative;
    height: 360px;
    background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1920&h=600&fit=crop&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.65);
}

.img-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.img-banner-content h2 {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
}

.img-banner-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 36px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(197,165,90,0.1);
    transform: translateY(-3px);
}

.benefit-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ===== BRAND PORTFOLIO ===== */
.brand-portfolio {
    background: #1b1b1b;
    padding: 50px 0 60px;
}

.bp-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.bp-top-logo {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 6px;
    margin-bottom: 30px;
}

.bp-tier-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    margin: 28px 0 18px;
}

.bp-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.bp-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.bp-logo:hover {
    opacity: 0.7;
}

.bp-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: filter 0.3s;
}
.bp-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
}

/* ===== FRANCHISE SECTION ===== */
.franchise-section {
    padding: 100px 0;
    background: #f9f8f6;
}

.franchise-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.franchise-img {
    width: 45%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.franchise-body {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.franchise-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.franchise-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.franchise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.franchise-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.franchise-feat svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.franchise-btns {
    display: flex;
    gap: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1920&h=600&fit=crop&q=80') center/cover no-repeat;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.6);
}

.footer-top {
    display: flex;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    min-width: 220px;
}

.footer-brand .logo-icon {
    font-size: 28px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-left: 8px;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

.footer-nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-nav-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-nav-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}

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

/* ===== FLOATING CS BUTTON ===== */
.cs-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(197,165,90,0.5);
    z-index: 9998;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: cs-pulse 2s infinite;
}

.cs-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(197,165,90,0.7);
}

.cs-float-btn svg { width: 28px; height: 28px; }

@keyframes cs-pulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(197,165,90,0.5); }
    50% { box-shadow: 0 6px 30px rgba(197,165,90,0.8), 0 0 0 10px rgba(197,165,90,0.1); }
}

/* ===== CS MODAL ===== */
.cs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.cs-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cs-modal {
    background: #fff;
    border-radius: 16px;
    width: 440px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.cs-modal-overlay.active .cs-modal {
    transform: translateY(0) scale(1);
}

.cs-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.cs-modal-close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.cs-modal-header {
    background: linear-gradient(135deg, var(--dark2), var(--dark));
    padding: 36px 32px 28px;
    text-align: center;
    border-radius: 16px 16px 0 0;
}

.cs-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(197,165,90,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-modal-icon svg { width: 30px; height: 30px; }

.cs-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.cs-modal-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ===== CS FORM ===== */
.cs-form {
    padding: 28px 32px 32px;
}

.cs-form-group {
    margin-bottom: 18px;
}

.cs-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.cs-form-group label .required { color: #e74c3c; }

.cs-form-group input,
.cs-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
}

.cs-form-group select {
    background: #fafafa url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M1 1l5 5 5-5" stroke="%23999" stroke-width="1.5" fill="none"/></svg>') no-repeat right 14px center;
    padding-right: 36px;
}

.cs-form-group input:focus,
.cs-form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
    background: #fff;
}

.cs-form-group input::placeholder { color: #bbb; }

.cs-form-row {
    display: flex;
    gap: 16px;
}

.cs-form-row .cs-form-group { flex: 1; }

.cs-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.cs-submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.cs-submit-btn:active { transform: translateY(0); }

.cs-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== CS SUCCESS ===== */
.cs-success {
    padding: 50px 32px;
    text-align: center;
}

.cs-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.cs-success-icon svg { width: 100%; height: 100%; }

.cs-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cs-success p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .franchise-card { flex-direction: column; }
    .franchise-img { width: 100%; min-height: 280px; }
    .franchise-body { padding: 36px; }
    .bp-logo img { height: 28px; }
    .bp-logo { padding: 10px 14px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26,26,26,0.97);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu > li > a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
    }

    .nav-toggle { display: flex; }

    .lang-switcher {
        margin-right: 12px;
    }

    .hero-content h1 { font-size: 34px; }
    .hero-desc { font-size: 15px; }
    .hero-stats { gap: 30px; }
    .stat-num { font-size: 28px; }
    .hero-btns { flex-direction: column; align-items: center; }

    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

    .jobs-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .bp-logo img { height: 24px; }
    .bp-logo { padding: 8px 10px; }
    .bp-tier-label { font-size: 10px; margin: 20px 0 12px; }

    .section-title { font-size: 26px; }
    .img-banner { height: 260px; }
    .img-banner-content h2 { font-size: 28px; }

    .franchise-features { grid-template-columns: 1fr; }
    .franchise-btns { flex-direction: column; }
    .franchise-btns .btn { width: 100%; text-align: center; }

    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .cs-form-row { flex-direction: column; gap: 0; }
    .cs-modal { margin: 10px; }

    .cta-content h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .cs-float-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
