/* ==========================================================================
   RMG v3.5 — CLEAN PROFESSIONAL + RICH MICRO-INTERACTIONS
   White bg · Soothing typography · Refined green · Animated & alive
   ========================================================================== */

:root {
  --primary: #2E7D32;
  --primary-light: #E8F5E9;
  --primary-dark: #1B5E20;
  --primary-50: rgba(46,125,50,0.06);
  --primary-100: rgba(46,125,50,0.1);
  --primary-200: rgba(46,125,50,0.15);

  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-light: #F8FAF8;
  --bg-section: #F5F7F5;

  --text: #1A1A2E;
  --text-secondary: #555770;
  --text-muted: #8E90A6;
  --text-light: #B0B3C7;

  --border: #E8ECE8;
  --border-hover: #D0D5D0;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;
  --container: 1200px;
  --nav-h: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--text-secondary); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s var(--ease); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--text); font-weight: 600; line-height: 1.25; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; background: var(--primary);
  z-index: 200; width: 0%; transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(46,125,50,0.4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 500; font-size: 0.9rem;
  border-radius: var(--radius); padding: 12px 24px;
  transition: all 0.3s var(--ease); cursor: pointer;
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  background: rgba(255,255,255,0.2); transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn:active::after { width: 300px; height: 300px; }
.btn--primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 4px 16px rgba(46,125,50,0.3); transform: translateY(-2px); }
.btn--primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn--primary:hover::before { left: 100%; }
.btn--outline { border-color: var(--border); color: var(--text); background: white; }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn--ghost { color: var(--primary); padding: 8px 0; }
.btn--ghost:hover { opacity: 0.8; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; font-size: 0.75rem; font-weight: 500;
  border-radius: var(--radius-full); border: 1px solid var(--border);
  color: var(--text-muted);
}
.badge--primary {
  background: var(--primary-light); border-color: var(--primary-200); color: var(--primary);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,50,0.1); }
  50% { box-shadow: 0 0 0 8px rgba(46,125,50,0); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-lg); height: 68px; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; gap: 10px; z-index: 101; }
