/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a2e38;
  background: #fff;
  line-height: 1.65;
}

/* ─── Design Tokens ─── */
:root {
  --teal:       #205868;
  --teal-dark:  #163d4d;
  --teal-mid:   #2d7a94;
  --teal-light: #e8f4f8;
  --accent:     #4BACC6;
  --gold:       #c9973a;
  --gray-light: #f6f8fa;
  --gray:       #6b7280;
  --white:      #ffffff;
  --text:       #1a2e38;
  --section-pad: 96px 0;
}

/* ─── Utility ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 48px;
}
hr.divider {
  border: none;
  border-top: 3px solid var(--accent);
  width: 56px;
  margin: 20px 0 32px;
}

/* ═══════════════════════════
   1. HERO
═══════════════════════════ */
#hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-mid) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
#hero::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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
}
.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Decorative circles */
#hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  right: -100px; bottom: -200px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(6px);
}
.hero-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ═══════════════════════════
   2. APPROACH
═══════════════════════════ */
#approach {
  padding: var(--section-pad);
  background: var(--white);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-text h2 { margin-bottom: 0; }
.approach-text .body-block {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.approach-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approach-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.approach-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.approach-item-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.approach-item-text p {
  font-size: 14px;
  color: var(--gray);
}

/* ═══════════════════════════
   3. MULTI-ROLE
═══════════════════════════ */
#roles {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.roles-header { text-align: center; margin-bottom: 56px; }
.roles-header .section-lead { margin: 0 auto; }
.roles-intro {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 36px 48px;
  margin-bottom: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.roles-intro-badge {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.roles-intro-text p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }
.roles-intro-text strong { color: #fff; font-weight: 700; }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.role-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(32,88,104,0.07);
  border-top: 4px solid var(--accent);
  transition: transform .2s, box-shadow .2s;
}
.role-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(32,88,104,0.13); }
.role-card .icon { font-size: 32px; margin-bottom: 12px; }
.role-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.role-card p { font-size: 13px; color: var(--gray); }
.roles-warning {
  background: #fff3cd;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 16px 24px;
  font-size: 15px;
  color: #6b5100;
}
.roles-warning + .roles-warning {
  margin-top: 10px;
  background: var(--teal-light);
  border-left-color: var(--teal);
  color: var(--teal-dark);
}

/* ═══════════════════════════
   4. INTEGRATED MANAGEMENT
═══════════════════════════ */
#integrated {
  padding: var(--section-pad);
  background: var(--teal-dark);
  color: #fff;
}
.integrated-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.integrated-text .section-title { color: #fff; }
.integrated-text .section-lead { color: rgba(255,255,255,0.72); }
.integrated-text blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-top: 24px;
}

