/* ============================================
   MODENO & PASSOS — LANDING PAGE
   Design System: Dark luxurious law firm
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --accent: #ffffff;
  --accent-soft: #c0c4cc;
  --cta: #25d366;
  --cta-hover: #1eba59;
  --cta-glow: rgba(37,211,102,0.3);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-dark: #777777;
  --gray-light: #d0d0d0;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--gray); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============ DECORATIVE ============ */
.gold-line { width: 60px; height: 2px; background: var(--accent-soft); margin-bottom: 24px; }
.gold-line-center { width: 60px; height: 2px; background: var(--accent-soft); margin: 0 auto 24px; }
.gold { color: var(--accent); }

/* ============ HEADER ============ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; transition: all var(--transition); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 40px; width: auto; }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; transition: color var(--transition); }
.header-nav a:hover { color: var(--white); }
.header-cta { border: 1px solid var(--cta) !important; color: var(--cta) !important; padding: 8px 20px; font-size: 0.8rem !important; }
.header-cta:hover { background: var(--cta) !important; color: var(--white) !important; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 36px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; border: none; transition: all var(--transition); text-align: center; }
.btn-gold { background: var(--cta); color: var(--white); font-weight: 700; }
.btn-gold:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--cta-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--accent-soft); }
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--black-2); }
.section-pre-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); line-height: 1.8; max-width: 680px; }
.checklist { margin: 28px 0; }
.checklist li { padding: 10px 0; display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; color: var(--gray-light); }
.checklist li .check { color: var(--accent-soft); font-size: 0.85rem; margin-top: 4px; flex-shrink: 0; }
.note { font-size: 0.9rem; color: var(--accent-soft); font-style: italic; margin-top: 20px; }

/* ============ HERO ============ */
.hero { min-height: 100vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding-bottom: 60px; }
.hero-bg-image { position: absolute; inset: 0; background: url('img/equipe-advogados-trabalhistas.jpg') center top / cover no-repeat; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.85) 75%, rgba(10,10,10,0.95) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 2; text-align: center; max-width: 860px; }
.hero h1 { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-seals { display: flex; justify-content: center; gap: 28px; margin-top: 36px; }
.seal { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.seal-dot { width: 8px; height: 8px; background: var(--cta); border-radius: 50%; flex-shrink: 0; }

/* ============ INSTITUTIONAL (Worker Image) ============ */
.institutional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.institutional-text { }
.institutional-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; background: var(--black-2); }
.institutional-bg-text { position: absolute; top: 10%; left: 0; font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; line-height: 1.1; z-index: 0; user-select: none; }
.institutional-bg-text .gold-text { color: var(--accent-soft); opacity: 0.5; }
.institutional-bg-text .white-text { color: var(--white); opacity: 0.15; }
.worker-image { position: relative; z-index: 1; max-height: 400px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }

/* ============ NARRATIVE SECTION ============ */
.narrative { padding: 120px 0; position: relative; overflow: hidden; }
.narrative-bg { position: absolute; inset: 0; background: url('img/martelo-balanca-justica-trabalho.jpg') center center / cover no-repeat; }
.narrative-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.88); }
.narrative-content { position: relative; z-index: 1; max-width: 700px; }
.narrative .section-subtitle { color: var(--gray-light); margin-bottom: 12px; }

