/* ============================================
   FROOB - Complete Stylesheet
   Primary: Purple Theme
   Mobile-First Responsive Design
   ============================================ */

/* CSS Variables */
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-lighter: #ede9fe;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --text-dark: #1e1b4b;
    --text-body: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; outline: none; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--primary); box-shadow: var(--shadow-lg); transition: var(--transition); }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 1.25rem; letter-spacing: 2px; }
.logo-icon { font-size: 1rem; }
.logo-text { font-size: 1.35rem; }
.nav { display: none; align-items: center; gap: 1.5rem; }
.nav-link { color: var(--white); font-weight: 500; font-size: 0.9rem; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--secondary); transition: var(--transition); }
.nav-link:hover::after { width: 100%; }
.nav-link-btn { background: var(--white); color: var(--primary); padding: 0.5rem 1.25rem; border-radius: var(--radius); font-weight: 600; box-shadow: var(--shadow); }
.nav-link-btn::after { display: none; }
.nav-link-btn:hover { background: var(--secondary); color: var(--text-dark); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 64px; left: 0; right: 0; background: var(--primary); padding: 1.5rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: var(--shadow-lg); }
.mobile-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-link { display: block; color: var(--white); padding: 1rem 0; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 1rem; }
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-btn { background: var(--white); color: var(--primary); padding: 0.75rem 1.25rem; border-radius: var(--radius); text-align: center; margin-top: 0.5rem; font-weight: 600; border-bottom: none; }
.mobile-nav-btn:hover { background: var(--secondary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 100px 0 80px; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-container { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-content { text-align: center; }
.hero-title { font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.hero-title .highlight { position: relative; display: inline-block; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 10px; background: var(--secondary); border-radius: 4px; z-index: -1; opacity: 0.9; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.hero-image { display: flex; justify-content: center; }
.hero-image-wrapper { position: relative; width: 280px; max-width: 100%; height: auto; }
.hero-image-wrapper::before { content: ''; position: absolute; inset: -10px; background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); border-radius: 24px; transform: rotate(-3deg); z-index: -1; opacity: 0.6; }
.hero-image-wrapper::after { content: ''; position: absolute; inset: -20px; background: linear-gradient(135deg, rgba(167,139,250,0.3), rgba(124,58,237,0.2)); border-radius: 32px; transform: rotate(3deg); z-index: -2; }
.frame-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-xl); }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--secondary); color: var(--text-dark); box-shadow: 0 4px 0 var(--secondary-dark), var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--secondary-dark), var(--shadow-lg); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--secondary-dark); }
.btn-secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-submit { width: 100%; background: var(--primary); color: var(--white); justify-content: center; font-size: 1rem; padding: 1rem; box-shadow: var(--shadow); }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================
   STATS SECTION (Yellow Background)
   ============================================ */
.stats-section { background: var(--secondary); padding: 3rem 0; position: relative; }
.stats-section::before { content: ''; position: absolute; top: -40px; left: 0; right: 0; height: 80px; background: var(--secondary); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-icon { width: 60px; height: 60px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--primary); box-shadow: var(--shadow); }
.stat-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.8rem; color: var(--text-body); opacity: 0.8; }

/* ============================================
   CATEGORY BAR
   ============================================ */
.category-bar { background: var(--primary-dark); padding: 1rem 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.category-scroll { display: flex; gap: 1.5rem; align-items: center; min-width: max-content; }
.category-item { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 500; font-size: 0.85rem; white-space: nowrap; padding: 0.5rem 0; }
.category-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; }
.category-item:hover { color: var(--secondary); }

/* ============================================
   STORE LOCATOR SECTION
   ============================================ */