.nav__logo-img { height: 40px; width: auto; max-width: 160px; object-fit: contain; transition: transform 0.3s var(--ease-spring); }
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }
.nav__logo-icon {
  width: 36px; height: 36px; background: var(--primary); color: white;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); transition: transform 0.3s var(--ease-spring);
}
.nav__logo:hover .nav__logo-icon { transform: rotate(-8deg) scale(1.1); }
.nav__logo-text { font-weight: 700; font-size: 1.1rem; color: var(--text); letter-spacing: 0.02em; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 450; color: var(--text-secondary);
  border-radius: var(--radius); transition: all 0.2s var(--ease);
  display: flex; align-items: center; gap: 6px; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--primary); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.3s var(--ease-spring);
  transform-origin: left;
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--primary); background: var(--primary-50); }
.nav__link i { font-size: 0.6rem; transition: transform 0.3s var(--ease-spring); }
.nav__dropdown { position: relative; }
.nav__dropdown::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px;
}
.nav__dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all 0.25s var(--ease-spring); pointer-events: none;
}
.nav__dropdown:hover .nav__dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav__dropdown:hover .nav__link i { transform: rotate(180deg); }
.nav__dropdown-panel a {
  display: block; padding: 10px 14px; font-size: 0.88rem; color: var(--text-secondary);
  border-radius: var(--radius); transition: all 0.2s var(--ease); position: relative;
  overflow: hidden;
}
.nav__dropdown-panel a::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--primary-50); transition: width 0.3s var(--ease);
}
.nav__dropdown-panel a:hover::before { width: 100%; }
.nav__dropdown-panel a:hover { color: var(--primary); padding-left: 20px; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-secondary); transition: all 0.3s; }
.nav__phone i { color: var(--primary); font-size: 0.8rem; animation: phoneRing 3s ease-in-out infinite; }
@keyframes phoneRing {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(10deg); }
  94% { transform: rotate(-10deg); }
  96% { transform: rotate(8deg); }
  98% { transform: rotate(-8deg); }
}
.nav__phone:hover { color: var(--primary); }
.nav__burger { display: none; width: 28px; height: 20px; position: relative; z-index: 101; flex-direction: column; justify-content: space-between; }
.nav__burger span { display: block; width: 100%; height: 2px; background: var(--text); transition: all 0.3s var(--ease); border-radius: 2px; }
.nav__burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; position: relative; }
.section--gray { background: var(--bg-section); }
.section__eyebrow {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary); margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700;
  color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section__subtitle {
  font-size: 1.1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7;
}
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ===== DECORATIVE SHAPES ===== */
.deco {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.deco--1 {
  width: 400px; height: 400px; background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  top: -100px; right: -100px; animation: decoFloat 8s ease-in-out infinite;
}
.deco--2 {
  width: 300px; height: 300px; background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  bottom: -80px; left: -80px; animation: decoFloat 10s ease-in-out infinite reverse;
}
.deco--3 {
  width: 200px; height: 200px; background: radial-gradient(circle, rgba(46,125,50,0.04) 0%, transparent 70%);
  top: 50%; right: 10%; animation: decoFloat 12s ease-in-out infinite 2s;
}
.deco--dots {
  width: 120px; height: 120px; border-radius: 0;
  background-image: radial-gradient(circle, var(--primary-200) 1.5px, transparent 1.5px);
  background-size: 16px 16px; opacity: 0.5;
  animation: decoFloat 15s ease-in-out infinite;
}
@keyframes decoFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.02); }
  50% { transform: translate(-5px, 10px) scale(0.98); }
  75% { transform: translate(8px, 5px) scale(1.01); }
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 96px; position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--bg-light) 0%, white 50%);
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700;
  color: var(--text); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.025em;
}
.hero__title span { color: var(--primary); }
.hero__subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__stat-value { font-size: 1.8rem; font-weight: 700; color: var(--text); line-height: 1; }
.hero__stat-value span { color: var(--primary); }
.hero__stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.hero__visual-card {
  background: white; border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
  transition: all 0.4s var(--ease-spring); cursor: default;
}
.hero__visual-card:nth-child(1) { animation: heroCardSlide 0.8s var(--ease-out) 0.3s both; }
.hero__visual-card:nth-child(2) { animation: heroCardSlide 0.8s var(--ease-out) 0.5s both; }
.hero__visual-card:nth-child(3) { animation: heroCardSlide 0.8s var(--ease-out) 0.7s both; }
.hero__visual-card:nth-child(4) { animation: heroCardSlide 0.8s var(--ease-out) 0.9s both; }
@keyframes heroCardSlide {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero__visual-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.hero__visual-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; color: var(--primary); flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}
.hero__visual-card:hover .hero__visual-icon { background: var(--primary); color: white; transform: scale(1.1) rotate(-5deg); }
.hero__visual-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.hero__visual-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transition: transform 0.4s var(--ease-spring);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.1rem; margin-bottom: 20px;
  transition: all 0.4s var(--ease-spring);
}
.feature-card:hover .feature-card__icon { transform: scale(1.15) rotate(-8deg); background: var(--primary); color: white; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.features-grid--4 { grid-template-columns: repeat(4, 1fr); }
.features-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.4s var(--ease); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, var(--primary-50), transparent);
  transition: height 0.5s var(--ease);
}
.service-card:hover::after { height: 60%; }
.service-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.2rem; margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.4s var(--ease-spring);
}
.service-card:hover .service-card__icon { background: var(--primary); color: white; transform: scale(1.1) rotate(-5deg); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; position: relative; z-index: 1; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; position: relative; z-index: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 0.88rem; font-weight: 500; color: var(--primary); transition: all 0.3s var(--ease-spring);
  position: relative; z-index: 1;
}
.service-card:hover .service-card__link { gap: 12px; }
.service-card__link i { transition: transform 0.3s var(--ease-spring); }
.service-card:hover .service-card__link i { transform: translateX(4px); }
.service-card__features { list-style: none; margin-top: 16px; padding: 0; position: relative; z-index: 1; }
.service-card__features li {
  font-size: 0.85rem; color: var(--text-secondary); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-card__features i { color: var(--primary); font-size: 0.7rem; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: var(--border);
}
.process-card {
  text-align: center; padding: 32px 24px; position: relative;
  counter-increment: step;
}
.process-card__num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
  color: white; font-weight: 700; font-size: 1.1rem; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
  position: relative; z-index: 1; transition: all 0.4s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(46,125,50,0.25);
}
.process-card:hover .process-card__num { transform: scale(1.15); box-shadow: 0 6px 20px rgba(46,125,50,0.35); }
.process-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.process-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 20px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-50), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.stat-card__num {
  font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1;
  position: relative; z-index: 1;
}
.stat-card__label { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; position: relative; z-index: 1; }

