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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #eef0f2;
  --mid-gray: #adb5bd;
  --dark-gray: #2d3748;
  --charcoal: #1a202c;
  --teal: #2a9d8f;
  --teal-light: #4db6a9;
  --teal-dark: #1e7b6f;
  --teal-pale: #e8f6f4;
  --accent: #264653;
  --text-body: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { color: var(--charcoal); line-height: 1.3; }
h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1rem; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--gray { background: var(--off-white); }
.section--teal { background: var(--teal-pale); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-light { color: var(--text-light); }
.text-sm { font-size: .875rem; }
.fw-600 { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.section-label { display: inline-block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); margin-bottom: 10px; }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); max-width: 600px; margin: 0 auto 48px; }
.divider { width: 48px; height: 3px; background: var(--teal); margin: 16px 0 32px; }
.divider--center { margin: 16px auto 32px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: .93rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; }
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn--sm { padding: 8px 20px; font-size: .85rem; }

/* ===== HEADER & NAV ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { fill: #fff; width: 20px; height: 20px; }
.logo-text { font-family: var(--font-head); font-size: 1.4rem; color: var(--charcoal); font-weight: 700; }
.logo-text span { color: var(--teal); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 8px 14px; border-radius: 7px; color: var(--dark-gray); font-weight: 500; font-size: .9rem; transition: all var(--transition); }
.main-nav a:hover, .main-nav a.active { background: var(--teal-pale); color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: .7rem; margin-left: 4px; }
.dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all var(--transition); z-index: 200; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 18px; color: var(--dark-gray); font-size: .88rem; border-radius: 0; }
.dropdown-menu a:hover { background: var(--teal-pale); color: var(--teal); }
.header-cta { margin-left: 12px; }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark-gray); transition: all var(--transition); border-radius: 2px; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 10px 0; color: var(--dark-gray); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero { padding: 96px 0 80px; background: linear-gradient(135deg, var(--charcoal) 0%, var(--accent) 100%); color: var(--white); overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 500px; height: 500px; border-radius: 50%; background: rgba(42,157,143,.07); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal-light); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-lead { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius); margin-top: 48px; overflow: hidden; }
.hero-stat { background: rgba(255,255,255,.04); padding: 20px; text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 700; color: var(--teal-light); display: block; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 8px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.4; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--teal); }
.card-excerpt { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 14px; font-size: .8rem; color: var(--mid-gray); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-rating { display: flex; gap: 2px; }
.star { color: #f4c430; font-size: .85rem; }
.star.empty { color: var(--border); }

/* ===== PODCAST CARD ===== */
.podcast-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; display: flex; gap: 20px; transition: all var(--transition); align-items: flex-start; }
.podcast-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.podcast-thumb { width: 88px; height: 88px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-info { flex: 1; }
.podcast-info h3 { font-size: 1rem; margin-bottom: 6px; }
.podcast-info p { font-size: .85rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.5; }
.podcast-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; padding: 3px 10px; background: var(--teal-pale); color: var(--teal-dark); border-radius: 30px; font-size: .75rem; font-weight: 500; }
.tag:hover { background: var(--teal); color: var(--white); }

/* ===== ARTICLE CARD ===== */
.article-card { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.article-card:last-child { border-bottom: none; }
.article-num { font-size: 2rem; font-weight: 700; color: var(--teal-pale); min-width: 48px; line-height: 1; }
.article-info h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 6px; }
.article-info h4 a { color: inherit; }
.article-info h4 a:hover { color: var(--teal); }
.article-info p { font-size: .85rem; color: var(--text-light); margin-bottom: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; background: var(--off-white); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: .82rem; color: var(--text-light); }
.breadcrumb ol li::after { content: '/'; margin-left: 6px; color: var(--mid-gray); }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li a { color: var(--teal); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--charcoal); padding: 56px 0; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; }

