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

:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --secondary: #e8f4f0;
  --accent: #3eb489;
  --accent-warm: #f0a500;
  --accent-coral: #e05c4b;
  --bg-base: #f7f5f0;
  --bg-card: #ffffff;
  --text-dark: #1c2b3a;
  --text-mid: #4a6078;
  --text-light: #8a9bb0;
  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 40%, #1e6b55 100%);
  --gradient-accent: linear-gradient(135deg, #3eb489 0%, #2a8a65 100%);
  --gradient-warm: linear-gradient(135deg, #f0a500 0%, #e07800 100%);
  --gradient-coral: linear-gradient(135deg, #e05c4b 0%, #c0392b 100%);
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08), 0 1px 2px rgba(26,58,92,0.04);
  --shadow-md: 0 8px 24px rgba(26,58,92,0.12), 0 2px 8px rgba(26,58,92,0.06);
  --shadow-lg: 0 20px 48px rgba(26,58,92,0.16), 0 8px 16px rgba(26,58,92,0.08);
  --shadow-xl: 0 32px 64px rgba(26,58,92,0.20), 0 12px 24px rgba(26,58,92,0.10);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --gap: clamp(12px, 2vw, 20px);
  --container: min(1200px, 100% - clamp(32px, 6vw, 120px));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.cursorTrail {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(62,180,137,0.6) 0%, rgba(62,180,137,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.12s ease, left 0.12s ease, top 0.12s ease;
  mix-blend-mode: multiply;
}

.sectionEyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sectionEyebrow--light {
  color: rgba(255,255,255,0.7);
}

.sectionTitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sectionTitle--light {
  color: #fff;
}

.heroBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.heroBtn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(62,180,137,0.4);
}

.heroBtn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(62,180,137,0.5);
}

.heroBtn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.heroBtn--ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.heroBtn--light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.heroBtn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================
   MOBILE MENU
======================== */
.mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(26,58,92,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobileMenuOverlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 44px) 36px);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobileMenu.active {
  clip-path: circle(150% at calc(100% - 44px) 36px);
  pointer-events: all;
}

.mobileMenu_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobileMenu_link {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}

.mobileMenu.active .mobileMenu_link {
  opacity: 1;
  transform: translateY(0);
}

.mobileMenu.active .mobileMenu_link:nth-child(1) { transition-delay: 0.35s; }
.mobileMenu.active .mobileMenu_link:nth-child(2) { transition-delay: 0.42s; }
.mobileMenu.active .mobileMenu_link:nth-child(3) { transition-delay: 0.49s; }
.mobileMenu.active .mobileMenu_link:nth-child(4) { transition-delay: 0.56s; }
.mobileMenu.active .mobileMenu_link:nth-child(5) { transition-delay: 0.63s; }

.mobileMenu_link:hover {
  color: var(--accent);
}

/* ========================
   HERO
======================== */
.mainHero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(16px, 5vw, 80px) 60px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.mainHero_bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(62,180,137,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(240,165,0,0.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.mainHero_grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.mainHero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62,180,137,0.15);
  border: 1px solid rgba(62,180,137,0.3);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
}

.badge_dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(62,180,137,0.3);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(62,180,137,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(62,180,137,0.1); }
}