/* ===== SPLIT LAYOUT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__content .section__eyebrow { margin-bottom: 8px; }
.split__content .section__title { margin-bottom: 16px; }
.split__content p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--text-secondary);
  transition: all 0.3s var(--ease); padding: 6px 0;
}
.check-list__item:hover { transform: translateX(6px); color: var(--text); }
.check-list__item i { color: var(--primary); font-size: 0.85rem; transition: transform 0.3s var(--ease-spring); }
.check-list__item:hover i { transform: scale(1.2); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 64px; background: var(--bg-light);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  top: -200px; right: -100px; border-radius: 50%; pointer-events: none;
  animation: decoFloat 12s ease-in-out infinite;
}
.page-hero--compact { padding: 120px 0 48px; }
.page-hero__eyebrow { margin-bottom: 12px; }
.page-hero__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-muted); transition: all 0.3s;
}
.page-hero__back:hover { color: var(--primary); gap: 12px; }
.page-hero__back i { transition: transform 0.3s var(--ease-spring); }
.page-hero__back:hover i { transform: translateX(-4px); }
.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.page-hero__title span { color: var(--primary); }
.page-hero__title--sm { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-hero__subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; position: relative; z-index: 1; }
.page-hero__meta { display: flex; gap: 10px; margin-top: 16px; }

/* ===== CERT CARDS ===== */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0); transition: transform 0.4s var(--ease-spring);
  transform-origin: left;
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-card__badge {
  display: inline-block; padding: 6px 14px; background: var(--primary-light);
  border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600;
  color: var(--primary); margin-bottom: 16px; transition: all 0.3s var(--ease);
}
.cert-card:hover .cert-card__badge { background: var(--primary); color: white; }
.cert-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
.cert-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.cert-card__list { list-style: none; margin-top: 16px; padding: 0; }
.cert-card__list li {
  font-size: 0.88rem; color: var(--text-secondary); padding: 6px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.cert-card__list li::before { content: ''; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; flex-shrink: 0; transition: transform 0.3s; }
.cert-card:hover .cert-card__list li::before { transform: scale(1.6); }
.cert-card__list li:last-child { border: none; }

/* ===== CLIENTS ===== */
.clients-strip {
  overflow: hidden; padding: 32px 0; position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clients-strip::before, .clients-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.clients-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-section), transparent); }
.clients-strip::after { right: 0; background: linear-gradient(270deg, var(--bg-section), transparent); }
.clients-strip__track {
  display: flex; gap: 32px; animation: scroll 25s linear infinite; white-space: nowrap;
}
.clients-strip:hover .clients-strip__track { animation-play-state: paused; }
.clients-strip__item {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; border: 1px solid var(--border); border-radius: var(--radius-full);
  font-size: 0.88rem; color: var(--text-muted); background: white;
  transition: all 0.3s var(--ease);
}
.clients-strip__item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); transform: scale(1.05); }
.clients-strip__item i { font-size: 1rem; color: var(--primary); transition: transform 0.3s var(--ease-spring); }
.clients-strip__item:hover i { transform: scale(1.2) rotate(-10deg); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0; text-align: center; color: white; position: relative; overflow: hidden;
  background-size: 200% 200%; animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-section::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  top: -200px; right: -100px; animation: decoFloat 10s ease-in-out infinite;
}
.cta-section::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  bottom: -150px; left: -50px; animation: decoFloat 12s ease-in-out infinite reverse;
}
.cta-section h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 480px; margin-inline: auto; position: relative; z-index: 1; }
.cta-section .btn { background: white; color: var(--primary); border-color: white; position: relative; z-index: 1; }
.cta-section .btn:hover { background: rgba(255,255,255,0.95); box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(-3px); }

/* ===== INLINE CTA ===== */
.inline-cta {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 56px; text-align: center; transition: all 0.4s var(--ease);
}
.inline-cta:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-200); }
.inline-cta h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.inline-cta h2 span { color: var(--primary); }
.inline-cta p { color: var(--text-muted); margin-bottom: 24px; max-width: 460px; margin-inline: auto; }

/* ===== JOBS ===== */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); transform: scaleY(0); transition: transform 0.4s var(--ease-spring);
  transform-origin: bottom;
}
.job-card:hover::before { transform: scaleY(1); }
.job-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateX(4px); }
.job-card__info { flex: 1; }
.job-card__info h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.job-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.job-card__info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.job-card__info h3 a:hover { color: var(--primary); }

