/* ================================================================
   Youth Center Prague — Premium Design System v2
   Editorial · Bold · Modern
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

/* ============= DESIGN TOKENS ============= */
:root {
  /* Brand */
  --orange:           #FF5A1F;
  --orange-bright:    #FF7A45;
  --orange-dark:      #E54910;
  --orange-deep:      #B83608;
  --orange-glow:      rgba(255,90,31,0.18);
  --orange-soft:      rgba(255,90,31,0.08);
  --orange-tint:      #FFF1EA;

  /* Accent */
  --teal:             #14B8A6;
  --gold:             #F5B82E;

  /* Neutrals */
  --ink:              #0A0A0B;
  --ink-soft:         #141417;
  --ink-card:         #18181C;
  --ink-elev:         #1F1F24;
  --ink-line:         rgba(255,255,255,0.08);
  --ink-line-strong:  rgba(255,255,255,0.14);
  --ink-text:         rgba(255,255,255,0.92);
  --ink-text-mid:     rgba(255,255,255,0.62);
  --ink-text-dim:     rgba(255,255,255,0.42);

  --white:            #FFFFFF;
  --paper:            #FAFAF7;
  --paper-warm:       #F4F1EC;
  --paper-line:       #E6E1D9;

  --slate-900:        #0F1014;
  --slate-700:        #2A2C33;
  --slate-500:        #5C5F69;
  --slate-300:        #9AA0AB;
  --slate-100:        #E6E8EC;
  --slate-50:         #F6F7F9;

  /* Type */
  --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:     'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-serif:       'Instrument Serif', Georgia, serif;

  /* Spacing & layout */
  --max-width:        1240px;
  --max-narrow:        920px;
  --gutter:            32px;
  --section-py:        clamp(72px, 9vw, 130px);
  --header-height:     72px;

  /* Radii */
  --radius-xs:         6px;
  --radius-sm:         10px;
  --radius:            14px;
  --radius-lg:         22px;
  --radius-xl:         32px;
  --radius-pill:       999px;

  /* Shadows */
  --shadow-sm:         0 2px 6px rgba(15,16,20,.05), 0 1px 2px rgba(15,16,20,.04);
  --shadow:            0 12px 32px -8px rgba(15,16,20,.10), 0 2px 6px rgba(15,16,20,.05);
  --shadow-lg:         0 28px 60px -16px rgba(15,16,20,.16), 0 8px 16px rgba(15,16,20,.05);
  --shadow-glow:       0 18px 48px -12px rgba(255,90,31,.4);
  --shadow-inset-line: inset 0 0 0 1px var(--paper-line);

  /* Easings */
  --ease-out:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:       cubic-bezier(0.65, 0, 0.35, 1);
  --transition:        260ms var(--ease-out);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-sans);
  color: var(--slate-900);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: var(--orange);
  color: var(--white);
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--slate-900);
  line-height: 1.05;
}

