/*
Theme Name: FluencyHub Reviews
Theme URI: https://fluencyhub.site
Author: FluencyHub
Author URI: https://fluencyhub.site
Description: A modern WordPress theme for reviewing English-learning resources — books, platforms, apps, courses, and certificates. Features resource review cards with star ratings, a reviewer team section, reader reviews, editor's picks, and a "suggest a resource" form.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fluencyhub
Tags: blog, education, one-page, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout, translation-ready
*/

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --ink:     #1a1a2e;
  --sky:     #e8f4fd;
  --ocean:   #1c6ea4;
  --foam:    #f0f9ff;
  --coral:   #e06c4e;
  --sand:    #fdf6ec;
  --mist:    #6b7a99;
  --white:   #ffffff;
  --card-bg: #f7fbff;
  --gold:    #f5a623;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── NAV ───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,110,164,0.08);
}
.site-branding .site-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.site-branding .site-title span { color: var(--coral); }

/* WordPress nav menu */
.main-navigation ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.main-navigation ul li a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
}
.main-navigation ul li a:hover { color: var(--ocean); }
.main-navigation ul li.menu-cta a {
  background: var(--ocean);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition: background .2s;
}
.main-navigation ul li.menu-cta a:hover { background: #145c8a; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: .3s;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--foam) 0%, var(--sky) 50%, #dbeffe 100%);
  display: flex; align-items: center;
  padding: 7rem 5% 4rem;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(28,110,164,0.10) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,108,78,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(28,110,164,0.1); color: var(--ocean);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero-eyebrow::before { content: '●'; font-size: .5rem; }
.hero-section h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 1.4rem;
}
.hero-section h1 em { font-style: italic; font-weight: 300; color: var(--ocean); }
.hero-sub {
  font-size: 1.05rem; color: var(--mist);
  max-width: 480px; margin-bottom: 2.2rem; line-height: 1.7;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--ocean); color: var(--white);
  border: none; padding: .9rem 2rem; border-radius: 100px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(28,110,164,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(28,110,164,0.35); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(26,26,46,0.2);
  padding: .9rem 2rem; border-radius: 100px;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--ocean); color: var(--ocean); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--mist); font-weight: 500; }

/* Hero card */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: var(--white); border-radius: 24px; padding: 2rem;
  box-shadow: 0 20px 60px rgba(28,110,164,0.12);
  width: 100%; max-width: 380px; position: relative;
}
.lesson-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
.teacher-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean) 0%, #4a9ed4 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.lesson-info h4 { font-size: .95rem; font-weight: 600; }
.lesson-info p { font-size: .78rem; color: var(--mist); }
.live-badge {
  margin-left: auto; background: #e8f7ee; color: #2d8a4e;
  font-size: .7rem; font-weight: 700; padding: .25rem .6rem;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .5px;
}
.lesson-topic { background: var(--foam); border-radius: 14px; padding: 1.2rem; margin-bottom: 1.2rem; }
.topic-eyebrow { font-size: .7rem; color: var(--mist); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .3rem; }
.topic-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--ocean); }
.progress-bar-wrap { margin-bottom: 1rem; }
.progress-label { display: flex; justify-content: space-between; font-size: .75rem; color: var(--mist); margin-bottom: .4rem; }
.progress-bar { background: var(--sky); border-radius: 100px; height: 6px; }
.progress-fill { background: var(--ocean); border-radius: 100px; height: 100%; width: 62%; }
.lesson-words { display: flex; gap: .5rem; flex-wrap: wrap; }
.word-pill { background: var(--sky); color: var(--ocean); font-size: .78rem; font-weight: 500; padding: .25rem .75rem; border-radius: 100px; }
.float-badge {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: .75rem 1rem; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600;
}
.float-badge.top  { top: -20px; right: -30px; }
.float-badge.bottom { bottom: -16px; left: -20px; }

/* ─── COMMON SECTION STYLES ─────────────────────────────── */
.content-section { padding: 6rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--ocean); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  color: var(--mist); font-size: 1rem;
  max-width: 520px; line-height: 1.7; margin-bottom: 3rem;
}

/* ─── HOW WE REVIEW ─────────────────────────────────────── */
.section-how { background: var(--sand); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,110,164,0.10); }
.step-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 800; color: rgba(28,110,164,0.10); line-height: 1; margin-bottom: .8rem; }
.step-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.step-desc { font-size: .88rem; color: var(--mist); line-height: 1.6; }

