/*
 * VISUAL DNA ANALYSIS — Source: BizConsult Consulting Template
 *
 * 1. LAYOUT DNA: Full-width alternating sections with contained content (~1140px),
 *    split two-column hero (text + image), generous vertical rhythm (6rem padding).
 *    Sections alternate between white and colored backgrounds.
 *
 * 2. VISUAL RHYTHM: Alternating white / primary-colored bands. Small rounded-pill
 *    labels above section headings create a repeating motif. Soft box-shadows on
 *    cards. Large spacing between sections (6rem).
 *
 * 3. DISTINCTIVE FEATURES:
 *    - Rounded-pill section labels & buttons
 *    - Corner-radius icon containers (asymmetric: 5px 0 or 0 5px)
 *    - Soft 45px box-shadows that disappear on hover (replaced by border)
 *    - Dark navy (#0E2E50) footer with light text
 *    - Wavy/curved section dividers
 *
 * 4. COLOR STRATEGY: White base + vibrant teal (#00B98E) primary + dark navy (#0E2E50)
 *    for footer/accents. Light gray (#F3F6F8) subtle background. High contrast.
 *
 * 5. TYPOGRAPHY FEEL: Clean geometric sans-serif. Heebo (body) + Inter (headings).
 *    Medium weight body, bold/extra-bold headings. Modern corporate clarity.
 *
 * 6. COMPONENT STYLE: Rounded-pill buttons (border-radius: 50px), cards with
 *    shadow-to-border hover transitions, underline nav hover effects, circular
 *    icon badges with primary background.
 */

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

:root {
  --primary: #00B98E;
  --primary-dark: #009a76;
  --primary-light: #e6f8f3;
  --dark: #0E2E50;
  --dark-mid: #153d6a;
  --light: #F3F6F8;
  --white: #FFFFFF;
  --text: #4a5568;
  --text-light: #718096;
  --heading: #1a202c;
  --border: #e2e8f0;
  --shadow-soft: 0 0 45px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius-pill: 50px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --container: 1140px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.4s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--primary {
  background: var(--primary);
  color: var(--white);
}

.section--primary h2,
.section--primary h3,
.section--primary .section-label {
  color: var(--white);
}

.section--primary .section-label {
  border-color: rgba(255,255,255,0.4);
}

.section--light {
  background: var(--light);
}

.section--dark {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

/* ========== SECTION LABEL (pill badge motif) ========== */
.section-label {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 600px;
  font-size: 1.05rem;
}

/* ========== BUTTONS (rounded-pill) ========== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.5;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ========== HEADER / NAVBAR ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  transition: padding 0.35s;
}

.site-header.scrolled .header-inner {
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.35s;
}

.site-header.scrolled .brand-name {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-list a {
  position: relative;
  display: block;
  padding: 0.5rem 1.1rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.35s;
}

.site-header.scrolled .nav-list a {
  color: var(--dark);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.site-header.scrolled .nav-list a::after {
  background: var(--primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list a:hover {
  color: var(--white);
}

.site-header.scrolled .nav-list a:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.site-header.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list a {
    color: var(--dark);
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a:hover {
    color: var(--primary);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* ========== HERO ========== */
.hero {
  background: var(--primary);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero h1 {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-subtitle p {
  margin-bottom: 0.5rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    padding: 7rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-visual {
    display: none;
  }
}

/* ========== PAGE HERO (for inner pages) ========== */
.page-hero {
  background: var(--primary);
  padding: 9rem 0 4rem;
  position: relative;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.page-hero .section-label {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }
}

/* ========== LATEST POSTS ========== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: none;
  border-color: var(--primary);
  transform: translateY(-4px);
}

.post-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card__title a {
  color: var(--heading);
}

.post-card__title a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.post-card__link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.post-card__link svg {
  transition: transform 0.3s;
}

.post-card__link:hover svg {
  transform: translateX(4px);
}

/* Featured post (first post on home) */
.post-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.post-featured:hover {
  box-shadow: none;
  border-color: var(--primary);
}

.post-featured__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.post-featured__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-featured__date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-featured__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-featured__title a {
  color: var(--heading);
}

.post-featured__title a:hover {
  color: var(--primary);
}

.post-featured__excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-featured {
    grid-template-columns: 1fr;
  }

  .post-featured__image {
    min-height: 220px;
  }
}

@media (max-width: 576px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== TOPICS ========== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.topic-card:hover {
  box-shadow: none;
  border-color: var(--primary);
}

.topic-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm) 0;
  margin: -1px 0 0 -1px;
}

.topic-card__icon svg {
  width: 24px;
  height: 24px;
}

.topic-card__body {
  padding: 1.25rem 1.5rem 1.75rem;
}

.topic-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--heading);
}

.topic-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ ========== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.open .faq-question__icon {
  background: var(--primary);
}

.faq-question__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  transition: var(--transition);
}

.faq-item.open .faq-question__icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer__inner {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-intro {
    position: static;
  }
}

/* ========== BLOG INDEX ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pagination .prev,
.pagination .next {
  font-size: 0.85rem;
  padding: 0 1rem;
}

/* ========== SINGLE POST ========== */
.post-single {
  max-width: 780px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.post-meta__date {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-cover {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.post-excerpt {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Content HTML styling */
.content-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.content-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.content-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
}

.content-body p {
  margin-bottom: 1.25rem;
}

.content-body ul,
.content-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-body li {
  margin-bottom: 0.4rem;
}

.content-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.content-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--dark);
}

.content-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-body a:hover {
  color: var(--primary-dark);
}

/* ========== STATIC PAGE ========== */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.page-content .page-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-email a {
  color: var(--primary);
  font-weight: 500;
}

.footer-email a:hover {
  color: var(--white);
}

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  font-weight: 700;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ========== CTA BAND (replaces newsletter) ========== */
.cta-band {
  background: var(--primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-band h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,185,142,0.35);
  z-index: 99;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.back-to-top.visible {
  display: flex;
}

/* ========== SKIP NAV ========== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 500;
}

.skip-nav:focus {
  top: 0;
  color: var(--white);
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ========== PRINT ========== */
@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .hamburger {
    display: none !important;
  }

  .hero, .page-hero {
    padding-top: 2rem;
    background: none;
    color: #000;
  }

  .hero h1, .page-hero h1 {
    color: #000;
  }
}