/* ============= LAYOUT ============= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-py) 0; position: relative; }

/* ============= UTILITIES ============= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.eyebrow.light { color: var(--orange-bright); }

.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.section-title .accent { color: var(--orange); }
.section-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-title.on-dark { color: var(--white); }

.section-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--slate-500);
  max-width: 620px;
}
.section-lead.on-dark { color: var(--ink-text-mid); }

.section-header { margin-bottom: 64px; max-width: 720px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============= HEADER ============= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--ink-line);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 300ms var(--ease-out), height 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  height: 60px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.logo:hover { transform: scale(1.02); }
.logo svg, .logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a::before {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::before { transform: scaleX(0.4); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::before { transform: scaleX(0.6); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 16px !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13.5px;
  transition: all var(--transition);
}
.nav-cta::before { display: none !important; }
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(255,90,31,.55);
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.8px;
  transition: all var(--transition);
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}
.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.9);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  padding: 28px 24px 40px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--orange);
}
.mobile-nav .mobile-cta {
  margin-top: 20px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius-pill);
  border-bottom: none !important;
  padding: 16px;
  font-size: 17px;
}

.page-content { padding-top: var(--header-height); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.22s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 0.22s var(--ease-out); }
.btn:hover svg.arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 16px -4px rgba(255,90,31,.45);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-dark));
  opacity: 0;
  transition: opacity 0.22s var(--ease-out);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(255,90,31,.55);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: #1A1C22;
  border-color: #1A1C22;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-100);
}
.btn-outline-dark:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: transparent;
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--orange); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.7;
  animation: blobFloat 18s ease-in-out infinite;
}
.hero-blob.b1 {
  top: -120px;
  right: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,90,31,0.45), rgba(255,90,31,0) 70%);
}
.hero-blob.b2 {
  bottom: -160px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(20,184,166,0.22), rgba(20,184,166,0) 70%);
  animation-delay: -6s;
}
.hero-blob.b3 {
  top: 40%;
  left: 40%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245,184,46,0.18), rgba(245,184,46,0) 70%);
  animation-delay: -12s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 40px) scale(0.96); }
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,90,31,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,90,31,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,90,31,0.04); }
}

.hero h1 {
  font-size: clamp(54px, 8.5vw, 112px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero h1 .word {
  display: inline-block;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange-bright) 0%, var(--orange) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--orange);
  opacity: 0.85;
  z-index: -1;
  border-radius: 2px;
}

/* Rotating words */
.hero-rotator {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  min-width: 4ch;
  height: 1em;
  overflow: hidden;
}
.hero-rotator span {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--orange-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-rotator span.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-rotator span.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { color: var(--orange-bright); }
.hero-meta .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.h-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  color: var(--white);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  transition: transform 600ms var(--ease-out);
}
.h-card-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
}
.h-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 10px;
}
.h-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.h-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.h-card.c1 {
  top: 8%;
  left: 0;
  width: 76%;
  transform: rotate(-4deg);
  z-index: 3;
  background: linear-gradient(135deg, rgba(255,90,31,0.18), rgba(255,90,31,0.05));
  border-color: rgba(255,90,31,0.3);
}
.h-card.c2 {
  top: 30%;
  right: 0;
  width: 70%;
  transform: rotate(5deg);
  z-index: 2;
}
.h-card.c3 {
  bottom: 5%;
  left: 8%;
  width: 80%;
  transform: rotate(-2deg);
  z-index: 1;
  background: rgba(255,255,255,0.04);
}
.hero-card-stack:hover .c1 { transform: rotate(-3deg) translateY(-6px); }
.hero-card-stack:hover .c2 { transform: rotate(6deg) translateY(-4px); }
.hero-card-stack:hover .c3 { transform: rotate(-1deg) translateY(-2px); }

.hero-stat-floating {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.hero-stat-floating .num { font-size: 22px; font-weight: 800; color: var(--orange); }
.hero-stat-floating .lbl { font-size: 11.5px; font-weight: 600; line-height: 1.25; color: var(--slate-500); }
.hero-stat-floating.s1 { bottom: -10px; right: -10px; animation-delay: -1s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: var(--font-display);
  z-index: 3;
}
.hero-scroll-bar {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* Marquee removed — ticker/scrolling band intentionally deleted */

/* ============= STATS BAND ============= */
.stats-band {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  border-left: 2px solid var(--paper-line);
  padding: 4px 0 4px 24px;
  transition: border-color var(--transition);
}
.stat:hover { border-color: var(--orange); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suffix { color: var(--orange); font-size: 0.7em; }
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.5;
  max-width: 220px;
}

/* ============= WHY / FEATURES ============= */
.why-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,90,31,0.16), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.why-section .section-title { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.feature {
  background: var(--ink-card);
  padding: 38px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature:hover {
  background: var(--ink-elev);
  border-color: rgba(255,90,31,0.25);
  transform: translateY(-4px);
}
.feature:hover::before { transform: scaleX(1); }
.feature-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-num::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 22px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(255,90,31,0.3));
}
.feature h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Special big feature */
.feature.feature-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--ink-elev) 0%, var(--ink-card) 100%);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 44px 44px;
}
.feature.feature-wide .feature-body { flex: 1; }
.feature.feature-wide .feature-visual {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.feature.feature-wide .feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.2), transparent 50%);
}