/* ===== SIDEBAR LAYOUT ===== */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: flex-start; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 28px; }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--teal); }
.widget-list { display: flex; flex-direction: column; gap: 10px; }
.widget-list a { font-size: .88rem; color: var(--text-body); display: flex; justify-content: space-between; align-items: center; }
.widget-list a:hover { color: var(--teal); }
.widget-list a span { font-size: .78rem; color: var(--mid-gray); background: var(--off-white); padding: 2px 8px; border-radius: 20px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== AUDIO PLAYER ===== */
.audio-block { background: var(--teal-pale); border: 1px solid rgba(42,157,143,.2); border-radius: var(--radius-lg); padding: 24px; margin: 32px 0; }
.audio-block-title { font-size: .85rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.audio-controls { display: flex; align-items: center; gap: 16px; }
.play-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition); }
.play-btn:hover { background: var(--teal-dark); }
.play-btn svg { fill: #fff; width: 16px; height: 16px; margin-left: 2px; }
.progress-bar { flex: 1; height: 6px; background: rgba(42,157,143,.2); border-radius: 3px; cursor: pointer; position: relative; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 3px; width: 0%; transition: width .1s linear; }
.audio-time { font-size: .78rem; color: var(--teal-dark); font-weight: 600; min-width: 80px; text-align: right; }

/* ===== RATING ===== */
.rating-block { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--off-white); border-radius: var(--radius); margin: 24px 0; }
.rating-score { font-size: 3rem; font-weight: 700; color: var(--teal); line-height: 1; }
.rating-details { flex: 1; }
.rating-label { font-size: .8rem; color: var(--text-light); margin-bottom: 4px; }
.rating-stars { display: flex; gap: 3px; margin-bottom: 6px; }
.rating-count { font-size: .78rem; color: var(--text-light); }

/* ===== REVIEW CRITERIA ===== */
.criteria-list { display: flex; flex-direction: column; gap: 12px; }
.criteria-item { display: flex; align-items: center; gap: 12px; }
.criteria-label { font-size: .88rem; color: var(--text-body); min-width: 160px; }
.criteria-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.criteria-fill { height: 100%; background: var(--teal); border-radius: 4px; }
.criteria-val { font-size: .85rem; font-weight: 600; color: var(--teal); min-width: 32px; text-align: right; }

/* ===== PROS CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pros, .cons { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.pros { border-top: 3px solid #2a9d8f; }
.cons { border-top: 3px solid #e76f51; }
.pros h4 { color: var(--teal); margin-bottom: 12px; }
.cons h4 { color: #e76f51; margin-bottom: 12px; }
.pros ul li, .cons ul li { font-size: .9rem; color: var(--text-body); padding: 5px 0 5px 20px; position: relative; }
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.cons ul li::before { content: '✗'; position: absolute; left: 0; color: #e76f51; font-weight: 700; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; background: var(--white); transition: background var(--transition); font-weight: 600; font-size: .95rem; color: var(--charcoal); }
.faq-q:hover { background: var(--teal-pale); }
.faq-q .icon { font-size: 1.2rem; color: var(--teal); transition: transform var(--transition); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; background: var(--off-white); font-size: .9rem; color: var(--text-body); }
.faq-item.open .faq-a { max-height: 400px; padding: 18px 22px; }

/* ===== NEWSLETTER ===== */
.newsletter-block { background: linear-gradient(135deg, var(--accent) 0%, var(--teal-dark) 100%); border-radius: var(--radius-lg); padding: 48px; text-align: center; color: var(--white); }
.newsletter-block h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-block p { color: rgba(255,255,255,.75); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: var(--white); font-size: .93rem; outline: none; transition: border var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.6); }

