/* ============================================
   PANNEAU SOLAIRE CHOLET — STYLES
   ============================================ */

:root {
    --primary: #0077B6;
    --primary-dark: #005A8C;
    --primary-light: #009ADE;
    --secondary: #90E0EF;
    --secondary-light: #CAF0F8;
    --accent: #F4A261;
    --accent-dark: #E76F51;
    --dark: #1B1B2F;
    --dark-light: #2D2D44;
    --gray-900: #1a1a2e;
    --gray-800: #333;
    --gray-700: #555;
    --gray-600: #666;
    --gray-500: #888;
    --gray-400: #aaa;
    --gray-300: #ccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #fff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
p { margin-bottom: 16px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,119,182,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,119,182,0.4);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--primary-dark);
}
.btn-secondary:hover {
    background: var(--secondary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244,162,97,0.3);
}
.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    padding: 16px 0;
}
.main-nav.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--dark);
}
.nav-logo:hover { color: var(--dark); }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-weight: 500; }
.logo-text strong { color: var(--primary); font-weight: 700; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--secondary-light);
}
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 8px rgba(0,119,182,0.3);
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a2540 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/9875678/pexels-photo-9875678.jpeg?auto=compress&cs=tinysrgb&h=650&w=940') center/cover;
    opacity: 0.2;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(144,224,239,0.15);
    border: 1px solid rgba(144,224,239,0.3);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--secondary); }
.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat h3 { color: var(--secondary); font-size: 2rem; margin-bottom: 4px; }
.hero-stat p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 0; }
.bg-light { background: var(--gray-100); }
.bg-primary { background: var(--primary); color: var(--white); }
.bg-dark { background: var(--dark); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-header p { color: var(--gray-600); font-size: 1.1rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--secondary);
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--gray-600); font-size: 0.95rem; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   CITY CARDS
   ============================================ */
.city-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--dark);
}
.city-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}
.city-card .city-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.city-card .city-info h3 { font-size: 1rem; margin-bottom: 2px; }
.city-card .city-info p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* ============================================
   INSTALLER CARDS
   ============================================ */
.installer-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.installer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.installer-card h3 { color: var(--primary); margin-bottom: 8px; }
.installer-card .installer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.installer-card .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-rge { background: #e8f5e9; color: #2e7d32; }
.badge-quali { background: var(--secondary-light); color: var(--primary-dark); }

/* ============================================
   SIMULATOR
   ============================================ */
.simulator {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--secondary);
}
.simulator h2 { text-align: center; }
.simulator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}
.form-group select,
.form-group input {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}
.simulator-result {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    margin-top: 24px;
    display: none;
}
.simulator-result.active { display: block; }
.simulator-result h3 { color: var(--secondary); font-size: 2.5rem; margin-bottom: 8px; }
.result-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.result-item h4 { color: var(--secondary); font-size: 1.4rem; margin-bottom: 4px; }
.result-item p { font-size: 0.85rem; opacity: 0.8; }

/* ============================================
   LEADRS FORM
   ============================================ */
.leadrs-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
}
.leadrs-section .section-header h2 { color: var(--white); }
.leadrs-section .section-header p { color: rgba(255,255,255,0.8); }
.leadrs-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-xl);
}
.leadrs-container iframe {
    border-radius: var(--radius-md);
    width: 100%;
    min-height: 600px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
    font-size: 0.9rem;
    color: var(--primary);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p { color: var(--gray-600); margin: 0; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 100px 0 0;
    font-size: 0.85rem;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list li::after { content: '›'; color: var(--gray-400); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--gray-500); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .current { color: var(--dark); font-weight: 600; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a2540 100%);
    color: var(--white);
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/9875411/pexels-photo-9875411.jpeg?auto=compress&cs=tinysrgb&h=650&w=940') center/cover;
    opacity: 0.1;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero h1 span { color: var(--secondary); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1.1rem; }

/* ============================================
   SEARCH & FILTER
   ============================================ */
.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.search-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--primary); }

.alpha-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
}
.alpha-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    color: var(--gray-700);
}
.alpha-btn:hover,
.alpha-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cities-count {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}
.cities-count strong { color: var(--primary); }

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section { padding: 60px 0; }
.content-section h2 { margin-top: 32px; }
.content-section p { color: var(--gray-700); }
.content-section ul {
    list-style: none;
    padding: 0;
}
.content-section ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-700);
}
.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
}
.stat-item {
    text-align: center;
    padding: 24px;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.stat-item p { color: var(--gray-600); font-size: 0.9rem; }

/* ============================================
   GUIDE / AIDE
   ============================================ */
.guide-toc {
    background: var(--secondary-light);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 40px;
}
.guide-toc h3 { margin-bottom: 16px; }
.guide-toc ol { padding-left: 24px; list-style: decimal; }
.guide-toc ol li { padding: 6px 0; }
.guide-toc ol li a { color: var(--primary); font-weight: 500; }

.aide-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.aide-card h3 { color: var(--primary); }
.aide-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin: 12px 0;
}

/* ============================================
   DEVIS PAGE
   ============================================ */
.devis-hero {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}
.devis-hero h1 { color: var(--white); }
.devis-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 24px; font-size: 1.1rem; }
.devis-form-container {
    max-width: 900px;
    margin: -40px auto 60px;
    position: relative;
    z-index: 2;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}
.error-page h1 { font-size: 8rem; color: var(--secondary); margin-bottom: 0; }
.error-page h2 { margin-bottom: 16px; }
.error-page p { color: var(--gray-600); margin-bottom: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer-seo { font-size: 0.75rem; opacity: 0.5; margin-top: 8px; }

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { gap: 24px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px 20px; width: 100%; }

    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .simulator-grid { grid-template-columns: 1fr; }
    .result-details { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }

    section { padding: 50px 0; }
    .simulator { padding: 24px; }
    .leadrs-container { padding: 4px; }
}

@media (max-width: 480px) {
    .alpha-filter { gap: 4px; }
    .alpha-btn { width: 32px; height: 32px; font-size: 0.75rem; }
    .hero h1 { font-size: 1.8rem; }
}