/* ─── RESOURCE REVIEWS ──────────────────────────────────── */
.section-courses { background: var(--white); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.8rem; }
.course-card { border-radius: 20px; overflow: hidden; border: 1.5px solid rgba(28,110,164,0.1); transition: transform .2s, box-shadow .2s; }
.course-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(28,110,164,0.12); }
.course-banner { padding: 2rem; font-size: 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; min-height: 120px; position: relative; }
.banner-1 { background: linear-gradient(135deg, #dbeffe 0%, #b8e0f7 100%); }
.banner-2 { background: linear-gradient(135deg, #fde8e0 0%, #f8c8b8 100%); }
.banner-3 { background: linear-gradient(135deg, #e8f7ee 0%, #c8ecd4 100%); }
.banner-4 { background: linear-gradient(135deg, #f3e8fd 0%, #dfc8f0 100%); }
.course-body { padding: 1.5rem; }
.course-level { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ocean); margin-bottom: .5rem; }
.course-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.course-name a { text-decoration: none; color: var(--ink); }
.course-name a:hover { color: var(--ocean); }
.course-desc { font-size: .84rem; color: var(--mist); line-height: 1.6; margin-bottom: 1.2rem; }
.course-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--mist); border-top: 1px solid rgba(0,0,0,0.06); padding-top: 1rem; }

/* Resource-type badge (top-right of banner) */
.fh-badge-type {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.85); color: var(--ink);
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: .3rem .7rem; border-radius: 100px;
}

/* Rating row on review cards */
.fh-rating-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.fh-rating-row .stars { font-size: .95rem; }
.fh-rating-num { font-weight: 700; font-size: .85rem; color: var(--ink); }

/* ─── OUR TEAM ──────────────────────────────────────────── */
.section-teachers { background: var(--foam); }
.teachers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.8rem; }
.teacher-card { background: var(--white); border-radius: 20px; padding: 1.8rem; text-align: center; transition: transform .2s; }
.teacher-card:hover { transform: translateY(-4px); }
.teacher-photo { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-a { background: linear-gradient(135deg, #dbeffe, #b8d8f5); }
.photo-b { background: linear-gradient(135deg, #fde8e0, #f5c8b5); }
.photo-c { background: linear-gradient(135deg, #e8f7ee, #c5e8d0); }
.photo-d { background: linear-gradient(135deg, #f3e8fd, #dcc5f0); }
.teacher-name { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.teacher-spec { font-size: .82rem; color: var(--ocean); font-weight: 500; margin-bottom: .6rem; }
.teacher-bio { font-size: .82rem; color: var(--mist); line-height: 1.6; margin-bottom: 1rem; }
.stars { color: var(--gold); font-size: .85rem; }
.stars .review-count { color: var(--mist); font-size: .78rem; }
.fh-reviewer-meta { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; font-size: .76rem; color: var(--mist); border-top: 1px solid rgba(0,0,0,0.06); padding-top: .9rem; margin-top: .3rem; }

/* ─── READER REVIEWS ────────────────────────────────────── */
.section-testimonials { background: var(--ink); color: var(--white); }
.section-testimonials .section-eyebrow { color: var(--coral); }
.section-testimonials .section-sub { color: rgba(255,255,255,0.6); }
.section-testimonials .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem; transition: background .2s; }
.testi-card:hover { background: rgba(255,255,255,0.08); }
.quote-icon { font-size: 2rem; line-height: 1; margin-bottom: 1rem; color: var(--coral); }
.testi-text { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: rgba(255,255,255,0.1); overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: .88rem; color: var(--white); }
.author-flag { font-size: .78rem; color: rgba(255,255,255,0.5); }

/* ─── TOP PICKS ─────────────────────────────────────────── */
.section-pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.8rem; align-items: start; }
.pricing-card { border-radius: 20px; padding: 2.2rem; border: 1.5px solid rgba(28,110,164,0.12); position: relative; }
.pricing-card.featured { background: var(--ocean); color: var(--white); border-color: transparent; box-shadow: 0 20px 60px rgba(28,110,164,0.25); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--coral); color: var(--white); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: .3rem .9rem; border-radius: 100px; white-space: nowrap; }
.plan-name { font-weight: 700; font-size: .95rem; margin-bottom: .6rem; text-transform: uppercase; letter-spacing: 1px; }
.plan-price { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: .5rem; letter-spacing: -1px; color: var(--gold); }
.pricing-card.featured .plan-price { color: #ffd77a; }
.plan-price .period { font-size: 1rem; font-weight: 400; }
.plan-period { font-size: .82rem; color: var(--mist); margin-bottom: 1.5rem; font-weight: 600; }
.pricing-card.featured .plan-period { color: rgba(255,255,255,0.7); }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li { font-size: .88rem; padding: .4rem 0; display: flex; align-items: center; gap: .6rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pricing-card.featured .plan-features li { border-bottom-color: rgba(255,255,255,0.1); }
.plan-features li::before { content: '✓'; color: var(--ocean); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .plan-features li::before { color: rgba(255,255,255,0.8); }
.btn-plan { width: 100%; padding: .85rem; border-radius: 100px; border: none; font-size: .95rem; font-weight: 600; cursor: pointer; transition: .2s; font-family: 'DM Sans', sans-serif; }
.btn-plan-outline { background: transparent; border: 1.5px solid rgba(28,110,164,0.2); color: var(--ocean); }
.btn-plan-outline:hover { background: var(--foam); }
.btn-plan-white { background: var(--white); color: var(--ocean); }
.btn-plan-white:hover { background: var(--sky); }

/* ─── GUIDES / BLOG ─────────────────────────────────────── */
.section-blog { background: var(--sand); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-1 { background: linear-gradient(135deg, #e8f4ff, #cde4f8); }
.thumb-2 { background: linear-gradient(135deg, #fff0ec, #fdd8cc); }
.thumb-3 { background: linear-gradient(135deg, #f0faf2, #c8ecd2); }
.blog-content { padding: 1.4rem; }
.blog-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ocean); margin-bottom: .5rem; }
.blog-title { font-weight: 700; font-size: .95rem; margin-bottom: .5rem; line-height: 1.4; }
.blog-title a { text-decoration: none; color: var(--ink); }
.blog-title a:hover { color: var(--ocean); }
.blog-excerpt { font-size: .82rem; color: var(--mist); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { font-size: .75rem; color: var(--mist); }

/* ─── SUGGEST A RESOURCE ────────────────────────────────── */
.section-contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form-wrap { background: var(--foam); border-radius: 24px; padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid rgba(28,110,164,0.15); border-radius: 10px;
  font-size: .9rem; font-family: 'DM Sans', sans-serif;
  background: var(--white); color: var(--ink);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-submit { width: 100%; border-radius: 12px; padding: 1rem; font-size: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--foam); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: .78rem; color: var(--mist); margin-bottom: .2rem; }
.ci-value { font-weight: 600; font-size: .95rem; }

/* ─── SINGLE RESOURCE REVIEW (fh_resource single template) ─ */
.fh-review-header { max-width: 800px; margin: 0 auto 2rem; }
.fh-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.fh-pros, .fh-cons { border-radius: 16px; padding: 1.5rem; }
.fh-pros { background: #e8f7ee; }
.fh-cons { background: #fde8e0; }
.fh-pros h4 { color: #2d8a4e; margin-bottom: .8rem; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.fh-cons h4 { color: #c0392b; margin-bottom: .8rem; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.fh-pros ul, .fh-cons ul { list-style: none; }
.fh-pros li, .fh-cons li { font-size: .88rem; padding: .3rem 0; }
.fh-verdict-box { background: var(--foam); border-left: 4px solid var(--ocean); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 5% 0; font-size: .88rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col .widget-title,
.footer-col h4.widget-title {
  color: var(--white); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1.2rem;
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; display: block; margin-bottom: .8rem; text-decoration: none; }
.footer-logo span { color: var(--coral); }
.footer-tagline { color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; font-size: .85rem; }
.footer-nav ul,
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-nav a,
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-nav a:hover,
.footer-links a:hover { color: var(--white); }
.footer-widgets-col .footer-widget { margin-bottom: 1.5rem; }
.footer-widgets-col .footer-widget:last-child { margin-bottom: 0; }
.footer-widgets-col a { color: rgba(255,255,255,0.55); }
.footer-widgets-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.6rem 0; text-align: center; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,0.45); }

/* WordPress-generated classes */
.wp-block-image { margin: 1.5rem 0; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 1.5rem auto; display: block; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fh-pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .main-navigation { display: none; }
  .main-navigation.toggled { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 5%; border-bottom: 1px solid rgba(28,110,164,0.1); }
  .main-navigation.toggled ul { flex-direction: column; gap: 1rem; }
  .menu-toggle { display: flex; }
  .hero-stats { gap: 1.2rem; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