/* ── Circular flow diagram — tamamen SVG, her ekranda otomatik ölçeklenir ── */
.flow-diagram {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.flow-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* ═══════════════════════════
   5. WHY C-HEALTH
═══════════════════════════ */
#why {
  padding: var(--section-pad);
  background: #fff;
}
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-lead { margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  border: 1px solid #e5edf0;
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}
.why-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(32,88,104,0.1); }
.why-card .num {
  font-size: 42px;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════
   6. IMPLEMENTATION PHASES
═══════════════════════════ */
#phases {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.phases-header { text-align: center; margin-bottom: 56px; }
.phases-header .section-lead { margin: 0 auto; }
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.phases-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--accent);
  z-index: 0;
}
.phase {
  background: #fff;
  border-radius: 20px;
  margin: 0 10px;
  padding: 0 0 32px;
  box-shadow: 0 2px 16px rgba(32,88,104,0.07);
  position: relative;
}
.phase-header {
  border-radius: 20px 20px 0 0;
  padding: 28px 28px 20px;
  position: relative;
}
.phase:nth-child(1) .phase-header { background: var(--teal-light); }
.phase:nth-child(2) .phase-header { background: var(--teal); }
.phase:nth-child(3) .phase-header { background: var(--teal-dark); }
.phase-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.phase-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phase:nth-child(1) .phase-badge { color: var(--teal); }
.phase:nth-child(2) .phase-badge { color: rgba(255,255,255,0.7); }
.phase:nth-child(3) .phase-badge { color: rgba(255,255,255,0.7); }
.phase-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.phase:nth-child(1) .phase-title { color: var(--teal-dark); }
.phase:nth-child(2) .phase-title,
.phase:nth-child(3) .phase-title { color: #fff; }
.phase-duration {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 6px;
}
.phase:nth-child(1) .phase-duration { background: var(--teal); color: #fff; }
.phase:nth-child(2) .phase-duration { background: rgba(255,255,255,0.2); color: #fff; }
.phase:nth-child(3) .phase-duration { background: rgba(255,255,255,0.2); color: #fff; }
.phase-body { padding: 24px 28px 0; }
.phase-section { margin-bottom: 20px; }
.phase-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8f0f3;
}
.phase-items { list-style: none; }
.phase-items li {
  font-size: 13px;
  color: #3a4f59;
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.phase-items li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════
   7. CORPORATE IMPACT
═══════════════════════════ */
#impact {
  padding: var(--section-pad);
  background: #fff;
}
.impact-header { text-align: center; margin-bottom: 56px; }
.impact-header .section-lead { margin: 0 auto; }
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.impact-card {
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.impact-card:nth-child(1) { background: var(--teal); color: #fff; }
.impact-card:nth-child(2) { background: var(--teal-dark); color: #fff; }
.impact-card:nth-child(3) { background: var(--teal-light); }
.impact-card:nth-child(4) { background: #e8f5e9; }
.impact-card::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  bottom: -40px; right: -40px;
}
.impact-card-icon { font-size: 28px; margin-bottom: 14px; }
.impact-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.impact-card:nth-child(1) h3,
.impact-card:nth-child(2) h3 { color: #fff; }
.impact-card:nth-child(3) h3 { color: var(--teal-dark); }
.impact-card:nth-child(4) h3 { color: #1b5e20; }
.impact-list { list-style: none; }
.impact-list li {
  font-size: 14px;
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.impact-card:nth-child(3) .impact-list li,
.impact-card:nth-child(4) .impact-list li { border-bottom-color: rgba(0,0,0,0.06); }
.impact-list li:last-child { border-bottom: none; }
.impact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.impact-card:nth-child(1) .impact-list li { color: rgba(255,255,255,0.85); }
.impact-card:nth-child(1) .impact-list li::before { color: var(--accent); }
.impact-card:nth-child(2) .impact-list li { color: rgba(255,255,255,0.85); }
.impact-card:nth-child(2) .impact-list li::before { color: var(--accent); }
.impact-card:nth-child(3) .impact-list li { color: var(--teal-dark); }
.impact-card:nth-child(3) .impact-list li::before { color: var(--teal); }
.impact-card:nth-child(4) .impact-list li { color: #2d5a30; }
.impact-card:nth-child(4) .impact-list li::before { color: #388e3c; }
.impact-footer {
  margin-top: 40px;
  background: var(--teal);
  border-radius: 16px;
  padding: 28px 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.impact-footer span { color: var(--accent); }

/* ═══════════════════════════
   8. TEAM
═══════════════════════════ */
#team {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.team-header { text-align: center; margin-bottom: 56px; }
.team-header .section-lead { margin: 0 auto; }

/* Grouped team layout */
.team-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}
.team-bottom-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(32,88,104,0.04);
  border-radius: 16px;
  border: 1.5px solid rgba(32,88,104,0.12);
  overflow: hidden;
}
.team-bottom-group .tg-label {
  border-radius: 0;
}
.team-bottom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}
.team-bottom-cards .team-card {
  border-radius: 14px;
}
.team-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(32,88,104,0.04);
  border-radius: 16px;
  border: 1.5px solid rgba(32,88,104,0.12);
  overflow: hidden;
}
.team-group .tg-label {
  border-radius: 0;
  margin-bottom: 0;
}
.team-group .team-card {
  margin: 12px 12px 0 12px;
  border-radius: 14px;
}
.team-group .team-card:last-child {
  margin-bottom: 12px;
}
.tg-label {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(32,88,104,0.07);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(32,88,104,0.12); }
.team-card-top {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 28px 24px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  min-width: 64px;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.team-role { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.team-card-body { padding: 20px 24px 24px; }
.team-bio { font-size: 13px; color: #4a5568; line-height: 1.7; margin-bottom: 16px; }
.team-exp {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 8px 14px;
  border-radius: 8px;
}
.team-exp span { font-weight: 400; color: var(--gray); }

/* ═══════════════════════════
   FOOTER CTA
═══════════════════════════ */
#cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  text-align: center;
  color: #fff;
}
#cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
#cta p { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn:hover { background: #3a9db8; transform: translateY(-2px); }

/* ─── Navbar ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 61, 77, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  transition: background .3s;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.navbar-brand {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 12px;
}
.navbar-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.navbar-cta:hover { background: #3a9db8; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
#footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-credit a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover {
  color: var(--accent);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .integrated-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .phases-grid { grid-template-columns: 1fr; }
  .phases-grid::before { display: none; }
  .phase { margin: 0 0 16px; }
  .team-top-row { grid-template-columns: 1fr; }
  .team-bottom-cards { grid-template-columns: 1fr 1fr; }

  /* Flow diagram: SVG tabanlı, ek override gerekmez */
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  :root { --section-pad: 64px 0; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-bottom-cards { grid-template-columns: 1fr; }
  .roles-intro { flex-direction: column; gap: 20px; }

  /* ── Hero mobil düzeltmeleri ── */
  #hero {
    align-items: flex-start;
    padding-top: 96px;
    padding-bottom: 90px; /* Keşfet butonu için boşluk */
    min-height: 100svh;
  }
  .hero-inner { gap: 28px; }
  .hero-text h1 { font-size: clamp(28px, 9vw, 40px); margin-bottom: 16px; }
  .hero-text p  { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
  .hero-pill    { padding: 8px 16px; font-size: 13px; }
  /* Kartları mobilde gizle — içerik fazla uzuyor */
  .hero-right   { display: none; }
  /* Keşfet butonu her zaman görünür kalsın */
  .scroll-indicator { bottom: 20px; }
}