/* ============= HOW IT WORKS — STEPS ============= */
.steps-section {
  background: var(--paper-warm);
  position: relative;
}
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
  box-shadow: 0 8px 18px -6px rgba(255,90,31,.3);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ============= PROJECT CARDS ============= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,90,31,0.25);
}
.project-card-header {
  background: linear-gradient(135deg, var(--ink) 0%, #1A1C24 100%);
  padding: 30px 26px 24px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.project-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,90,31,0.25), transparent 50%);
  pointer-events: none;
}
.project-card-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.project-card:hover .project-card-header::after { opacity: 1; }
.project-flag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.project-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-family: var(--font-display);
  width: fit-content;
  box-shadow: 0 4px 12px -2px rgba(255,90,31,.5);
}
.project-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.project-card-body {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.project-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--slate-500); font-weight: 500;
}
.project-meta-item svg { color: var(--orange); flex-shrink: 0; }
.project-description {
  font-size: 14.5px; color: var(--slate-500);
  line-height: 1.7; flex: 1;
}
.project-card-footer { padding: 0 26px 24px; display: flex; gap: 10px; }

.project-card.coming-soon {
  background: transparent;
  border: 2px dashed var(--paper-line);
  text-align: center;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  min-height: 280px;
}
.project-card.coming-soon .ic { font-size: 38px; margin-bottom: 14px; }
.project-card.coming-soon h3 { font-size: 18px; font-weight: 700; color: var(--slate-700); margin-bottom: 8px; }
.project-card.coming-soon p { font-size: 14px; color: var(--slate-500); margin-bottom: 18px; }
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--slate-500);
  border: 1px dashed var(--slate-300);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

.teaser-link-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--paper-line);
}
.teaser-link-row p { color: var(--slate-500); font-size: 14px; }

/* ============= ABOUT TEASER ============= */
.about-teaser {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.about-teaser-text p { font-size: 17px; color: var(--slate-500); line-height: 1.75; margin-bottom: 28px; }
.about-visual {
  background: var(--ink); border-radius: var(--radius-xl);
  padding: 44px 38px; border: 1px solid var(--ink-line);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 240px; height: 240px;
  background: rgba(255,90,31,0.18); border-radius: 50%; filter: blur(60px);
}
.about-visual::after {
  content: ''; position: absolute;
  bottom: -40px; left: -40px; width: 180px; height: 180px;
  background: rgba(20,184,166,0.12); border-radius: 50%; filter: blur(50px);
}
.org-stat { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); position: relative; z-index: 1; }
.org-stat:last-child { border-bottom: none; padding-bottom: 0; }
.org-stat:first-child { padding-top: 0; }
.org-stat-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange-bright); margin-bottom: 6px;
}
.org-stat-value {
  font-size: 18px; font-weight: 600; color: var(--white);
  font-family: var(--font-display); letter-spacing: -0.02em;
}

/* ============= COUNTRIES ============= */
.countries-section { background: var(--white); padding: 100px 0; }
.countries-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 16px; margin-top: 32px;
}
.country-pill {
  background: var(--paper-warm); border: 1px solid var(--paper-line);
  border-radius: var(--radius); padding: 16px 12px;
  text-align: center; transition: all var(--transition); cursor: default;
}
.country-pill:hover {
  background: var(--white); border-color: var(--orange);
  transform: translateY(-3px); box-shadow: var(--shadow);
}
.country-pill .flag { font-size: 28px; display: block; margin-bottom: 6px; line-height: 1; }
.country-pill .name {
  font-size: 11.5px; font-weight: 600;
  color: var(--slate-700); letter-spacing: 0.2px;
}

/* ============= QUOTE ============= */
.quote-section { background: var(--paper); position: relative; }
.quote { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark {
  font-family: var(--font-serif); font-size: 140px; font-style: italic;
  line-height: 0.5; color: var(--orange); margin-bottom: 28px; display: block;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600; line-height: 1.35;
  letter-spacing: -0.025em; color: var(--slate-900); margin-bottom: 36px;
}
.quote blockquote em {
  font-family: var(--font-serif); font-weight: 400; font-style: italic; color: var(--orange);
}
.quote-author { display: inline-flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--white); font-size: 18px;
}
.quote-author-info { text-align: left; }
.quote-name { font-weight: 700; color: var(--slate-900); }
.quote-role { font-size: 13px; color: var(--slate-500); }