/* Job Detail Page */
.job-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.job-detail__main { display: flex; flex-direction: column; gap: 24px; }
.job-detail__card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px;
}
.job-detail__card h2 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.job-detail__card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.job-detail__card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }
.job-detail__requirements { display: flex; flex-direction: column; gap: 12px; }
.job-detail__requirements li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem;
  color: var(--text-secondary); line-height: 1.6;
}
.job-detail__requirements li i { color: var(--primary); margin-top: 5px; font-size: 0.8rem; flex-shrink: 0; }
.job-detail__sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.job-detail__meta-list { display: flex; flex-direction: column; gap: 16px; }
.job-detail__meta-item { display: flex; align-items: center; gap: 12px; }
.job-detail__meta-item > i { width: 36px; height: 36px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.job-detail__meta-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.job-detail__meta-value { display: block; font-size: 0.9rem; color: var(--text); font-weight: 500; }
.job-detail__share { display: flex; gap: 10px; }
.job-detail__share-btn {
  width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: var(--text-secondary); background: white; cursor: pointer; transition: all 0.2s;
}
.job-detail__share-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.empty-state {
  text-align: center; padding: 60px 32px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.empty-state i { font-size: 2rem; color: var(--text-light); margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); max-width: 400px; margin-inline: auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.contact-info__card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); transform: scaleY(0); transition: transform 0.3s var(--ease-spring);
  transform-origin: top;
}
.contact-info__card:hover::before { transform: scaleY(1); }
.contact-info__card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateX(4px); }
.contact-info__icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; color: var(--primary); margin-bottom: 14px;
  transition: all 0.4s var(--ease-spring);
}
.contact-info__card:hover .contact-info__icon { background: var(--primary); color: white; transform: scale(1.1) rotate(-5deg); }
.contact-info__card h3 { font-size: 0.95rem; margin-bottom: 6px; font-weight: 600; }
.contact-info__card a { color: var(--primary); font-size: 0.9rem; display: block; margin-bottom: 2px; }
.contact-info__card a:hover { opacity: 0.8; }
.contact-info__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FORMS ===== */
.form {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 18px; position: relative; }
.form__group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 6px; transition: color 0.2s; }
.form__group input, .form__group select, .form__group textarea {
  width: 100%; padding: 12px 16px; background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.92rem; color: var(--text);
  transition: all 0.3s var(--ease); outline: none;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-100); background: white;
  transform: translateY(-1px);
}
.form__group:focus-within label { color: var(--primary); }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--text-light); }
.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group input[type="file"] { padding: 10px; }
.form-section { max-width: 640px; margin: 0 auto; }
.form-section__header { text-align: center; margin-bottom: 36px; }
.form-section__header p { color: var(--text-muted); margin-top: 8px; }

/* ===== BLOG INDEX — Medium-inspired ===== */
.blog-hero { padding: 80px 0 40px; text-align: center; }
.blog-hero__title { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; }
.blog-hero__title span { color: var(--primary); }
.blog-hero__sub { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin: 12px auto 0; line-height: 1.7; }

/* Featured post */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.4s var(--ease); cursor: pointer;
}
.blog-featured:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.blog-featured__img { position: relative; overflow: hidden; min-height: 340px; }
.blog-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-featured:hover .blog-featured__img img { transform: scale(1.05); }
.blog-featured__badge {
  position: absolute; top: 16px; left: 16px; background: var(--primary); color: white;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 20px;
}
.blog-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__meta { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.blog-featured__category { color: var(--primary); font-weight: 600; }
.blog-featured__dot { color: var(--border); }
.blog-featured__read i { margin-right: 3px; }
.blog-featured__title { font-size: 1.6rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.02em; transition: color 0.3s; }
.blog-featured:hover .blog-featured__title { color: var(--primary); }
.blog-featured__excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-featured__author { display: flex; align-items: center; gap: 12px; }
.blog-featured__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.blog-featured__author-name { font-weight: 600; font-size: 0.88rem; display: block; }
.blog-featured__author-role { font-size: 0.78rem; color: var(--text-muted); }

/* Section header */
.blog-section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.blog-section-title { font-size: 1.3rem; font-weight: 700; white-space: nowrap; }
.blog-section-line { flex: 1; height: 1px; background: var(--border); }

/* Card grid */
.blog-grid-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card-modern {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.35s var(--ease); cursor: pointer;
}
.blog-card-modern:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.blog-card-modern__img { height: 200px; overflow: hidden; }
.blog-card-modern__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card-modern:hover .blog-card-modern__img img { transform: scale(1.06); }
.blog-card-modern__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-modern__meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-modern__meta i { margin-right: 2px; }
.blog-card-modern__category { color: var(--primary); font-weight: 600; }
.blog-card-modern__title { font-size: 1.05rem; font-weight: 650; line-height: 1.4; margin-bottom: 8px; transition: color 0.3s; }
.blog-card-modern:hover .blog-card-modern__title { color: var(--primary); }
.blog-card-modern__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-modern__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-modern__author { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
.blog-card-modern__avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem;
}
.blog-card-modern__cta { font-size: 0.82rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.blog-card-modern:hover .blog-card-modern__cta { gap: 8px; }

/* Newsletter CTA */
.blog-newsletter {
  text-align: center; max-width: 540px; margin: 0 auto; padding: 48px 0;
}
.blog-newsletter__icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 16px; }
.blog-newsletter h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.blog-newsletter p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.blog-newsletter__form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.blog-newsletter__form input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; outline: none; transition: border 0.3s;
}
.blog-newsletter__form input:focus { border-color: var(--primary); }