/* ============ PROBLEMS ============ */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin: 48px 0; }
.problem-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--black-2); border: 1px solid rgba(255,255,255,0.06); transition: all var(--transition); }
.problem-item:hover { border-color: rgba(192,196,204,0.3); background: var(--black-3); }
.problem-x { color: #c0392b; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.problem-item span:last-child { color: var(--gray-light); font-size: 0.95rem; }
.problems-text { font-size: 1.1rem; color: var(--white); text-align: center; margin-bottom: 32px; }
.problems-text strong { color: var(--cta); }

/* ============ SERVICE CARDS (with icons) ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px auto; max-width: 900px; }
.service-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 36px 24px; text-align: center; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--cta); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.service-icon-img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 20px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.services-warning { text-align: center; color: var(--accent-soft); font-size: 0.9rem; margin-bottom: 28px; font-style: italic; }

/* ============ HELP CARDS (5 col) ============ */
.help-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 48px 0; }
.help-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 28px 16px; text-align: center; transition: all var(--transition); }
.help-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.help-icon { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 16px; }
.help-card h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.help-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ============ AUTHORITY ============ */
.authority { position: relative; }
.authority-bg { position: absolute; inset: 0; background: url('img/escritorio-advocacia-trabalhista.jpg') center center / cover no-repeat; opacity: 0.15; }
.authority .container { position: relative; z-index: 1; }
.authority-content { max-width: 700px; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 48px 0; }
.testimonial { background: var(--black-3); border: 1px solid rgba(255,255,255,0.06); padding: 36px; position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--font-heading); font-size: 5rem; color: var(--white); opacity: 0.08; position: absolute; top: 8px; left: 24px; line-height: 1; }
.testimonial-stars { color: var(--cta); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial p { font-style: italic; font-size: 1rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { font-size: 0.85rem; color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ============ TIMELINE — FASES ============ */
.timeline-section { position: relative; overflow: hidden; padding: 100px 0 80px; }
.timeline-section-bg { position: absolute; inset: 0; background: url('img/escritorio-advocacia-trabalhista.jpg') center center / cover no-repeat; opacity: 0.15; }
.timeline-section .container { position: relative; z-index: 1; }

/* Tooltip */
.tl-tooltip { position: absolute; z-index: 50; background: var(--white); color: var(--black); padding: 20px; border-radius: 6px; box-shadow: 0 8px 30px rgba(0,0,0,0.5); width: 240px; pointer-events: none; opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease; }
.tl-tooltip.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tl-tooltip-title { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.tl-tooltip-text { font-family: var(--font-body); font-size: 0.8rem; color: #444; line-height: 1.6; }

/* Desktop timeline */
.tl-desktop { margin-top: 60px; }
.tl-mobile { display: none; }

.tl-row { display: grid; grid-template-columns: repeat(8, 1fr); }
.tl-col { display: flex; justify-content: center; align-items: center; position: relative; }

/* Steps */
.tl-step { display: flex; flex-direction: column; align-items: center; position: relative; }

/* Circles */
.tl-circle { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-circle svg { width: 36px; height: 36px; color: #333; }
.tl-circle-white { background: var(--white); border: 2px solid #555; }
.tl-circle-gold { background: var(--white); border: 2px solid var(--accent-soft); }

/* Connectors (vertical lines from circle to bar) */
.tl-top .tl-connector { width: 2px; height: 30px; background: rgba(255,255,255,0.2); }
.tl-bottom .tl-connector { width: 2px; height: 30px; background: rgba(255,255,255,0.2); }

/* Help/question mark buttons */
.tl-help { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--accent-soft); background: transparent; color: var(--accent-soft); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); margin: 6px 0; position: relative; }
.tl-help:hover { background: var(--white); color: var(--black); }

/* Labels */
.tl-label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500; color: var(--white); text-align: center; line-height: 1.3; display: block; }

/* Bar segments */
.tl-bar-segment { width: 100%; height: 8px; background: var(--accent-soft); border-radius: 2px; }

/* Row spacing */
.tl-row-top { min-height: 170px; align-items: flex-end; padding-bottom: 0; }
.tl-row-labels-top { min-height: 36px; margin-bottom: 8px; }
.tl-row-bar { min-height: 40px; align-items: center; }
.tl-row-bottom { min-height: 170px; align-items: flex-start; padding-top: 0; }

/* Mobile timeline */
.tl-mobile-step { display: flex; gap: 20px; position: relative; padding-left: 28px; padding-bottom: 32px; }
.tl-mobile-step::before { content: ''; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.15); }
.tl-mobile-step:last-child::before { display: none; }
.tl-mobile-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--accent-soft); background: var(--black); flex-shrink: 0; position: absolute; left: 0; top: 2px; z-index: 1; }
.tl-mobile-content { flex: 1; }
.tl-mobile-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tl-mobile-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--white); }
.tl-mobile-toggle { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--accent-soft); background: transparent; color: var(--accent-soft); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; cursor: pointer; flex-shrink: 0; transition: all var(--transition); }
.tl-mobile-toggle.active { background: var(--white); color: var(--black); }
.tl-mobile-desc { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.tl-mobile-desc.open { max-height: 200px; padding-top: 12px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { height: 380px; border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--accent-soft), transparent); z-index: 1; }