/* ============= FAQ ============= */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 64px; align-items: start;
}
.faq-aside .section-title { font-size: clamp(28px, 3.4vw, 40px); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-bottom: 1px solid var(--paper-line); padding: 4px 0; }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; text-align: left;
  font-family: var(--font-display);
  font-size: 17.5px; font-weight: 700; color: var(--slate-900);
  cursor: pointer; letter-spacing: -0.02em; transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-q .ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition); color: var(--slate-700);
  font-size: 20px; font-weight: 400;
}
.faq-item.open .faq-q .ic { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease-out); }
.faq-a-inner { overflow: hidden; font-size: 15.5px; color: var(--slate-500); line-height: 1.7; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a-inner { padding: 0 0 26px 0; }
.faq-a-inner p + p { margin-top: 10px; }

/* ============= CTA ============= */
.cta-section {
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden; padding: 110px 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,90,31,0.18), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(20,184,166,0.10), transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.cta-section .section-title {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 22px;
}
.cta-section .section-lead {
  color: rgba(255,255,255,0.65);
  font-size: 18px; margin: 0 auto 40px;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============= PAGE HERO ============= */
.page-hero {
  background: var(--ink); color: var(--white);
  padding: 110px 0 78px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.6), transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute;
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,90,31,0.22), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--orange-bright);
  margin-bottom: 16px;
}
.page-hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--orange-bright); border-radius: 2px;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800; letter-spacing: -0.045em;
  color: var(--white); margin-bottom: 18px; line-height: 1;
}
.page-hero h1 .serif {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--orange-bright);
}
.page-hero p {
  font-size: 19px; color: rgba(255,255,255,0.65);
  max-width: 620px; line-height: 1.6;
}

.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--orange-bright); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }

/* ============= APPLY PROCESS ============= */
.apply-hero {
  background: var(--ink); color: var(--white);
  padding: 130px 0 90px; position: relative; overflow: hidden;
}
.apply-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(255,90,31,0.22), transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(20,184,166,0.14), transparent 55%);
}
.apply-hero .container { position: relative; z-index: 1; }
.apply-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800; letter-spacing: -0.045em;
  line-height: 1; color: var(--white);
  margin-bottom: 22px; max-width: 14ch;
}
.apply-hero h1 .serif {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--orange-bright);
}