/* ===== ARTICLE PAGE — Medium-inspired ===== */

/* Reading progress */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--primary); z-index: 9999; transition: width 0.1s linear;
}

/* Article header */
.article-header { padding: 60px 0 0; }
.article-header__back {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 28px; transition: color 0.3s;
}
.article-header__back:hover { color: var(--primary); }
.article-header__category { margin-bottom: 16px; }
.badge--category { background: var(--primary-light); color: var(--primary); font-weight: 600; font-size: 0.78rem; padding: 4px 14px; border-radius: 20px; }
.article-header__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.25;
  letter-spacing: -0.03em; max-width: 680px; margin-bottom: 16px;
}
.article-header__excerpt { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; max-width: 620px; margin-bottom: 28px; }
.article-header__meta { display: flex; align-items: center; gap: 16px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-header__author { display: flex; align-items: center; gap: 12px; }
.article-header__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.article-header__author-name { font-weight: 600; font-size: 0.92rem; display: block; }
.article-header__author-details { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }

/* Cover image */
.article-cover { padding: 32px 0 0; }
.article-cover__wrap {
  border-radius: var(--radius-lg); overflow: hidden; max-height: 480px;
  box-shadow: var(--shadow-lg);
}
.article-cover__wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating side actions (Medium-style) */
.article-actions {
  position: fixed; left: max(16px, calc(50% - 420px)); top: 50%;
  transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  z-index: 40;
}
.article-actions.visible { opacity: 1; pointer-events: all; }
.article-actions__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: white; cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-secondary);
  transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.article-actions__btn:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.1); }
.article-actions__btn span { font-size: 0.6rem; line-height: 1; }
.article-actions__btn.clapped { animation: clapPop 0.4s var(--ease-spring); }
@keyframes clapPop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }

/* Article body */
.article-body {
  font-size: 1.12rem; line-height: 1.85; color: var(--text-secondary);
  max-width: 680px; margin: 0 auto;
}
.article-body h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; color: var(--text); letter-spacing: -0.02em; }
.article-body h3 { font-size: 1.2rem; font-weight: 650; margin: 32px 0 12px; color: var(--text); }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--primary); padding: 16px 24px; margin: 28px 0;
  background: var(--bg-section); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text);
}
.article-body img { max-width: 100%; border-radius: var(--radius-lg); margin: 24px 0; }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* Topic pills */
.article-topics { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px auto 0; max-width: 680px; }
.article-topics__pill {
  padding: 6px 16px; background: var(--bg-section); border-radius: 20px;
  font-size: 0.82rem; color: var(--text-secondary); font-weight: 500;
  transition: all 0.25s; cursor: default;
}
.article-topics__pill:hover { background: var(--primary-light); color: var(--primary); }

/* Bottom actions bar */
.article-bottom-actions {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 680px; margin: 32px auto 0; padding: 24px 0; border-top: 1px solid var(--border);
}
.article-bottom-actions__left { display: flex; align-items: center; gap: 12px; }
.article-bottom-actions__right { display: flex; align-items: center; gap: 8px; }
.article-clap-lg {
  display: flex; align-items: center; gap: 8px; padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 20px; background: white;
  font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.25s;
}
.article-clap-lg:hover { border-color: var(--primary); color: var(--primary); }
.article-clap-lg i { font-size: 1.1rem; }
.article-share-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-secondary); transition: all 0.25s;
}
.article-share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Author card */
.article-author-card {
  display: flex; gap: 24px; max-width: 680px; margin: 40px auto 0;
  padding: 32px; background: var(--bg-section); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.article-author-card__avatar {
  width: 60px; height: 60px; border-radius: 50%; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.article-author-card__info h4 { font-size: 1rem; font-weight: 650; margin-bottom: 8px; }
.article-author-card__info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

/* Legacy compat */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.4s var(--ease); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.blog-card__img {
  height: 200px; background: var(--bg-section); display: flex;
  align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.blog-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.blog-card:hover .blog-card__img::after { opacity: 1; }
.blog-card__img i, .placeholder-img i { font-size: 2rem; color: var(--text-light); transition: all 0.4s var(--ease-spring); }
.blog-card:hover .placeholder-img i { transform: scale(1.2) rotate(-10deg); color: var(--primary); }
.placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-section); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card__body h3 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.85rem; font-weight: 500; color: var(--primary); transition: all 0.3s var(--ease-spring);
}
.blog-card:hover .blog-card__link { gap: 10px; }
.blog-card__category {
  display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 2px 10px; border-radius: 12px; margin-bottom: 6px; margin-right: 8px;
}
.article__nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
}