/* ===== CONTACT FORM ===== */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--dark-gray); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: .93rem; color: var(--text-body); background: var(--off-white); transition: border var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,157,143,.12); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== CATEGORY PILL ===== */
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.cat-pill { padding: 8px 20px; border: 1.5px solid var(--border); border-radius: 30px; font-size: .85rem; font-weight: 500; color: var(--text-body); cursor: pointer; transition: all var(--transition); background: var(--white); text-decoration: none; }
.cat-pill:hover, .cat-pill.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-num { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1.5px solid var(--border); color: var(--text-body); font-weight: 500; font-size: .9rem; text-decoration: none; transition: all var(--transition); }
.page-num:hover, .page-num.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.page-arrow { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1.5px solid var(--border); color: var(--teal); font-size: 1rem; text-decoration: none; transition: all var(--transition); }
.page-arrow:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ===== INFO BOXES ===== */
.info-box { border-left: 4px solid var(--teal); background: var(--teal-pale); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0; font-size: .93rem; }
.info-box strong { color: var(--teal-dark); }
.warning-box { border-left: 4px solid #f4a261; background: #fef8ee; border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0; font-size: .93rem; }

/* ===== STAT CARDS ===== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: .85rem; color: var(--text-light); }

/* ===== TEAM ===== */
.team-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--teal-pale); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.team-bio { font-size: .85rem; color: var(--text-light); }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { background: var(--charcoal); color: var(--white); padding: 14px 16px; text-align: left; font-weight: 600; font-size: .83rem; text-transform: uppercase; letter-spacing: .06em; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text-body); }
.data-table tr:hover td { background: var(--off-white); }
.data-table tr:last-child td { border-bottom: none; }
.table-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

/* ===== FOOTER ===== */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; margin-top: 16px; max-width: 280px; }
.footer-logo { margin-bottom: 12px; }
.footer-col h4 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact p { font-size: .88rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .82rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); }
.footer-links a:hover { color: var(--teal-light); }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.3rem; margin: 36px 0 14px; color: var(--charcoal); }
.policy-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--dark-gray); }
.policy-content p { font-size: .95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 14px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 16px; }
.policy-content ul li, .policy-content ol li { font-size: .95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 7px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-meta { font-size: .82rem; color: var(--mid-gray); margin-bottom: 32px; }
.policy-toc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px; }
.policy-toc h3 { font-size: 1rem; margin-bottom: 12px; color: var(--charcoal); }
.policy-toc ol { padding-left: 18px; }
.policy-toc ol li { margin-bottom: 6px; font-size: .88rem; }
.policy-toc a { color: var(--teal); }

/* ===== THANKS PAGE ===== */
.thanks-center { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; padding: 80px 24px; }
.thanks-icon { width: 80px; height: 80px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thanks-icon svg { fill: #fff; width: 40px; height: 40px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal); color: var(--white); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 999; box-shadow: 0 -4px 24px rgba(0,0,0,.2); flex-wrap: wrap; }
.cookie-banner p { font-size: .87rem; color: rgba(255,255,255,.8); max-width: 700px; margin: 0; }
.cookie-banner a { color: var(--teal-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { padding: 9px 22px; background: var(--teal); color: var(--white); border: none; border-radius: 7px; cursor: pointer; font-weight: 600; font-size: .85rem; transition: background var(--transition); }
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-decline { padding: 9px 22px; background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); border-radius: 7px; cursor: pointer; font-size: .85rem; transition: all var(--transition); }
.cookie-decline:hover { background: rgba(255,255,255,.08); }
.hidden { display: none !important; }

/* ===== SEARCH ===== */
.search-bar { display: flex; gap: 0; max-width: 540px; }
.search-bar input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: .93rem; outline: none; transition: border var(--transition); }
.search-bar input:focus { border-color: var(--teal); }
.search-bar button { padding: 13px 22px; background: var(--teal); border: none; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; color: var(--white); font-weight: 600; font-size: .9rem; transition: background var(--transition); }
.search-bar button:hover { background: var(--teal-dark); }

/* ===== QUOTE ===== */
.pull-quote { border-left: 4px solid var(--teal); padding: 18px 24px; background: var(--teal-pale); border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0; }
.pull-quote p { font-size: 1.05rem; color: var(--accent); font-style: italic; margin: 0; line-height: 1.7; }
.pull-quote cite { display: block; margin-top: 10px; font-size: .82rem; color: var(--teal-dark); font-style: normal; font-weight: 600; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); cursor: pointer; border: none; opacity: 0; transform: translateY(20px); transition: all var(--transition); z-index: 500; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top svg { fill: #fff; width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .pros-cons { grid-template-columns: 1fr; }
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