.process-timeline { background: var(--paper); padding: var(--section-py) 0; }
.process-list {
  display: grid; gap: 16px; position: relative;
  max-width: var(--max-narrow); margin: 0 auto;
}
.process-step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 28px; background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  position: relative; transition: all var(--transition);
}
.process-step:hover {
  border-color: rgba(255,90,31,0.3);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800;
  letter-spacing: -0.05em; line-height: 0.9;
  background: linear-gradient(140deg, var(--orange-bright), var(--orange-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-step-num::before {
  content: ''; display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.6px; color: var(--slate-500);
  margin-bottom: 6px; text-transform: uppercase;
  -webkit-text-fill-color: var(--slate-500);
}
.process-step-1 .process-step-num::before { content: 'Krok 01'; }
.process-step-2 .process-step-num::before { content: 'Krok 02'; }
.process-step-3 .process-step-num::before { content: 'Krok 03'; }
.process-step-4 .process-step-num::before { content: 'Krok 04'; }
.process-step-5 .process-step-num::before { content: 'Krok 05'; }
.process-step-6 .process-step-num::before { content: 'Krok 06'; }

.process-step-content h3 {
  font-size: 22px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.process-step-content p {
  font-size: 15.5px; color: var(--slate-500);
  line-height: 1.7; margin-bottom: 14px;
}
.process-step-content p:last-child { margin-bottom: 0; }
.process-step-content a { color: var(--orange); font-weight: 600; }
.process-step-content a:hover { text-decoration: underline; }
.process-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--orange);
  background: var(--orange-tint);
  padding: 5px 12px; border-radius: var(--radius-pill);
  margin-top: 4px;
}
.process-list-checks { margin-top: 12px; display: grid; gap: 6px; }
.process-list-checks li {
  font-size: 14.5px; color: var(--slate-700);
  display: flex; gap: 10px; align-items: flex-start;
}
.process-list-checks li::before {
  content: '✓'; color: var(--orange);
  font-weight: 800; margin-top: -1px;
}

/* ============= PROJECT DETAIL ============= */
.project-detail-card {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-xl);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow);
}
.project-detail-header {
  background: linear-gradient(135deg, var(--ink) 0%, #1A1C24 100%);
  padding: 48px 44px; position: relative; overflow: hidden;
}
.project-detail-header::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,90,31,0.22), transparent 65%);
  filter: blur(60px);
}
.project-detail-meta {
  display: flex; align-items: flex-start; gap: 22px;
  position: relative; z-index: 1;
}
.project-detail-meta h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; margin-top: 12px; line-height: 1.1;
}
.project-detail-body {
  display: grid; grid-template-columns: 1fr 360px; gap: 0;
}
.project-detail-content {
  padding: 50px 48px;
  border-right: 1px solid var(--paper-line);
}
.project-detail-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--slate-900); margin: 38px 0 16px;
  display: flex; align-items: center; gap: 12px;
  letter-spacing: -0.02em;
}
.project-detail-content h3::before {
  content: ''; width: 6px; height: 22px;
  background: var(--orange); border-radius: 3px;
}
.project-detail-content h3:first-child { margin-top: 0; }
.project-detail-content p {
  font-size: 16px; color: var(--slate-500);
  line-height: 1.75; margin-bottom: 14px;
}
.project-list { display: grid; gap: 10px; margin-bottom: 18px; }
.project-list li {
  font-size: 15px; color: var(--slate-700);
  padding-left: 26px; position: relative; line-height: 1.6;
}
.project-list li::before {
  content: ''; position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.project-links { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }

.project-detail-apply { padding: 50px 36px; background: var(--paper-warm); }
.apply-box { position: sticky; top: calc(var(--header-height) + 24px); }
.apply-box h3 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px;
  color: var(--slate-900);
}
.apply-box > p {
  font-size: 14.5px; color: var(--slate-500);
  margin-bottom: 22px; line-height: 1.6;
}
.apply-info {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 6px 16px; margin-bottom: 18px;
}
.apply-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--paper-line);
  font-size: 14px;
}
.apply-info-row:last-child { border-bottom: none; }
.apply-info-label { font-weight: 600; color: var(--slate-500); }
.apply-info-row span:last-child { color: var(--slate-900); font-weight: 600; }
.apply-note {
  margin-top: 14px; font-size: 12.5px;
  color: var(--slate-500); line-height: 1.55; text-align: center;
}
.apply-note a { color: var(--orange); font-weight: 600; }
.apply-note a:hover { text-decoration: underline; }

.empty-state {
  margin-top: 72px; text-align: center;
  padding: 60px 32px;
  border: 2px dashed var(--paper-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.empty-state .ic { font-size: 44px; margin-bottom: 18px; }
.empty-state h3 {
  font-size: 22px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.empty-state p {
  color: var(--slate-500); font-size: 15px;
  max-width: 460px; margin: 0 auto 22px; line-height: 1.6;
}

/* ============= ABOUT PAGE ============= */
.about-content {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 64px; align-items: start;
}
.about-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--slate-900); margin: 44px 0 16px; line-height: 1.15;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  font-size: 16.5px; color: var(--slate-500);
  line-height: 1.78; margin-bottom: 16px;
}
.about-body strong { color: var(--slate-900); font-weight: 700; }
.about-body em { color: var(--orange); font-style: italic; }

.about-sidebar { display: flex; flex-direction: column; gap: 16px; }
.info-box {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.info-box h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange); margin-bottom: 16px;
}
.info-box ul { display: grid; gap: 12px; }
.info-box li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--slate-700); font-weight: 500;
}
.info-box li a { color: var(--slate-700); transition: color var(--transition); }
.info-box li a:hover { color: var(--orange); }