/* ===== 404 ===== */
.error-page { text-align: center; padding: 80px 0; }
.error-page__code {
  font-size: clamp(6rem, 12vw, 10rem); font-weight: 700; color: var(--primary-light); line-height: 1;
  animation: error404Pulse 3s ease-in-out infinite;
}
@keyframes error404Pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.8; }
}
.error-page h1 { font-size: 1.4rem; margin-bottom: 8px; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }

.page-hero--full { min-height: 80vh; display: flex; align-items: center; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-light); border-top: 1px solid var(--border); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px; padding: 64px 0;
}
.footer__brand p { font-size: 0.9rem; color: var(--text-muted); margin: 14px 0 20px; line-height: 1.7; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: 0.85rem;
  transition: all 0.3s var(--ease-spring);
}
.footer__social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.footer__col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--text); }
.footer__col a {
  display: block; font-size: 0.88rem; color: var(--text-muted); padding: 4px 0;
  transition: all 0.3s var(--ease); position: relative;
}
.footer__col a:hover { color: var(--primary); transform: translateX(4px); }
.footer__col a i { margin-right: 6px; font-size: 0.8rem; color: var(--primary); }
.footer__address { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 4px; }
.footer__address i { color: var(--primary); margin-right: 6px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted);
}
.footer__badges { display: flex; gap: 8px; }

/* ===== ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: none; }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: none; }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].revealed { transform: none; }
[data-reveal="fade"] { transform: none; }

/* Staggered children */
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.25s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.3s; }
[data-stagger].revealed > * { opacity: 1; transform: none; }

/* Tilt card effect (JS-driven) */
.tilt-card { transition: transform 0.1s linear; transform-style: preserve-3d; }

/* Number counter flash */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.counted { animation: countUp 0.5s var(--ease-out); }

/* ===== HERO IMAGE ===== */
.hero__image-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 20px; box-shadow: var(--shadow-xl);
}
.hero__image {
  width: 100%; height: 280px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.hero__image-wrapper:hover .hero__image { transform: scale(1.05); }
.hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,125,50,0.15) 0%, transparent 60%);
}
.hero__floating-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.hero__visual {
  background: var(--primary-light); border-radius: var(--radius-xl);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  position: relative;
}

/* ===== ABOUT INTRO GRID ===== */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-intro__image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-intro__image img {
  width: 100%; height: 420px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.about-intro__image:hover img { transform: scale(1.03); }
.about-intro__image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--primary); color: white; padding: 16px 24px;
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 8px 24px rgba(46,125,50,0.3);
}
.about-intro__image-badge span {
  font-size: 2rem; font-weight: 700; display: block; line-height: 1;
}
.about-intro__image-badge small {
  font-size: 0.75rem; opacity: 0.9; display: block; margin-top: 4px;
}

/* ===== SERVICE CARDS WITH IMAGES ===== */
.service-card--has-img { padding: 0; overflow: hidden; }
.service-card__img {
  height: 200px; overflow: hidden; position: relative;
}
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.service-card--has-img:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 28px; position: relative; z-index: 1; }
.services-grid--detail .service-card--has-img .service-card__img { height: 220px; }

/* ===== SPLIT IMAGE WRAPPER ===== */
.split__image-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.split__image-wrapper img {
  width: 100%; height: 380px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.split__image-wrapper:hover img { transform: scale(1.03); }
.split__image-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px); border-top: 1px solid var(--border);
}
.split__image-stat {
  flex: 1; padding: 16px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.split__image-stat:last-child { border-right: none; }
.split__image-stat strong {
  display: block; font-size: 1.4rem; font-weight: 700; color: var(--primary); line-height: 1;
}
.split__image-stat span {
  font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 4px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ===== PAGE HERO WITH IMAGE ===== */
.page-hero--image {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  position: relative;
}
.page-hero--image::before { display: none; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 0;
}
.page-hero--image .container { position: relative; z-index: 1; }
.page-hero__title--light { color: white; }
.page-hero__title--light span { color: #81C784; }
.page-hero__subtitle--light { color: rgba(255,255,255,0.85); }
.section__eyebrow--light { color: #81C784; }
.page-hero__back--light { color: rgba(255,255,255,0.7); }
.page-hero__back--light:hover { color: white; }
.badge--light {
  background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

/* ===== BLOG CARD IMAGES ===== */
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.08); }
.blog-card__category {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); background: var(--primary-light);
  padding: 3px 10px; border-radius: var(--radius-full);
  margin-bottom: 6px;
}

/* ===== CULTURE BANNER ===== */
.culture-banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); height: 320px;
}
.culture-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.culture-banner:hover img { transform: scale(1.03); }
.culture-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 70%);
  display: flex; align-items: flex-end;
}
.culture-banner__content {
  padding: 40px; color: white; max-width: 400px;
}
.culture-banner__content h3 {
  font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 8px;
}
.culture-banner__content p {
  font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.7;
}

