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

:root {
    --primary-color: #1a5f2a;
    --primary-light: #2d8a3e;
    --primary-dark: #0d3d18;
    --accent-color: #4CAF50;
    --secondary-color: #FF9800;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-color: #fff;
    --bg-light: #f8faf9;
    --bg-dark: #1a1a1a;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 61, 24, 0.85) 0%, rgba(26, 95, 42, 0.7) 50%, rgba(45, 138, 62, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 8px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.banner-slogan {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease 0.2s both;
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.4s both;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

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

.btn-white:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.brand-intro {
    padding: 100px 0;
    background: var(--bg-light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 32px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.intro-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.intro-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.core-values {
    padding: 100px 0;
    background: var(--bg-color);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.products-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-showcase-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-item:hover .product-showcase-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-showcase-item:hover .product-overlay {
    opacity: 1;
}

.product-showcase-info {
    padding: 24px;
    text-align: center;
}

.product-showcase-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-showcase-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-action {
    text-align: center;
}

.advantages-section {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.advantage-item {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 16px;
}

.advantage-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.franchise-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.franchise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.franchise-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.franchise-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 61, 24, 0.92) 0%, rgba(26, 95, 42, 0.88) 100%);
}

.franchise-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.franchise-content h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.franchise-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.franchise-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.franchise-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.contact-info-box > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-item strong {
    font-size: 1rem;
    color: var(--text-color);
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-slogan {
    font-size: 1.1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.6;
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-column ul li:not(:has(a)) {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.products-page {
    padding: 80px 0;
}

.products-page .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.product-detail {
    padding: 30px;
    text-align: center;
}

.product-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-detail .price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail .description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.product-features span {
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.franchise-page {
    padding: 80px 0;
}

.franchise-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.franchise-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.franchise-benefits {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.franchise-process {
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.franchise-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.franchise-form h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 95, 42, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.about-page {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-values {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
}

.contact-page {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h2 {
    margin-bottom: 32px;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    
    .nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav ul.active {
        transform: translateY(0);
    }
    
    .nav ul li {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .banner-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .banner-slogan {
        font-size: 1.4rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .franchise-form {
        padding: 30px 20px;
    }
    
    .franchise-content h2 {
        font-size: 2rem;
    }
    
    .franchise-features {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.franchise-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.franchise-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchise-hero-text h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

.franchise-hero-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.franchise-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.franchise-hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.franchise-why {
    padding: 80px 0;
}

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

.why-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.franchise-products {
    padding: 80px 0;
    background: var(--bg-light);
}

.franchise-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.franchise-product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.franchise-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.franchise-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.franchise-product-info {
    padding: 24px;
    text-align: center;
}

.franchise-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.franchise-product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.franchise-benefits-section {
    padding: 80px 0;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-large {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.benefit-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.benefit-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.benefit-overlay p {
    opacity: 0.9;
}

.benefits-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.franchise-process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 68px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border-color);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    background: var(--primary-light);
}

.process-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 150px;
    margin: 0 auto;
}

.franchise-form-section {
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 60px;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.form-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-item strong {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quick-item span {
    font-size: 1.1rem;
    color: var(--text-color);
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-success p {
    color: var(--text-light);
}

.brand-story-section {
    padding: 80px 0;
}

.brand-story-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-story-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.brand-story-header .divider {
    color: var(--primary-color);
    margin: 0 16px;
}

.brand-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.story-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
}

.story-lead strong {
    color: var(--primary-color);
}

.story-body {
    margin-bottom: 40px;
}

.story-body p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 24px;
    text-indent: 2em;
}

.story-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.story-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-slider {
    flex: 1;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex-shrink: 0;
    width: calc(33.333% - 14px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
}

.gallery-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .brand-story-header h2 {
        font-size: 1.8rem;
    }
    
    .story-lead {
        font-size: 1.2rem;
    }
    
    .story-body p {
        font-size: 1rem;
    }
    
    .story-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-showcase {
        grid-template-columns: 1fr;
    }
    
    .benefit-large {
        min-height: 300px;
    }
}

@media (max-width: 992px) {
    .franchise-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .franchise-hero-stats {
        justify-content: center;
    }
    
    .franchise-hero-image {
        order: -1;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .franchise-products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-small {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px;
    }
    
    .form-container {
        padding: 24px;
    }
    
    .franchise-hero-text h2 {
        font-size: 2rem;
    }
}
