/* ============================================
   Psikogenetik & Longevity — Sıcak & Güven
   Editöryal, sakin, profesyonel klinik tasarımı
   ============================================ */

:root {
  /* Sıcak krem, sage vurgu */
  --color-bg: #faf8f5;
  --color-bg-soft: #f5f2ed;
  --color-surface: #ffffff;
  --color-border: rgba(44, 42, 38, 0.08);
  --color-border-strong: #e8e4de;
  --color-text: #2c2a26;
  --color-text-muted: #6b6560;
  --color-accent: #287f7f;
  --color-accent-light: #e8f2f2;
  --color-accent-warm: #b85c38;
  --color-primary: #287f7f;
  --color-whatsapp: #25d366;
  --color-white: #ffffff;
  --gradient-hero: linear-gradient(160deg, #faf8f5 0%, #f0ebe3 50%, #e8f2f2 100%);
  --gradient-accent: linear-gradient(135deg, #287f7f 0%, #2a9089 100%);
  --shadow-soft: 0 2px 20px rgba(44, 42, 38, 0.06);
  --shadow-card: 0 4px 28px rgba(44, 42, 38, 0.08);
  --shadow-glow: 0 0 0 1px rgba(40, 127, 127, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 920px;
}

.nav__active {
  color: var(--color-accent);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-strong);
  box-shadow: 0 1px 0 rgba(44, 42, 38, 0.04);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-ctas .btn {
  white-space: nowrap;
  border-radius: var(--radius-xl);
  padding: 0.65rem 1.25rem;
  font-weight: 600;
}

.header-ctas .btn-primary {
  color: #fff;
}

.header-ctas .btn-whatsapp {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgba(40, 127, 127, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-accent-light);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-block {
  width: 100%;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 6rem 0 3rem;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container--wide {
  max-width: 1440px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

.hero-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Hero görsel alanı */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 16px 40px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
  text-decoration: none;
  display: block;
  aspect-ratio: 4 / 5;
}

.hero-img-wrap:hover {
  transform: scale(1.02);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-img-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  padding-right: 2rem;
  max-width: 100%;
  z-index: 1;
}

.hero-img-main {
  border: 1px solid var(--color-border-strong);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-img-secondary {
  border: 1px solid var(--color-border-strong);
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-actions .btn {
  margin: 0;
}

.hero-actions__btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-actions__btn.btn-primary {
  color: #fff;
}

.hero-actions__btn.btn-whatsapp {
  color: #fff;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 1.5rem 2rem;
  width: 100%;
  z-index: 1;
  position: relative;
}

.hero-pillar {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.hero-pillar:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ========== Sections ========== */
.section {
  padding: 5rem 0;
  border-top: 1px solid var(--color-border-strong);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-title--large {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Problem — iki sütun: başlık sol (3 satır), metinler sağ */
.problem {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.problem .container {
  position: relative;
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: left;
}

.problem-title__line {
  display: block;
}

.problem-title__line--accent {
  color: var(--color-primary);
}

.problem-title__line--accent em {
  font-style: italic;
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-text {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0;
  text-align: left;
  line-height: 1.65;
}

.problem-text strong {
  color: var(--color-primary);
}

.problem-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  width: 100%;
  transition: box-shadow var(--transition);
}

.problem-highlight:hover {
  box-shadow: var(--shadow-card);
}

.highlight-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.problem-highlight p {
  color: var(--color-text);
  font-size: 1.05rem;
}

/* Comparison table */
/* Bölüm arka plan görselleri */
.section--with-bg {
  position: relative;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}

.section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--with-bg .container,
.section--with-bg .container--wide {
  position: relative;
  z-index: 1;
}

/* Tam genişlik görsel şerit */
.img-strip {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-strip--sm {
  height: 220px;
}

.comparison .container.container--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison {
  background: var(--color-bg);
}

.comparison-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-table {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
  width: 100%;
  max-width: 900px;
  transition: box-shadow var(--transition);
}

.comparison-table:hover {
  box-shadow: var(--shadow-card);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border-strong);
  transition: background-color var(--transition);
}

.comparison-row:not(.comparison-header):hover {
  background: var(--color-accent-light);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header .col-method {
  font-weight: 600;
  color: var(--color-text);
  padding: 1.75rem 2rem;
  font-size: 1.25rem;
}

.col-method {
  padding: 1.75rem 2rem;
  color: var(--color-text-muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

.col-method.accent {
  background: var(--color-accent-light);
  color: var(--color-text);
  border-left: 1px solid rgba(40, 127, 127, 0.25);
}

.comparison-header .col-method.accent {
  color: var(--color-primary);
  font-size: 1.25rem;
}

/* Services */
.services {
  background: var(--color-bg-soft);
}

.services .container.container--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.25rem;
  width: 100%;
  max-width: 1200px;
}

.service-card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
  display: block;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 3rem;
  height: 3rem;
  transition: transform var(--transition);
}

.service-card:hover .service-icon svg {
  transform: scale(1.08);
}

.service-num {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

/* Experts */
.experts {
  background: var(--color-bg);
}

.experts-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.experts .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expert-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border-strong);
  max-width: 1100px;
  width: 100%;
  transition: transform var(--transition);
}

.expert-card:hover {
  transform: translateX(4px);
}

.expert-card:last-child {
  border-bottom: none;
}

.expert-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.expert-card:hover .expert-image-wrap {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expert-content {
  padding-top: 0.5rem;
}

.expert-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.expert-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.expert-bio {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expert-bio em {
  color: var(--color-text);
  font-style: italic;
}

.expert-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Definition — göze çarpan blok */
.section.definition {
  padding: 0;
  border-top: none;
}

.definition-inner {
  position: relative;
  background: linear-gradient(180deg, var(--color-accent-light) 0%, rgba(232, 242, 242, 0.5) 100%);
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.definition-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.14;
}

.definition-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.definition-inner::before {
  display: none;
}

.definition-inner .container {
  position: relative;
  z-index: 1;
}

.definition-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.definition-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.definition-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 auto 1.75rem;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 4px solid var(--color-primary);
  max-width: 720px;
  text-align: center;
}

.definition-text {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.definition-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.definition-cta {
  margin-top: 1.5rem;
  margin-bottom: 0;
  justify-content: center;
}

/* Psikogenetik sayfası — ek bölümler */
.psiko-benefits-section {
  background: var(--color-bg-soft);
}

.psiko-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.psiko-benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}

.psiko-benefit-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.psiko-benefit-icon {
  color: var(--color-primary);
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.psiko-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.psiko-benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.psiko-steps-section {
  background: var(--color-bg);
}

.psiko-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.psiko-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.psiko-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.psiko-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.psiko-step p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.psiko-cta-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--color-accent-light) 0%, rgba(232, 242, 242, 0.6) 100%);
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.psiko-cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(40, 127, 127, 0.1);
}

.psiko-cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.psiko-cta-box__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.psiko-cta-box__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.psiko-cta-box__buttons .btn-primary {
  color: #fff;
}

.psiko-cta-box__buttons .btn-whatsapp {
  color: #fff;
}

@media (max-width: 900px) {
  .psiko-benefits {
    grid-template-columns: 1fr;
  }

  .psiko-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Contact */
.contact {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--transition), transform var(--transition);
}

.contact-link:hover {
  color: var(--color-accent-warm);
  transform: translateX(2px);
}

.contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-address__icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-link:hover {
  color: var(--color-accent-warm);
}

.contact-link.whatsapp {
  color: var(--color-whatsapp);
}

.contact-link.whatsapp:hover {
  color: #1da851;
}

/* İletişim: Telefon ve WhatsApp buton olarak */
.contact-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-buttons .contact-link--btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-link--btn {
  color: var(--color-white) !important;
  text-decoration: none;
}

.contact-link--btn .contact-link__icon {
  color: var(--color-white);
}

.contact-link--btn:hover {
  color: var(--color-white) !important;
  transform: none;
}

.contact-link--btn:hover .contact-link__icon {
  color: var(--color-white);
}

.btn-primary.contact-link--btn:hover {
  color: var(--color-white) !important;
}

.btn-whatsapp.contact-link--btn:hover {
  color: var(--color-white) !important;
}

.contact-address {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.contact-form .required {
  color: var(--color-primary);
}

.contact-form .optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.85em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== İç sayfa hero (2026) ========== */
.page {
  padding-top: 4.5rem;
}

.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--color-bg-soft);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

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

.page-hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.page-hero__title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1rem auto 0;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.page-hero__lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 0;
  text-align: center;
}

/* Hakkımızda hero — ekip önizleme */
.page-hero--about .page-hero__lead {
  margin-bottom: 2.5rem;
}

.page-hero__team-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
}

.page-hero__team-sep {
  color: var(--color-border-strong);
  font-weight: 300;
  font-size: 1.25rem;
}

.page-hero__avatar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.page-hero__avatar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(40, 127, 127, 0.35);
}

.page-hero__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.page-hero__avatar span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Diğer iç sayfalarda label gizle (opsiyonel) */
.page-hero:not(.page-hero--about) .page-hero__label {
  display: none;
}

/* ========== Hakkımızda sayfası ========== */

.about-intro {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.about-intro__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

.about-team .section-title,
.about-team .section-intro {
  text-align: center;
}

.about-team .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.about-bio {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border-strong);
}

.about-bio:last-of-type {
  border-bottom: none;
}

.about-bio__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
}

.about-bio__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-bio__role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.about-bio__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.about-bio__text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-bio__text p {
  margin-bottom: 1rem;
}

.about-bio__text p:last-child {
  margin-bottom: 0;
}

.about-bio__text em {
  color: var(--color-text);
  font-style: italic;
}

.about-bio__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-cta {
  background: var(--color-bg-soft);
}

.page-cta.section--with-bg .container {
  position: relative;
  z-index: 1;
}

.page-cta .section-title,
.page-cta .section-intro {
  text-align: center;
}

.page-cta .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.page-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Terapi Hizmetleri sayfası */
.terapi-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.terapi-card {
  padding: 2rem 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.terapi-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.terapi-card__intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.terapi-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.terapi-card__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.terapi-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.terapi-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .terapi-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Çalışma Alanlarımız sayfası */
.areas-intro--with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.areas-intro--with-img .areas-intro__img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.areas-intro--with-img .areas-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.areas-intro--with-img .container {
  padding: 3rem 3rem 3rem 2rem;
}

.areas-intro .about-intro__text {
  text-align: center;
}

.area-list .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.area-block {
  max-width: 1200px;
  width: 100%;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border-strong);
}

.area-block--with-img {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.area-block__img {
  grid-row: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-soft);
  aspect-ratio: 7/4.6;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 7rem;
}

.area-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-block:last-of-type {
  border-bottom: none;
}

.area-block__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.area-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.area-block__icon svg {
  width: 3rem;
  height: 3rem;
}

.area-block__num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.area-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.area-block__content {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.area-block__content p {
  margin-bottom: 1rem;
}

.area-block__content p:last-child {
  margin-bottom: 0;
}

.area-block__content strong {
  color: var(--color-text);
}

.area-block__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* İletişim sayfası */
.contact-page {
  background: var(--color-bg);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* İletişim sayfası: Hemen arayın / WhatsApp butonları eşit ve yan yana */
.contact-page .contact-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.contact-page .contact-buttons .contact-link--btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-page__subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.contact-form__lead {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.contact-page__map-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-page__map-link:hover {
  color: var(--color-primary);
}

.contact-page__map {
  margin-top: 3rem;
}

.contact-page__map-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-page__map-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.contact-page__map-icon {
  display: inline-flex;
  color: var(--color-primary);
}

.contact-page__map-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-page__map-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.footer__top {
  padding: 3rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

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

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.footer__nav-title,
.footer__contact .footer__nav-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer__contact-buttons .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer__contact-buttons .btn-primary {
  color: #fff;
}

.footer__contact-buttons .btn-whatsapp {
  color: #fff;
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.75rem 0 0;
  max-width: 240px;
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border-strong);
  background: var(--color-bg-soft);
}

.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer__legal {
  margin: 0;
}

.footer__legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer__copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ========== Sabit sağ alt butonlar ========== */
.fixed-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.fixed-cta .fixed-cta__btn {
  pointer-events: auto;
}

.fixed-cta__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.fixed-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.fixed-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fixed-cta__call {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.fixed-cta__whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.fixed-cta__whatsapp:hover {
  background: #20bd5a;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero {
    padding: 5rem 0 0.75rem;
    min-height: auto;
  }

  .hero .container--wide.hero-inner,
  .hero .container--wide.hero-pillars {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .hero-content {
    max-width: none;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-lead {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
  }

  .hero-actions__btn {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-visual {
    order: -1;
    min-height: 200px;
    width: 100%;
  }

  .hero-visual-inner {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    gap: 1rem;
  }

  .hero-pillars {
    padding: 1rem 0 1.5rem;
    gap: 0.6rem;
  }

  .hero-pillar {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero-scroll {
    bottom: 0.75rem;
  }

  .nav {
    display: none;
  }

  .header-ctas {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .expert-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expert-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__brand {
    max-width: none;
  }

  .footer__nav .footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1.5rem;
  }

  .footer__address {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .about-bio {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .about-bio__visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero__title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .page-hero__team-teaser {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .page-hero__team-sep {
    display: none;
  }

  .page-hero__avatar {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .areas-intro--with-img {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .areas-intro--with-img .areas-intro__img {
    height: 280px;
    order: -1;
  }

  .areas-intro--with-img .container {
    padding: 2rem 1rem;
  }

  .area-block--with-img {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .area-block__img {
    grid-row: auto;
    position: static;
    aspect-ratio: 16/10;
  }

  .area-block {
    padding: 2rem 0;
  }

  .area-block__header {
    flex-direction: column;
    align-items: flex-start;
  }


  .definition-inner {
    padding: 3rem 0 3.5rem;
  }

  .definition-quote {
    font-size: clamp(1.4rem, 4vw, 1.85rem);
  }

  /* Karşılaştırma tablosu mobilde yan yana kalsın, sığsın */
  .comparison-table {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .comparison-header .col-method {
    padding: 0.75rem 0.6rem;
    font-size: 0.9rem;
  }

  .col-method {
    padding: 0.7rem 0.6rem;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .comparison-header .col-method.accent {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 2rem;
  }
}

/* Mobil: sabit CTA ilk yüklemede gizli, kaydırma başlayınca görünsün */
@media (max-width: 900px) {
  .fixed-cta {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .fixed-cta.fixed-cta--visible {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 600px) {
  .fixed-cta {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .fixed-cta__btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero .container--wide.hero-inner,
  .hero .container--wide.hero-pillars {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-visual-inner {
    max-width: 100%;
    width: 100%;
    height: auto;
    gap: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-actions__btn {
    font-size: 0.8rem;
    padding: 0.65rem 0.5rem;
  }

  .hero-actions__btn .btn-icon {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding: 4.75rem 0 0.5rem;
  }

  .hero-content {
    gap: 0.85rem;
  }

  .hero-pillars {
    padding: 0.75rem 0 1.25rem;
  }

  .hero-pillar {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-header .col-method {
    padding: 0.5rem 0.4rem;
    font-size: 0.8rem;
  }

  .col-method {
    padding: 0.5rem 0.4rem;
    font-size: 0.75rem;
  }

  .comparison-header .col-method.accent {
    font-size: 0.8rem;
  }

  .section {
    padding: 3rem 0;
  }

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

/* Mobile nav (optional open state) */
.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
}