.store-locator { padding: 4rem 0; background: var(--off-white); }
.store-locator-container { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.store-locator-content { display: flex; flex-direction: column; gap: 1.5rem; }
.section-title { font-size: 2rem; font-weight: 900; color: var(--text-dark); line-height: 1.2; }
.section-title.center { text-align: center; }
.section-title .highlight { position: relative; display: inline; }
.section-title .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 10px; background: var(--secondary); border-radius: 4px; z-index: -1; }
.section-title .highlight.white::after { background: var(--white); opacity: 0.3; }
.store-locator-quote { font-size: 1.25rem; font-weight: 600; color: var(--primary); font-style: italic; line-height: 1.5; }
.store-locator-map { width: 100%; height: 300px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-container { width: 100%; height: 100%; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FRANCHISE SECTION
   ============================================ */
.franchise-section { padding: 4rem 0; background: var(--white); }
.franchise-header { text-align: center; margin-bottom: 3rem; }
.franchise-subtitle { color: var(--text-light); margin-top: 1rem; line-height: 1.7; font-size: 0.95rem; }
.franchise-content { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.franchise-benefits-title { font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit-card { background: var(--off-white); padding: 1.5rem; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid var(--gray-200); }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.benefit-icon { width: 50px; height: 50px; background: var(--primary-lighter); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.25rem; color: var(--primary); }
.benefit-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.8rem; color: var(--text-light); }
.franchise-form-wrapper { background: var(--off-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; text-align: center; }
.franchise-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }
.form-group input, .form-group textarea { padding: 0.875rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: 0.95rem; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-lighter); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section { padding: 4rem 0; background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%); }
.download-container { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.download-content { text-align: center; }
.download-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.download-subtitle { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }
.download-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.download-btn { display: flex; align-items: center; gap: 0.75rem; background: var(--text-dark); color: var(--white); padding: 0.875rem 1.5rem; border-radius: var(--radius); transition: var(--transition); }
.download-btn:hover { background: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.download-btn i { font-size: 1.5rem; }
.download-btn-small { display: block; font-size: 0.65rem; opacity: 0.8; }
.download-btn-large { display: block; font-size: 1rem; font-weight: 600; }
.download-image { display: flex; justify-content: center; }
.phone-mockup { position: relative; width: 260px; }
.phone-mockup::before { content: ''; position: absolute; inset: -8px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 36px; z-index: -1; transform: rotate(-2deg); opacity: 0.5; }

/* ============================================
   BRAND SECTION
   ============================================ */
.brand-section { padding: 4rem 0; background: var(--white); text-align: center; }
.brand-subtitle { max-width: 600px; margin: 1.5rem auto 2rem; color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

/* ============================================
   STORIES SECTION
   ============================================ */
.stories-section { padding: 4rem 0; background: var(--secondary); }
.stories-section .section-title { color: var(--text-dark); }
.stories-subtitle { text-align: center; color: var(--text-body); margin: 1rem 0 2.5rem; font-size: 0.95rem; }
.stories-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.story-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.story-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.story-image { height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.story-card:hover .story-image img { transform: scale(1.05); }

/* Story Card Gradients */
.story-gradient-1 { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%); }
.story-gradient-2 { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 50%, #fb923c 100%); }
.story-gradient-3 { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%); }
.story-icon { font-size: 4rem; color: rgba(255,255,255,0.9); transition: var(--transition); }
.story-card:hover .story-icon { transform: scale(1.15) rotate(-5deg); }

/* Story card image patterns */
.story-gradient-1::before,
.story-gradient-2::before,
.story-gradient-3::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 80%, white 2px, transparent 2px),
                      radial-gradient(circle at 80% 20%, white 1.5px, transparent 1.5px),
                      radial-gradient(circle at 50% 50%, white 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 30px 30px;
}
.story-content { padding: 1.5rem; }
.story-date { font-size: 0.75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.story-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0.5rem 0; line-height: 1.4; }
.story-excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.6; }
.story-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.story-link:hover { color: var(--primary-dark); gap: 0.75rem; }

/* ============================================
   CAREERS SECTION
   ============================================ */
.careers-section { padding: 4rem 0; background: var(--off-white); }
.careers-subtitle { text-align: center; color: var(--text-light); margin: 1rem 0 2.5rem; font-size: 0.95rem; }
.careers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.career-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid var(--primary); }
.career-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.career-title { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.career-location { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.career-desc { color: var(--text-body); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
.career-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.career-link:hover { color: var(--primary-dark); gap: 0.75rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary); color: var(--white); padding: 4rem 0 0; }
.footer-top { margin-bottom: 2.5rem; }
.footer-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 800; font-size: 1.35rem; letter-spacing: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-link { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; }
.footer-link:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 42px; height: 42px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.social-link:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1.1); }
.footer-middle { display: flex; flex-direction: column; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); text-align: center; }
.company-name { font-weight: 600; font-size: 0.95rem; }
.company-rights { font-size: 0.85rem; opacity: 0.8; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.legal-link { color: var(--white); font-weight: 500; font-size: 0.85rem; opacity: 0.9; }
.legal-link:hover { opacity: 1; text-decoration: underline; }
.footer-bottom { padding: 2.5rem 0; }
.locations-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.location-group { margin-bottom: 1.5rem; }
.location-group h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--secondary); }
.location-group p { font-size: 0.8rem; line-height: 1.8; opacity: 0.9; }
.footer-copyright { background: var(--primary-dark); padding: 1.25rem 0; text-align: center; }
.footer-copyright p { font-size: 0.85rem; opacity: 0.8; }
.footer-copyright i { color: #ef4444; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--text-dark); color: var(--white); padding: 1rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow-xl); z-index: 1001; opacity: 0; visibility: hidden; transition: var(--transition); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.toast-content { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.toast-content i { color: var(--success); font-size: 1.25rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE - EXTRA SMALL (374px and below)
   ============================================ */
@media (max-width: 374px) {
    .container { padding: 0 0.75rem; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-image-wrapper { width: 190px; }
    .hero-buttons { gap: 0.65rem; }
    .btn { padding: 0.7rem 1.1rem; font-size: 0.8rem; }
    .stats-section { padding: 1.5rem 0; }
    .stat-item { padding: 0.75rem 0.35rem; }
    .stat-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .stat-title { font-size: 0.85rem; }
    .stat-desc { font-size: 0.65rem; }
    .section-title { font-size: 1.4rem; }
    .store-locator-map { height: 200px; }
    .franchise-form-wrapper { padding: 1rem; }
    .form-group input, .form-group textarea { padding: 0.65rem 0.75rem; font-size: 0.8rem; }
    .download-title { font-size: 1.4rem; }
    .phone-mockup { width: 180px; }
    .download-btn { padding: 0.65rem 1rem; }
    .download-btn i { font-size: 1.1rem; }
    .download-btn-large { font-size: 0.85rem; }
    .story-image { height: 130px; }
    .story-content { padding: 0.85rem; }
    .story-title { font-size: 0.9rem; }
    .story-excerpt { font-size: 0.75rem; }
    .career-card { padding: 1rem; }
    .career-title { font-size: 0.9rem; }
    .footer { padding: 2rem 0 0; }
    .footer-card { padding: 1rem; gap: 0.85rem; }
    .footer-logo { font-size: 1rem; }
    .social-link { width: 34px; height: 34px; font-size: 0.8rem; }
    .locations-title { font-size: 1.1rem; }
    .location-group p { font-size: 0.68rem; line-height: 1.5; }
    .back-to-top { width: 38px; height: 38px; font-size: 0.9rem; bottom: 1rem; right: 1rem; }
    .toast { padding: 0.65rem 1rem; font-size: 0.75rem; }
    .brand-subtitle { font-size: 0.8rem; }
    .stories-subtitle { font-size: 0.8rem; }
    .careers-subtitle { font-size: 0.8rem; }
    .franchise-subtitle { font-size: 0.8rem; }
    .category-item { font-size: 0.7rem; }
}

/* ============================================
   RESPONSIVE - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
    .hero-title { font-size: 3.25rem; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .benefits-grid { grid-template-columns: repeat(4, 1fr); }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .careers-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: row; justify-content: center; }
    .download-buttons { flex-direction: row; justify-content: center; }
}

/* ============================================
   RESPONSIVE - DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
    .container { padding: 0 2rem; }
    .menu-toggle { display: none; }
    .nav { display: flex; }
    .mobile-menu { display: none !important; }
    .header-container { height: 72px; }
    .hero { padding: 120px 0 100px; }
    .hero-container { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .hero-content { text-align: left; }
    .hero-title { font-size: 3.75rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-buttons { justify-content: flex-start; }
    .hero-image-wrapper { width: 340px; }
    .store-locator-container { grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
    .store-locator-map { height: 400px; }
    .franchise-content { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .download-container { grid-template-columns: 1fr 1fr; }
    .download-content { text-align: left; }
    .download-buttons { justify-content: flex-start; }
    .phone-mockup { width: 300px; }
    .stories-grid { grid-template-columns: repeat(3, 1fr); }
    .careers-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-card { flex-direction: row; justify-content: space-between; padding: 2rem 3rem; }
    .footer-middle { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
    .section-title { font-size: 2.5rem; }
    .stats-section::before { top: -60px; height: 120px; }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .hero-image-wrapper { width: 400px; }
    .section-title { font-size: 3rem; }
    .franchise-form-wrapper { padding: 2.5rem; }
    .phone-mockup { width: 320px; }
    .story-image { height: 220px; }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