.mainHero_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.mainHero_titleAccent {
  background: linear-gradient(135deg, #3eb489, #7dd4b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mainHero_subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.mainHero_actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.heroBentoMini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 140px;
  gap: 12px;
}

.heroBentoMini_cell {
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.heroBentoMini_cell:hover {
  transform: translateY(-4px);
}

.heroBentoMini_cell--a {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.heroBentoMini_cell--a i {
  font-size: 2rem;
  color: var(--accent);
}

.heroBentoMini_cell--b {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  grid-row: span 2;
}

.heroBentoMini_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.heroBentoMini_cell--c {
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.heroBentoMini_cell--c i {
  font-size: 1.8rem;
}

.heroBentoMini_cell--d {
  background: var(--gradient-warm);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.heroBentoMini_cell--d i {
  font-size: 1.8rem;
}

.mainHero_scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounceDown 2.5s ease infinite;
  z-index: 2;
}

.mainHero_scroll i {
  font-size: 0.85rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================
   BENTO SECTION
======================== */
.bentoSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.bentoSection_container {
  max-width: 1200px;
  margin: 0 auto;
}

.bentoSection_header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.bentoGrid--intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.bentoCell {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.bentoCell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bentoCell--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--primary);
  min-height: 280px;
}

.bentoCell--dark {
  box-shadow: var(--shadow-md);
}

.bentoCell--accent {
  background: var(--gradient-accent);
  box-shadow: 0 8px 24px rgba(62,180,137,0.25);
}

.bentoCell--img {
  position: relative;
  min-height: 280px;
}

.bentoCell--warm {
  background: var(--gradient-warm);
  box-shadow: 0 8px 24px rgba(240,165,0,0.25);
}

.bentoCell--tall {
  grid-row: span 2;
}

.bentoCell--light {
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

.bentoCell--primary {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.bentoCell_inner {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.bentoCell_inner--centered {
  align-items: center;
  text-align: center;
}

.bentoCell_icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.bentoCell--dark .bentoCell_icon {
  color: #7dd4b0;
}

.bentoCell_iconLg {
  font-size: 2.5rem;
  color: #fff;
  opacity: 0.9;
}

.bentoCell_bigIcon {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.bentoCell_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.bentoCell--light .bentoCell_title {
  color: var(--primary);
}

.bentoCell_text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.bentoCell--light .bentoCell_text {
  color: var(--text-mid);
}

.bentoCell_list {
  list-style: none;
  padding: 0;
  margin-top: 4px;
}

.bentoCell_list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 4px 0 4px 18px;
  position: relative;
  border-bottom: 1px solid rgba(26,58,92,0.06);
}

.bentoCell_list li:last-child {
  border-bottom: none;
}

.bentoCell_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.bentoCell_imgWrap {
  overflow: hidden;
}

.bentoCell_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bentoCell:hover .bentoCell_img {
  transform: scale(1.05);
}

.bentoCell_imgFull {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.bentoCell:hover .bentoCell_imgFull {
  transform: scale(1.05);
}

.bentoCell_imgOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,58,92,0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ========================
   TOPICS SECTION
======================== */
.topicsSection {
  background: var(--gradient-hero);
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.topicsSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.topicsSection_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topicsSection_header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.topicsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.topicCard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  cursor: pointer;
}

.topicCard:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.topicCard--wide {
  grid-column: span 2;
}

.topicCard_number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.topicCard_icon {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.topicCard_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.topicCard_text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.topicCard_expand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}

.topicCard_expand i {
  transition: transform 0.3s ease;
}

.topicCard.expanded .topicCard_expand i {
  transform: rotate(180deg);
}

.topicCard_expandContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease;
  opacity: 0;
}

.topicCard.expanded .topicCard_expandContent {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
}

.topicCard_expandContent p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}

/* ========================
   FEATURE SECTION
======================== */
.featureSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.featureSection_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.featureSection_lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.featureList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featureItem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.featureItem_icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featureItem:hover .featureItem_icon {
  background: var(--accent);
  color: #fff;
}

.featureItem_body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.featureItem_body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.featureVisual {
  position: relative;
  height: 480px;
}

.featureVisual_img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.featureVisual_img--main {
  width: 82%;
  height: 75%;
  position: absolute;
  top: 0;
  right: 0;
}

.featureVisual_img--secondary {
  width: 55%;
  height: 48%;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--bg-base);
  box-shadow: var(--shadow-xl);
}

.featureVisual_badge {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(62,180,137,0.4);
  white-space: nowrap;
}

/* ========================
   AUDIENCE SECTION
======================== */
.audienceSection {
  background: var(--bg-card);
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.audienceSection_container {
  max-width: 1200px;
  margin: 0 auto;
}

.audienceSection_header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.audienceCard {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-base);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.audienceCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audienceCard_img {
  height: 200px;
  overflow: hidden;
}

.audienceCard_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.audienceCard:hover .audienceCard_img img {
  transform: scale(1.06);
}

.audienceCard_body {
  padding: 24px;
}

.audienceCard_icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.audienceCard_body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.audienceCard_body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========================
   CITIES PREVIEW
======================== */
.citiesPreview {
  background: var(--primary);
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.citiesPreview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(62,180,137,0.1) 0%, transparent 70%);
}

.citiesPreview_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.citiesPreview_text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.citiesMap {
  position: relative;
  height: 380px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.cityDot {
  position: absolute;
  cursor: pointer;
}

.cityDot_pulse {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.cityDot_pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(62,180,137,0.3);
  animation: cityPulse 2s ease infinite;
}

@keyframes cityPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}

.cityDot_label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.cityDot--bucharest { bottom: 30%; left: 65%; }
.cityDot--cluj { top: 30%; left: 42%; }
.cityDot--timisoara { top: 42%; left: 12%; }
.cityDot--iasi { top: 22%; right: 10%; }
.cityDot--brasov { top: 48%; left: 60%; }

/* ========================
   CTA SECTION
======================== */
.ctaSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
  background: var(--bg-base);
}

.ctaSection_container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,58,92,0.06);
}

.ctaSection_icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.ctaSection_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ctaSection_text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ctaSection_actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaSection_actions .heroBtn--ghost {
  background: rgba(26,58,92,0.06);
  color: var(--primary);
  border-color: rgba(26,58,92,0.2);
}

.ctaSection_actions .heroBtn--ghost:hover {
  background: rgba(26,58,92,0.1);
}

/* ========================
   FOOTER
======================== */
.pageFooter {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.pageFooter_pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 120%, rgba(62,180,137,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L100 0 L100 2 L0 2Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

.pageFooter_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 5vw, 80px) clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.pageFooter_brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pageFooter_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.pageFooter_logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pageFooter_tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 320px;
}

.pageFooter_contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pageFooter_contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.pageFooter_contact a:hover {
  color: var(--accent);
}

.pageFooter_contact a i {
  width: 16px;
  color: var(--accent);
}

.pageFooter_nav h4,
.pageFooter_legal h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.pageFooter_links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pageFooter_links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
  display: block;
}

.pageFooter_links a:hover {
  color: var(--accent);
}

.pageFooter_address {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.pageFooter_address i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.pageFooter_bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(16px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pageFooter_bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ========================
   ABOUT PAGE
======================== */
.aboutSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.aboutSection_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.aboutGrid_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutGrid_text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.aboutGrid_img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.missionBento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.missionCell {
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.missionCell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.missionCell i {
  font-size: 2rem;
  margin-bottom: 4px;
}

.missionCell h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.missionCell p {
  font-size: 0.87rem;
  line-height: 1.7;
}

.missionCell--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.missionCell--primary i { color: var(--accent); }
.missionCell--primary p { color: rgba(255,255,255,0.75); }

.missionCell--accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(62,180,137,0.3);
}

.missionCell--accent i { color: rgba(255,255,255,0.9); }
.missionCell--accent p { color: rgba(255,255,255,0.8); }

.missionCell--warm {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 8px 24px rgba(240,165,0,0.3);
}

.missionCell--warm i { color: rgba(255,255,255,0.9); }
.missionCell--warm p { color: rgba(255,255,255,0.8); }

.missionCell--light {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.missionCell--light i { color: var(--accent-coral); }
.missionCell--light p { color: var(--text-mid); }

.principlesSection {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.principleItem {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,58,92,0.08);
  transition: background 0.25s ease;
}

.principleItem:first-child {
  border-top: 1px solid rgba(26,58,92,0.08);
}

.principleItem_num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  flex-shrink: 0;
  width: 36px;
}

.principleItem_body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.principleItem_body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ========================
   CURRICULUM PAGE
======================== */
.curriculumSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.curriculumSection_container {
  max-width: 900px;
  margin: 0 auto;
}

.curriculumIntro {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.curriculumIntro_text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

.moduleList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.moduleCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,92,0.06);
  transition: box-shadow 0.3s ease;
}

.moduleCard:hover {
  box-shadow: var(--shadow-md);
}

.moduleCard_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}

.moduleCard_meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moduleCard_tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(62,180,137,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.moduleCard_duration {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.moduleCard_icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.moduleCard_icon--blue { background: var(--primary); }
.moduleCard_icon--green { background: var(--gradient-accent); }
.moduleCard_icon--warm { background: var(--gradient-warm); }
.moduleCard_icon--coral { background: var(--gradient-coral); }

.moduleCard_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--primary);
  padding: 16px 28px 8px;
  line-height: 1.3;
}

.moduleCard_body {
  padding: 0 28px 28px;
}

.moduleCard_body > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.moduleCard_topics h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.moduleCard_topics ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.moduleCard_topics ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.moduleCard_topics ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.moduleCard_exercise {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(62,180,137,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  border: 1px solid rgba(62,180,137,0.15);
}

.includedMaterials {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

.materialsBento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 28px;
}

.materialsCell {
  background: var(--bg-base);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}

.materialsCell:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.materialsCell i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.materialsCell h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.materialsCell p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========================
   CITIES PAGE
======================== */
.citiesSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.citiesSection_container {
  max-width: 1200px;
  margin: 0 auto;
}

.citiesSection_intro {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.citiesSection_intro p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 600px;
}

.citiesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.cityCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,92,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s ease;
  position: relative;
}

.cityCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cityCard--featured {
  background: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.cityCard--request {
  border: 2px dashed rgba(26,58,92,0.15);
  background: var(--bg-base);
}

.cityCard_badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cityCard_icon {
  font-size: 2rem;
  color: var(--accent);
}

.cityCard--featured .cityCard_icon {
  color: rgba(255,255,255,0.7);
}

.cityCard_icon--outline {
  color: var(--text-light);
}

.cityCard_name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.cityCard--featured .cityCard_name {
  color: #fff;
}

.cityCard--request .cityCard_name {
  color: var(--text-mid);
}

.cityCard_region {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); }

.cityCard--featured .cityCard_region { color: rgba(255,255,255,0.6); }

.cityCard_desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.cityCard--featured .cityCard_desc {
  color: rgba(255,255,255,0.75);
}

.cityCard_details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cityCard_details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.cityCard--featured .cityCard_details span {
  color: rgba(255,255,255,0.6);
}

.cityCard_details i {
  color: var(--accent);
  font-size: 0.78rem;
}

.cityCard_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(62,180,137,0.3);
  margin-top: 4px;
}

