/* ============================================================
   YUGEN — Creative Editorial Grid
   Paleta: alb, gri deschis, albastru profund, portocaliu subtil
   ============================================================ */

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

:root {
  --white: #ffffff;
  --off-white: #f8f7f5;
  --gray-100: #f2f1ef;
  --gray-200: #e4e3e0;
  --gray-300: #c8c6c1;
  --gray-500: #8a8880;
  --gray-700: #4a4845;
  --gray-900: #1e1d1b;
  --navy: #162a4a;
  --navy-mid: #1e3a60;
  --navy-light: #2c5282;
  --orange: #c8601a;
  --orange-light: #e07b35;
  --orange-subtle: #f9ede2;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 3px;
  --shadow-sm: 0 1px 4px rgba(22,42,74,0.07);
  --shadow-md: 0 4px 16px rgba(22,42,74,0.10);
  --shadow-lg: 0 10px 40px rgba(22,42,74,0.13);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.22;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--gray-700); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-weight: 300;
}

.serif { font-family: var(--font-serif); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--gray-500); font-size: 0.875rem; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--gray { background-color: var(--gray-100); }
.section--navy { background-color: var(--navy); }
.section--off { background-color: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; }

.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-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.logo-mark span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  display: block;
  line-height: 1;
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--navy); }
.main-nav > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--orange);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--off-white); color: var(--navy); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  transition: all 0.25s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 1.4rem; }
.card-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--navy); }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--orange); }
.card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }
.card-footer {
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.card-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--gray-100);
  border-radius: 2px;
  font-size: 0.72rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---- FEATURED ARTICLE ---- */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-featured-img {
  position: relative;
  min-height: 380px;
}
.article-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- SECTION HEADER ---- */
.section-header {
  margin-bottom: 3rem;
}
.section-header.center { text-align: center; }
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.section-line {
  width: 48px; height: 2px;
  background: var(--orange);
  margin-top: 1rem;
}
.section-header.center .section-line { margin: 1rem auto 0; }

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-accent { color: var(--orange); }

/* ---- TESTIMONIAL ---- */
.testimonial {
  background: var(--off-white);
  border-left: 3px solid var(--orange);
  padding: 2rem 2.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- EXPERT CARD ---- */
.expert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.expert-card:hover { box-shadow: var(--shadow-md); }
.expert-photo {
  aspect-ratio: 3/3.5;
  overflow: hidden;
}
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.expert-card:hover .expert-photo img { transform: scale(1.04); }
.expert-info { padding: 1.3rem; }
.expert-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.expert-title {
  font-size: 0.82rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.expert-bio { font-size: 0.875rem; color: var(--gray-500); }

/* ---- ARTICLE LIST ---- */
.article-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.8rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.article-row:last-child { border-bottom: none; }
.article-row-img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
}
.article-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.article-row:hover .article-row-img img { transform: scale(1.04); }

/* ---- SIDEBAR ---- */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-widget ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.sidebar-widget ul li:last-child { border-bottom: none; }

/* ---- CONTENT LAYOUT ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* ---- PROCESS / STEPS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-item {
  counter-increment: step;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  position: relative;
}
.process-item::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-200);
  position: absolute;
  top: 1rem; right: 1.2rem;
  line-height: 1;
}
.process-item h4 { color: var(--navy); margin-bottom: 0.6rem; }
.process-item p { font-size: 0.9rem; }

/* ---- TABS ---- */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.3rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(22,42,74,0.07);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%238a8880'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-hint { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.success-message {
  display: none;
  background: #edfaf3;
  border: 1.5px solid #4caf82;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  color: #22653f;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.success-message.show { display: flex; align-items: center; gap: 0.6rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 1.2rem 0;
}
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  align-items: flex-start;
}
.footer-contact-item strong { color: rgba(255,255,255,0.75); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ---- NEWSLETTER ---- */
.newsletter-bar {
  background: var(--navy-mid);
  padding: 3rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-inner h3 { color: var(--white); margin-bottom: 0.4rem; }
.newsletter-inner p { color: rgba(255,255,255,0.6); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 0.8rem; }
.newsletter-form .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--white); }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { border-color: var(--orange); }

/* ---- TAGS ---- */
.tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--gray-100);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition);
}
.tag:hover { background: var(--navy); color: var(--white); }
.tag.active { background: var(--navy); color: var(--white); }

/* ---- ACCORDION ---- */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion-btn:after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.open:after { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.accordion-body.open { display: block; }

/* ---- TABLE ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.data-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--orange-subtle);
  border-left: 3px solid var(--orange);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.highlight-box h5 { color: var(--navy); margin-bottom: 0.4rem; }
.highlight-box p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- INFO BOX (navy) ---- */
.info-box {
  background: var(--navy);
  padding: 2rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
}
.info-box h4 { color: var(--white); margin-bottom: 0.8rem; }
.info-box p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0; }
.info-box ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-box ul li:last-child { border-bottom: none; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.timeline-item h4 { color: var(--navy); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.9rem; }

/* ---- PILL NAV ---- */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill-nav a, .pill-nav button {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.82rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.pill-nav a:hover, .pill-nav button:hover,
.pill-nav a.active, .pill-nav button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- PULL QUOTE ---- */
.pull-quote {
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0;
  margin: 2.5rem 0;
  text-align: center;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ---- POLICY PAGES ---- */
.policy-content { max-width: 820px; }
.policy-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--navy-mid); }
.policy-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.policy-content ul, .policy-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.policy-content ul li, .policy-content ol li { padding: 0.25rem 0; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* ---- MOBILE MENU ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
}
.mobile-nav ul { flex-direction: column; }
.mobile-nav ul li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .sub-links {
  padding-left: 1rem;
}
.mobile-nav .sub-links a {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 500;
  transition: background var(--transition);
}
.back-to-top:hover { background: var(--orange); }
.back-to-top.visible { display: flex; }

/* ---- MISC ---- */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin: 2rem auto 0;
  max-width: 200px;
}
.show-more-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---- MEDIA QUERIES ---- */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 4rem 0; }
  .article-featured { grid-template-columns: 1fr; }
  .article-featured-img { min-height: 260px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .article-row-img { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .container { padding: 0 1.2rem; }
  section { padding: 3.5rem 0; }
  .sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}