/* ============ URGENCY ============ */
.urgency { position: relative; border-top: 2px solid var(--accent-soft); border-bottom: 2px solid var(--accent-soft); text-align: center; padding: 70px 0; overflow: hidden; }
.urgency-bg { position: absolute; inset: 0; background: url('img/martelo-juiz-tribunal-trabalho.jpg') center center / cover no-repeat; opacity: 0.12; }
.urgency .container { position: relative; z-index: 1; }
.urgency .section-title { color: var(--white); }
.urgency p { color: var(--gray-light); font-size: 1.1rem; margin-bottom: 10px; }
.urgency .urgency-strong { color: var(--white); font-weight: 600; font-size: 1.15rem; margin-bottom: 36px; }

/* ============ FAQ ============ */
.faq-header-img { text-align: center; margin-bottom: -20px; user-select: none; overflow: hidden; }
.faq-header-img span { font-family: var(--font-heading); font-size: 7rem; font-weight: 800; background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.02)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 12px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 0; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; line-height: 1.5; transition: color var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.faq-question:hover { color: var(--cta); }
.faq-toggle { flex-shrink: 0; width: 32px; height: 32px; border: 1px solid var(--accent-soft); display: flex; align-items: center; justify-content: center; color: var(--accent-soft); font-size: 1.2rem; transition: all var(--transition); }
.faq-item.active .faq-toggle { background: var(--cta); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-item.active .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 0 28px; color: var(--gray); line-height: 1.9; font-size: 0.92rem; }
.faq-answer-inner h4 { color: var(--white); font-family: var(--font-heading); margin-bottom: 12px; font-size: 1rem; font-weight: 500; }
.faq-answer-inner ul { margin: 16px 0; padding-left: 20px; }
.faq-answer-inner ul li { margin-bottom: 6px; color: var(--gray-light); }
.faq-answer-inner ul li::before { content: '\2014'; margin-right: 8px; color: var(--accent-soft); }
.faq-bottom-text { text-align: center; margin-top: 48px; }
.faq-bottom-text p { color: var(--gray); margin-bottom: 24px; font-size: 1rem; }

/* ============ CTA FINAL ============ */
.cta-final { text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; background: url('img/escritorio-direito-trabalhista.jpg') center center / cover no-repeat; }
.cta-final-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.85); }
.cta-final .container { position: relative; z-index: 1; }
.cta-final::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent-soft), transparent); z-index: 2; }
.cta-final h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; margin-top: 30px; }
.cta-final p { font-size: 1.1rem; color: var(--gray); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============ FOOTER ============ */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; }
.footer-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.footer h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact-icon { color: var(--cta); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--cta); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; color: var(--gray); }
.footer-social a:hover svg { color: var(--black); fill: var(--black); }
.footer-map { overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.footer-map iframe { width: 100%; height: 200px; border: none; filter: grayscale(0.8) brightness(0.7); transition: filter var(--transition); }
.footer-map:hover iframe { filter: grayscale(0.3) brightness(0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 0.8rem; color: var(--gray-dark); letter-spacing: 1px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 1000; transition: all var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { max-width: 100%; }
  .help-grid { grid-template-columns: repeat(3, 1fr); }
  .tl-circle { width: 64px; height: 64px; }
  .tl-circle svg { width: 24px; height: 24px; }
  .tl-label { font-size: 0.7rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { min-height: 80vh; padding-bottom: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-seals { flex-direction: column; align-items: center; gap: 12px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .institutional-grid, .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .institutional-image-wrapper { min-height: 300px; }
  .institutional-bg-text { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tl-desktop { display: none; }
  .tl-mobile { display: block; margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 28px; font-size: 0.8rem; }
  .faq-header-img span { font-size: 3.5rem; letter-spacing: 6px; }
  .cta-final h2 { font-size: 1.8rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .about-image { height: 250px; }
  .narrative { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .faq-header-img span { font-size: 2.2rem; letter-spacing: 4px; }
  .institutional-bg-text { font-size: 2rem; }
}