/* ===== CONTACT MAP/IMAGE ===== */
.contact-info__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  height: 200px;
}
.contact-info__map img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.contact-info__map:hover img { transform: scale(1.05); }

/* ===== NO PADDING TOP ===== */
.section--no-padding-top { padding-top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro__image img { height: 300px; }
  .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .split__image-wrapper img { height: 300px; }
  .cert-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__img { min-height: 260px; }
  .article-actions { display: none; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .culture-banner { height: 260px; }
  .deco { display: none; }
  .job-detail-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed; inset: 0; background: white; flex-direction: column;
    justify-content: center; align-items: center; gap: 8px;
    opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
  }
  .nav__menu.open { opacity: 1; visibility: visible; }
  .nav__burger { display: flex; }
  .nav__link { font-size: 1.1rem; padding: 12px 20px; }
  .nav__link::after { display: none; }
  .nav__dropdown-panel {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 20px; display: none;
  }
  .nav__dropdown.open .nav__dropdown-panel { display: block; pointer-events: auto; }
  .nav__phone { display: none; }

  .hero { padding: 120px 0 64px; }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .hero__stat { flex: 1 1 40%; }
  .hero__actions { flex-direction: column; }

  .section { padding: 64px 0; }
  .features-grid, .features-grid--4, .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-modern { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 24px; }
  .blog-featured__title { font-size: 1.3rem; }
  .blog-newsletter__form { flex-direction: column; }
  .article-header__title { font-size: 1.6rem; }
  .article-body { font-size: 1.02rem; }
  .article-author-card { flex-direction: column; text-align: center; align-items: center; }
  .article-bottom-actions { flex-direction: column; gap: 16px; align-items: center; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__badges { flex-wrap: wrap; justify-content: center; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-detail__sidebar { position: static; }
  .inline-cta { padding: 36px 24px; }
  .article { padding: 28px; }
  .page-hero { padding: 110px 0 48px; }
  .about-intro__image img { height: 250px; }
  .about-intro__image-badge { padding: 12px 18px; }
  .about-intro__image-badge span { font-size: 1.5rem; }
  .split__image-wrapper img { height: 260px; }
  .culture-banner { height: 220px; }
  .culture-banner__content { padding: 24px; }
  .culture-banner__content h3 { font-size: 1.1rem; }
  .service-card__img { height: 160px; }
  .scroll-progress { display: none; }
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */

.leader-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.leader-profile--reverse {
  grid-template-columns: 1fr 380px;
}
.leader-profile--reverse .leader-profile__image-col {
  order: 2;
}
.leader-profile--reverse .leader-profile__content {
  order: 1;
}

.leader-profile__image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f7fa;
  aspect-ratio: 3/4;
}
.leader-profile__image-frame--chairman {
  background: #f0f4f8;
}
.leader-profile__image-frame--vice {
  background: #faf5f9;
}
.leader-profile__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader-profile__monogram {
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.leader-profile__monogram--chairman {
  background: linear-gradient(135deg, #1a3c5e 0%, #0d2137 100%);
}
.leader-profile__initials {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 24px;
  border: 3px solid rgba(255,255,255,0.1);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-profile__monogram-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.leader-profile__monogram-role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.leader-profile__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2e7d32;
}
.leader-profile__badge i {
  font-size: 0.9rem;
}
.leader-profile__badge--purple {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #6a1b9a;
}

.leader-profile__designation {
  margin-bottom: 8px;
}
.leader-profile__role {
  display: inline-block;
  padding: 6px 16px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}
.leader-profile__role--purple {
  background: #f3e5f5;
  color: #6a1b9a;
}

.leader-profile__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text, #1a1d23);
  margin-bottom: 20px;
  line-height: 1.2;
}

.leader-profile__quote {
  position: relative;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f0f7f0, #e8f5e9);
  border-left: 4px solid #2e7d32;
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-style: italic;
  color: #2e7d32;
  line-height: 1.65;
  margin-bottom: 24px;
}
.leader-profile__quote--purple {
  background: linear-gradient(135deg, #faf0fc, #f3e5f5);
  border-left-color: #6a1b9a;
  color: #6a1b9a;
}
.leader-profile__quote i {
  margin-right: 8px;
  opacity: 0.5;
}

.leader-profile__bio p {
  font-size: 0.95rem;
  color: var(--text-light, #4a4f59);
  line-height: 1.8;
  margin-bottom: 14px;
}

.leader-profile__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border, #e2e5e9);
}
.leader-profile__highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-light, #f7f8fa);
  border-radius: 12px;
  transition: transform 0.2s;
}
.leader-profile__highlight:hover {
  transform: translateX(4px);
}
.leader-profile__highlight i {
  font-size: 1.1rem;
  color: var(--primary, #2e7d32);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  border-radius: 10px;
  flex-shrink: 0;
}
.leader-profile__highlight strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 650;
}
.leader-profile__highlight span {
  font-size: 0.78rem;
  color: var(--text-light, #6c7583);
}

.leader-divider {
  padding: 0;
}
.leader-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border, #e2e5e9), transparent);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-light, #f7f8fa);
  border-radius: 16px;
  border: 1px solid var(--border, #e2e5e9);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.4rem;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-light, #6c7583);
  line-height: 1.6;
}

/* ============================================================
   BRANCHES PAGE
   ============================================================ */

.branches-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.branches-overview__map img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border, #e2e5e9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.branches-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.branches-stat {
  text-align: center;
}
.branches-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #2e7d32);
}
.branches-stat span {
  font-size: 0.82rem;
  color: var(--text-light, #6c7583);
  font-weight: 500;
}

/* HQ Card */
.hq-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border, #e2e5e9);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.hq-card__content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.hq-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.hq-card__details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hq-card__address {
  font-size: 0.9rem;
  color: var(--text-light, #4a4f59);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hq-card__address i {
  color: var(--primary, #2e7d32);
  margin-right: 6px;
}
.hq-card__contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hq-card__contacts a {
  font-size: 0.88rem;
  color: var(--primary, #2e7d32);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.hq-card__contacts a:hover {
  text-decoration: underline;
}
.hq-card__hours {
  font-size: 0.82rem;
  color: var(--text-light, #6c7583);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hq-card__hours i {
  color: var(--primary, #2e7d32);
}

/* Branches grid */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.branch-card {
  background: white;
  border: 1px solid var(--border, #e2e5e9);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.branch-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.branch-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e3f2fd;
  color: #1565c0;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.branch-card__icon--green { background: #e8f5e9; color: #2e7d32; }
.branch-card__icon--orange { background: #fff3e0; color: #e65100; }
.branch-card__icon--blue { background: #e3f2fd; color: #1565c0; }
.branch-card__icon--red { background: #fce4ec; color: #c62828; }
.branch-card__icon--teal { background: #e0f2f1; color: #00695c; }
.branch-card__icon--purple { background: #f3e5f5; color: #6a1b9a; }
.branch-card__icon--cyan { background: #e0f7fa; color: #00838f; }

.branch-card__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.branch-card__region {
  font-size: 0.75rem;
  color: var(--text-light, #6c7583);
  font-weight: 500;
}
.branch-card p {
  font-size: 0.84rem;
  color: var(--text-light, #4a4f59);
  line-height: 1.6;
  flex: 1;
}
.branch-card__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border, #e2e5e9);
}

/* Dark section */
.section--dark {
  background: var(--dark, #1a1a2e);
  padding: 80px 0;
}

/* CTA block */
.cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 1rem;
}
.cta-block__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  background: transparent;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Responsive — Leadership */
@media (max-width: 1024px) {
  .leader-profile { grid-template-columns: 320px 1fr; gap: 40px; }
  .leader-profile--reverse { grid-template-columns: 1fr 320px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .leader-profile,
  .leader-profile--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .leader-profile--reverse .leader-profile__image-col { order: 0; }
  .leader-profile--reverse .leader-profile__content { order: 0; }
  .leader-profile__image-frame { max-width: 300px; margin: 0 auto; }
  .leader-profile__name { font-size: 1.7rem; }
  .values-grid { grid-template-columns: 1fr; }
  .branches-overview { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .hq-card__content { flex-direction: column; }
  .cta-block h2 { font-size: 1.4rem; }
  .branches-stats-row { gap: 20px; }
}