.cityCard--featured .cityCard_cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

.cityCard--featured .cityCard_cta:hover {
  background: rgba(255,255,255,0.25);
}

.cityCard_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62,180,137,0.4);
}

.cityCard_cta--outline {
  background: transparent;
  border: 2px solid rgba(26,58,92,0.2);
  color: var(--primary);
  box-shadow: none;
}

.cityCard_cta--outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: none;
}

.citiesNote {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.citiesNote i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.citiesNote p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ========================
   CONTACT PAGE
======================== */
.contactSection {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 5vw, 80px);
}

.contactSection_container {
  max-width: 1100px;
  margin: 0 auto;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.contactFormCard {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,58,92,0.06);
}

.contactFormCard_title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contactFormCard_subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactForm_field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contactForm_label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.contactForm_input,
.contactForm_textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26,58,92,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-base);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  resize: none;
}

.contactForm_input:focus,
.contactForm_textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(62,180,137,0.12);
  background: #fff;
}

.contactForm_input::placeholder,
.contactForm_textarea::placeholder {
  color: var(--text-light);
}

.contactForm_privacy {
  display: flex;
  align-items: flex-start;
}

.contactForm_checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contactForm_checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contactForm_checkBox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(26,58,92,0.25);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.25s ease;
  position: relative;
  background: var(--bg-base);
}