/* ============= VALUE TILES ============= */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.value-tile {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.value-tile:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-tile-ic {
  width: 44px; height: 44px;
  background: var(--orange-tint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.value-tile h3 {
  font-size: 18px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 8px;
}
.value-tile p {
  font-size: 14.5px; color: var(--slate-500);
  line-height: 1.65;
}

/* ============= PARTNERS ============= */
.partner-info-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 64px; align-items: start;
}
.partner-info-text h2 { margin-bottom: 18px; }
.partner-info-text p {
  font-size: 16.5px; color: var(--slate-500);
  line-height: 1.78; margin-bottom: 18px;
}
.partner-info-text strong { color: var(--slate-900); font-weight: 700; }
.partner-info-text h3 {
  font-size: 18px; font-weight: 700;
  color: var(--slate-900);
  margin: 36px 0 16px; letter-spacing: -0.02em;
}

.tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600;
  background: var(--paper-warm); color: var(--slate-700);
  padding: 7px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--paper-line);
  transition: all var(--transition);
}
.tag:hover {
  background: var(--white); border-color: var(--orange);
  color: var(--orange); transform: translateY(-1px);
}
.tag.tag-orange {
  background: var(--orange-tint);
  border-color: rgba(255,90,31,0.25);
  color: var(--orange);
}

.contact-box {
  background: var(--ink); color: var(--white);
  padding: 32px 30px; border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  position: relative; overflow: hidden;
}
.contact-box::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,90,31,0.18), transparent 65%);
  filter: blur(40px);
}
.contact-box > * { position: relative; z-index: 1; }
.contact-box h3 {
  font-size: 22px; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.contact-box p {
  font-size: 14.5px; color: rgba(255,255,255,0.68);
  line-height: 1.65; margin-bottom: 22px;
}
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 14.5px; font-weight: 500;
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 14px; }
.contact-item svg { color: var(--orange-bright); flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.contact-item a:hover { color: var(--orange-bright); }

.org-info-list { list-style: none; padding: 0; display: grid; gap: 0; }
.org-info-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.72);
}
.org-info-list li:last-child { border-bottom: none; }
.org-info-list li span:last-child { color: var(--white); font-weight: 600; }

/* ============= COMING SOON PAGE ============= */
.coming-soon-page {
  min-height: calc(100vh - var(--header-height));
  display: flex; align-items: center;
  background: var(--ink); color: var(--white);
  position: relative; overflow: hidden; padding: 80px 0;
}
.coming-soon-page::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,90,31,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(20,184,166,0.10), transparent 55%);
}
.coming-soon-inner {
  text-align: center; max-width: 660px;
  margin: 0 auto; position: relative; z-index: 1;
}
.coming-soon-icon {
  font-size: 64px; margin-bottom: 26px;
  display: inline-block; animation: floatY 4s ease-in-out infinite;
}
.coming-soon-page h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800; letter-spacing: -0.045em;
  color: var(--white); line-height: 1.05;
  margin: 14px 0 18px;
}
.coming-soon-page h1 .serif {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--orange-bright);
}
.coming-soon-page p {
  font-size: 17.5px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 560px; margin: 0 auto 32px;
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,90,31,0.08), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-cta {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
  padding-bottom: 56px; margin-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-cta h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.035em; line-height: 1.05;
}
.footer-cta h2 .serif {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--orange-bright);
}
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer-brand .logo-text span { color: var(--orange); }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange-bright); margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 14px; transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: var(--orange-bright); }

.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange); border-color: var(--orange);
  color: var(--white); transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-slogan { font-style: italic; }

/* ============= HELPERS ============= */
.text-center { text-align: center; }
.divider-dot {
  width: 4px; height: 4px;
  background: currentColor; border-radius: 50%;
  opacity: 0.5; flex-shrink: 0;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; max-width: 520px; margin: 0 auto; }
  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .partner-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-detail-body { grid-template-columns: 1fr; }
  .project-detail-content { border-right: none; border-bottom: 1px solid var(--paper-line); padding: 36px 32px; }
  .project-detail-apply { padding: 36px 32px; }
  .apply-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-cta-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .countries-grid { grid-template-columns: repeat(6, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .steps-list::before { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gutter: 22px; }
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-visual { height: 360px; }
  .h-card-title { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature.feature-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .feature.feature-wide .feature-visual { width: 100%; height: 100px; font-size: 44px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .project-detail-content, .project-detail-apply { padding: 28px 24px; }
  .project-detail-header { padding: 32px 24px; }
  .process-step { grid-template-columns: 1fr; padding: 26px 24px; }
  .process-step-num { font-size: 38px; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: clamp(40px, 14vw, 56px); }
  .btn { padding: 12px 20px; font-size: 13.5px; }
  .btn-lg { padding: 16px 26px; font-size: 15px; }
}