.contactForm_checkbox:checked + .contactForm_checkBox {
  background: var(--accent);
  border-color: var(--accent);
}

.contactForm_checkbox:checked + .contactForm_checkBox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.contactForm_checkLabel a {
  color: var(--accent);
  text-decoration: underline;
}

.contactForm_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(62,180,137,0.35);
}

.contactForm_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(62,180,137,0.45);
}

.contactInfoCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,92,0.06);
  margin-bottom: 20px;
}

.contactInfoCard h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26,58,92,0.08);
}

.contactInfoItem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,58,92,0.06);
}

.contactInfoItem:last-child {
  border-bottom: none;
}

.contactInfoItem_icon {
  width: 38px;
  height: 38px;
  background: var(--secondary);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contactInfoItem_label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contactInfoItem_value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.5;
}

a.contactInfoItem_value:hover {
  color: var(--accent);
}

.officeDescCard {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,92,0.06);
}

.officeDescCard_img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.officeDescCard_body {
  padding: 20px;
}

.officeDescCard_body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.officeDescCard_body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contactMap {
  margin-top: clamp(32px, 4vw, 48px);
}

.contactMap_title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contactMap_frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ========================
   TIPPY CUSTOM THEME
======================== */
.tippy-box[data-theme~='custom'] {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  line-height: 1.6;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.tippy-box[data-theme~='custom'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: var(--primary);
}

.tippy-box[data-theme~='custom'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: var(--primary);
}

/* ========================
   COOKIE CONSENT PANEL
======================== */
.cookiePanel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 9000;
  box-shadow: -8px 0 40px rgba(26,58,92,0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(26,58,92,0.08);
}

.cookiePanel.visible {
  transform: translateX(0);
}

.cookiePanel_overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,58,92,0.45);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookiePanel_overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookiePanel_header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(26,58,92,0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookiePanel_shieldIcon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.cookiePanel_headerText h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.cookiePanel_headerText p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.cookiePanel_body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookiePanel_intro {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,58,92,0.07);
}

.cookiePanel_intro a {
  color: var(--accent);
  text-decoration: underline;
}

.cookieCategory {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,58,92,0.06);
}

.cookieCategory:last-child {
  border-bottom: none;
}

.cookieCategory_info {
  flex: 1;
}

.cookieCategory_name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}

.cookieCategory_desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookieToggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookieToggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookieToggle_slider {
  position: absolute;
  inset: 0;
  background: rgba(26,58,92,0.15);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookieToggle_slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookieToggle input:checked + .cookieToggle_slider {
  background: var(--accent);
}

.cookieToggle input:checked + .cookieToggle_slider::before {
  transform: translateX(18px);
}

.cookieToggle input:disabled + .cookieToggle_slider {
  background: rgba(62,180,137,0.4);
  cursor: not-allowed;
}

.cookiePanel_footer {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(26,58,92,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookieBtn {
  width: 100%;
  padding: 11px 16px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.cookieBtn--accept {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(62,180,137,0.35);
}

.cookieBtn--accept:hover {
  box-shadow: 0 6px 20px rgba(62,180,137,0.45);
  transform: translateY(-1px);
}

.cookieBtn--reject {
  background: rgba(26,58,92,0.06);
  color: var(--text-mid);
  border: 1px solid rgba(26,58,92,0.12);
}

.cookieBtn--reject:hover {
  background: rgba(26,58,92,0.1);
}

.cookieBtn--save {
  background: var(--primary);
  color: #fff;
}

.cookieBtn--save:hover {
  background: var(--primary-light);
}

/* ========================
   HAMBURGER RESPONSIVE
======================== */
@media (max-width: 768px) {
  .hamburgerBtn {
    display: flex;
  }

  .siteHeader_nav {
    display: none;
  }

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

  .mainHero_badge {
    margin: 0 auto 24px;
  }

  .mainHero_subtitle {
    margin: 0 auto 36px;
  }

  .mainHero_actions {
    justify-content: center;
  }

  .heroBentoMini {
    display: none;
  }

  .bentoGrid--intro {
    grid-template-columns: 1fr;
  }

  .bentoCell--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .bentoCell--wide .bentoCell_imgWrap {
    height: 200px;
  }

  .bentoCell--tall {
    grid-row: span 1;
  }

  .topicsGrid {
    grid-template-columns: 1fr;
  }

  .topicCard--wide {
    grid-column: span 1;
  }

  .featureSection_container {
    grid-template-columns: 1fr;
  }

  .featureVisual {
    height: 320px;
  }

  .featureVisual_badge {
    right: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .audienceGrid {
    grid-template-columns: 1fr;
  }

  .citiesPreview_container {
    grid-template-columns: 1fr;
  }

  .citiesMap {
    height: 280px;
  }

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

  .aboutGrid {
    grid-template-columns: 1fr;
  }

  .aboutGrid_img {
    height: 260px;
  }

  .citiesGrid {
    grid-template-columns: 1fr;
  }

  .contactGrid {
    grid-template-columns: 1fr;
  }

  .pageFooter_container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pageFooter_bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .materialsBento {
    grid-template-columns: 1fr;
  }

  .featureSection_container {
    gap: 40px;
  }
}

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

  .mainHero_actions {
    flex-direction: column;
    align-items: center;
  }

  .heroBtn {
    width: 100%;
    justify-content: center;
  }

  .ctaSection_actions {
    flex-direction: column;
    align-items: center;
  }

  .ctaSection_actions .heroBtn {
    width: 100%;
    justify-content: center;
  }

  .cookiePanel {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    border-left: none;
    border-top: 1px solid rgba(26,58,92,0.1);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-height: 90vh;
  }

  .cookiePanel.visible {
    transform: translateY(0);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .bentoGrid--intro {
    grid-template-columns: repeat(2, 1fr);
  }

  .bentoCell--wide {
    grid-column: span 2;
  }

  .bentoCell--tall {
    grid-row: span 1;
  }

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

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

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

  .heroBentoMini {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 120px;
  }
}

/* ========================
   UTILITY CLASSES
======================== */
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.textCenter { text-align: center; }
.textLeft { text-align: left; }

/* ========================
   AOS OVERRIDES
======================== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}