/* ============================================================
   DIETITIAN TEMPLATE — Premium Tema
   Tema: Doğal Yeşil + Krem + Altın — Premium Sağlık Hissiyatı
   Başlık: Playfair Display | Gövde: Inter
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --primary: #2D5A27;
  --primary-light: #4A7C43;
  --primary-dark: #1B3D17;
  --accent: #D4A843;
  --accent-light: #E8CC6E;
  --accent-dark: #B8922E;
  --bg: #FAFBF7;
  --surface: #FFFFFF;
  --surface-soft: #F0F5ED;
  --text: #1A1D18;
  --muted: #5A6B52;
  --sage: #2D4A36;
  --sage-soft: #E8F0E4;
  --line: rgba(26, 29, 24, 0.1);
  --line-light: rgba(26, 29, 24, 0.06);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-padding: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(26, 29, 24, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 29, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 29, 24, 0.1);
  --shadow-xl: 0 32px 80px rgba(26, 29, 24, 0.12);
  --navbar-height: 76px;
}

/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   PRELOADER
   ------------------------------------------------------------ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader__leaf {
  font-size: 48px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.preloader__text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* ------------------------------------------------------------
   SCROLL PROGRESS BAR
   ------------------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10001;
  background: transparent;
}

.scroll-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  transition: width 0.1s linear;
}

/* ------------------------------------------------------------
   CONTAINER
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.01em;
}

.btn--lg {
  padding: 15px 32px;
  font-size: 16px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--sage-soft);
}

.btn--outline:hover {
  background-color: var(--sage-soft);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------
   SECTION
   ------------------------------------------------------------ */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--primary-light);
  opacity: 0.5;
}

.section__eyebrow::before { right: calc(100% - 8px); }
.section__eyebrow::after { left: calc(100% - 8px); }

.section__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section__title--left {
  text-align: left;
}

.section__description {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 247, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-light);
  height: var(--navbar-height);
  transition: var(--transition);
}

.navbar--scrolled {
  background: rgba(250, 251, 247, 0.96);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__icon {
  font-size: 26px;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar__name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.navbar__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
}

.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__menu {
  display: flex;
  gap: 2px;
}

.navbar__link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--primary);
  background: var(--sage-soft);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__cta {
  font-size: 14px;
  padding: 10px 20px;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--sage-soft);
  color: var(--primary);
  cursor: pointer;
  position: relative;
  z-index: 1201;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 10px;
  transition: background .3s ease, transform .3s ease;
}

.menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), opacity .2s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-overlay { display: none; }
.nav-menu { display: none; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: calc(var(--navbar-height) + 60px) 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sage-soft) 0%, var(--bg) 60%);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -200px;
  right: -150px;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent), transparent);
  bottom: 100px;
  left: -80px;
}
.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: 50%;
  left: 40%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--sage-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero__description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--sage-soft);
  border-radius: 100px;
  transition: var(--transition);
}

.hero__tag:hover {
  border-color: var(--primary-light);
  background: var(--sage-soft);
}

/* Hero Card */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}

.hero__card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.08), transparent 70%);
  pointer-events: none;
}

.hero__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.hero__avatar svg {
  border-radius: 50%;
  background: var(--sage-soft);
}

.hero__profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__profile-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.hero__profile-label {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.hero__profile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.hero__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero__rating-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero__card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.hero__card-bullet {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--sage-soft);
}

.hero__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* Hero Wave */
.hero__wave {
  color: var(--bg);
  margin-top: -2px;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------
   ACHIEVEMENTS
   ------------------------------------------------------------ */
.achievements {
  padding: 48px 0;
  background: var(--bg);
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}

.achievement-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.achievement-card__number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.achievement-card__suffix {
  font-size: 28px;
}

.achievement-card__label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ------------------------------------------------------------
   TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
  background: var(--surface);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-light);
  transition: var(--transition);
  text-align: center;
}

.trust-card:hover {
  background: var(--surface);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--sage-soft);
  margin: 0 auto 18px;
  color: var(--primary);
  transition: var(--transition);
}

.trust-card:hover .trust-card__icon {
  background: var(--primary);
  color: #fff;
}

.trust-card__title {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}

.trust-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------ */
.about {
  background: var(--surface);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-placeholder {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--sage-soft), var(--bg));
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--line-light);
}

.about__image-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.about__badge-icon {
  font-size: 16px;
}

.about__content-wrapper .section__eyebrow {
  margin-bottom: 10px;
}

.about__content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__content p:last-child {
  margin-bottom: 24px;
}

.about__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--sage-soft);
  border-radius: var(--radius-xs);
  border: 1px solid var(--line-light);
}

.highlight-badge::before {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------
   SERVICES
   ------------------------------------------------------------ */
.services {
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 26px;
  transition: var(--transition);
  color: var(--primary);
  background: var(--sage-soft);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.service-card__title {
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   THEMES
   ------------------------------------------------------------ */
.themes {
  background: var(--bg);
}

.themes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.theme-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-light);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.theme-item:hover {
  border-color: var(--primary-light);
  background: var(--sage-soft);
  transform: translateX(6px);
}

.theme-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   PROCESS
   ------------------------------------------------------------ */
.process {
  background: var(--surface);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line-light);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.process-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

.process-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.process-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------ */
.testimonials {
  background: var(--bg);
}

.testimonials__slider {
  max-width: 720px;
  margin: 0 auto;
  min-height: 200px;
  position: relative;
}

.testimonial-card {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-md);
  transition: opacity 0.4s ease;
}

.testimonial-card__rating {
  margin-bottom: 16px;
}

.testimonial-card__star {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card__text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

.testimonials__arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonials__dot--active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ------------------------------------------------------------
   BLOG
   ------------------------------------------------------------ */
.blog {
  background: var(--surface);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--sage-soft), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.blog-card__content {
  padding: 24px;
}

.blog-card__category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--sage-soft);
  border-radius: 4px;
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-card__summary {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card__date {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ------------------------------------------------------------
   ETHICS
   ------------------------------------------------------------ */
.ethics__box {
  background: linear-gradient(145deg, var(--surface), var(--sage-soft));
  border-radius: var(--radius);
  padding: 60px 48px;
  text-align: center;
  border: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}

.ethics__icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.ethics__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.3;
}

.ethics__description {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.ethics__notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 28px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--muted);
  text-align: left;
  max-width: 680px;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.ethics__notice svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  background: var(--bg);
}

.cta__box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__decoration {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 28px;
  opacity: 0.8;
}

.cta__decoration span {
  animation: float 3s ease-in-out infinite;
}

.cta__decoration span:nth-child(2) { animation-delay: 0.5s; }
.cta__decoration span:nth-child(3) { animation-delay: 1s; }
.cta__decoration span:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta__description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq {
  background: var(--surface);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line-light);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--sage-soft);
}

.faq-item--open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  color: var(--primary);
  font-size: 20px;
  font-weight: 300;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--primary-dark);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */
.contact {
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 740px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-light);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary-light);
  background: var(--sage-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card__content {
  flex: 1;
  min-width: 0;
}

.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.contact-card__action {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--sage-soft);
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.contact-card__action:hover {
  background: var(--primary);
  color: #fff;
}

.contact__hours {
  max-width: 740px;
  margin: 28px auto 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  border: 1px solid var(--line-light);
  display: none;
}

.contact__hours--visible {
  display: block;
}

.contact__hours-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact__hours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact__hours-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.contact__hours-day {
  font-weight: 600;
  min-width: 100px;
}

.contact__hours-time {
  color: var(--primary);
  font-weight: 500;
}

/* ------------------------------------------------------------
   ASSESSMENT
   ------------------------------------------------------------ */
.assessment {
  background: var(--surface);
}

.assessment__form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
}

.assessment__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.assessment__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.assessment__field--full {
  margin-bottom: 20px;
}

.assessment__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.assessment__input {
  padding: 13px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--line-light);
  border-radius: var(--radius-xs);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.assessment__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.08);
}

.assessment__input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.assessment__textarea {
  resize: vertical;
  min-height: 90px;
}

.assessment__submit {
  padding: 15px 28px;
  font-size: 16px;
  gap: 10px;
}

select.assessment__input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A6B52' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  padding: 56px 0 36px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.footer__brand-icon {
  font-size: 28px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.footer__brand-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  font-weight: 500;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer__copyright {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer__notice {
  font-size: 12px;
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* WebKekTech Credit */
.webkektech-credit {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
}

.brand-web { color: #F4A261; }
.brand-kek { color: #E76F51; }
.brand-tech { color: #2A9D8F; }

/* ------------------------------------------------------------
   STICKY BAR (mobil)
   ------------------------------------------------------------ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 32px rgba(26, 29, 24, 0.08);
}

.sticky-bar--hidden {
  display: none !important;
}

.sticky-bar__inner {
  display: flex;
  gap: 10px;
}

.sticky-bar__btn {
  flex: 1;
  font-size: 14px;
  padding: 13px 16px;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child reveals */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .preloader { display: none !important; }
}

/* ------------------------------------------------------------
   FOCUS VISIBLE
   ------------------------------------------------------------ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   HIDDEN UTILITY
   ------------------------------------------------------------ */
.hidden-section {
  display: none !important;
}

/* ------------------------------------------------------------
   RESPONSIVE TABLET (≤1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 42px;
  }
  .hero__grid {
    gap: 40px;
  }
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog__grid .blog-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }
  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__title {
    font-size: 36px;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE TABLET-DAR (≤900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__tags {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__card {
    max-width: 100%;
  }
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__visual {
    order: -1;
  }
  .about__image-placeholder {
    width: 220px;
    height: 220px;
  }
  .section__title {
    font-size: 32px;
  }
  .section__title--left {
    text-align: center;
  }
  .section__eyebrow {
    text-align: center;
  }
  .ethics__title {
    font-size: 28px;
  }
  .cta__title {
    font-size: 30px;
  }
  .cta__box {
    padding: 44px 28px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .blog__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .blog__grid .blog-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE MOBIL (≤768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --navbar-height: 64px;
  }
  .section {
    padding: 64px 0;
  }
  .section__header {
    margin-bottom: 36px;
  }
  .section__title {
    font-size: 28px;
  }
  .section__description {
    font-size: 15px;
  }

  /* Navbar */
  .navbar__nav {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }

  /* Mobile Menu */
  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1199;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100dvh;
    padding: 0;
    gap: 0;
    background: var(--surface);
    border-left: 1px solid var(--line-light);
    box-shadow: -24px 0 80px rgba(0,0,0,0.12);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    overflow-y: auto;
  }
  .nav-menu.active {
    transform: translateX(0);
  }

  /* Mobile Menu – Brand */
  .nav-menu__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 28px;
    margin-bottom: 8px;
  }

  .nav-menu__brand-icon {
    font-size: 28px;
  }

  .nav-menu__brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
  }

  /* Mobile Menu – Links */
  .nav-menu__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--line-light);
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .4s ease, transform .4s ease, background .2s ease, color .2s ease, padding-left .2s ease;
  }

  .nav-menu.active .nav-menu__link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu__link:hover,
  .nav-menu__link:active {
    background: var(--sage-soft);
    color: var(--primary);
    padding-left: 36px;
  }

  .nav-menu__dot {
    font-size: 8px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform .3s ease;
  }

  .nav-menu__link:hover .nav-menu__dot {
    transform: scale(1.6);
  }

  /* Staggered link animasyonu */
  .nav-menu.active .nav-menu__link:nth-child(2) { transition-delay: 0.06s; }
  .nav-menu.active .nav-menu__link:nth-child(3) { transition-delay: 0.12s; }
  .nav-menu.active .nav-menu__link:nth-child(4) { transition-delay: 0.18s; }
  .nav-menu.active .nav-menu__link:nth-child(5) { transition-delay: 0.24s; }
  .nav-menu.active .nav-menu__link:nth-child(6) { transition-delay: 0.30s; }
  .nav-menu.active .nav-menu__link:nth-child(7) { transition-delay: 0.36s; }
  .nav-menu.active .nav-menu__link:nth-child(8) { transition-delay: 0.42s; }

  /* Mobile Menu – CTA */
  .nav-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 28px 28px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xs);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 16px rgba(45, 90, 39, 0.25);
    transition: transform .3s ease, box-shadow .3s ease;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease .48s, transform .4s ease .48s, box-shadow .3s ease;
  }

  .nav-menu.active .nav-menu__cta {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu__cta:hover,
  .nav-menu__cta:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.35);
  }

  body.menu-open {
    overflow: hidden;
  }

  .sticky-bar {
    display: block;
  }

  /* Hero */
  .hero {
    padding: calc(var(--navbar-height) + 32px) 0 0;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__description {
    font-size: 16px;
  }
  .hero__card {
    padding: 24px;
  }
  .hero__stats {
    flex-direction: column;
    gap: 10px;
  }

  /* Achievements */
  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .achievement-card__number {
    font-size: 32px;
  }

  /* Trust */
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Themes */
  .themes__list {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 28px 20px;
  }
  .testimonial-card__text {
    font-size: 15px;
  }

  /* Ethics */
  .ethics__box {
    padding: 40px 20px;
  }
  .ethics__title {
    font-size: 24px;
  }
  .ethics__notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CTA */
  .cta__box {
    padding: 40px 20px;
  }
  .cta__title {
    font-size: 26px;
  }
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__actions .btn {
    width: 100%;
  }

  /* FAQ */
  .faq-item__question {
    font-size: 15px;
    padding: 18px 20px;
  }
  .faq-item__answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  /* Contact */
  .contact__grid {
    gap: 10px;
  }

  /* Assessment */
  .assessment__fields {
    grid-template-columns: 1fr;
  }
  .assessment__form {
    padding: 24px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 88px;
  }
  .footer__links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .section__eyebrow::before,
  .section__eyebrow::after {
    display: none;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }
  .menu-overlay { display: none; }
}

/* ------------------------------------------------------------
   RESPONSIVE KÜÇÜK MOBİL (≤414px)
   ------------------------------------------------------------ */
@media (max-width: 414px) {
  .hero__title {
    font-size: 28px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .section__title {
    font-size: 24px;
  }
  .ethics__title {
    font-size: 22px;
  }
  .cta__title {
    font-size: 22px;
  }
  .achievements__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .achievement-card {
    padding: 20px 12px;
  }
  .achievement-card__number {
    font-size: 26px;
  }
}

/* ------------------------------------------------------------
   PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .navbar,
  .sticky-bar,
  .nav-menu,
  .menu-overlay,
  .scroll-progress,
  .preloader {
    display: none !important;
  }
}

/* Özgün yön: psikolog demosundan ayrılan editoryal beslenme vitrini */
@media (min-width: 901px) {
  .hero { background: linear-gradient(115deg,#183626 0 44%,#f4f0dc 44%); color:#fff; }
  .hero__grid { grid-template-columns:.78fr 1.22fr; gap:70px; }
  .hero__content { padding:58px 0; }
  .hero__title { font-family:Georgia,serif; font-size:clamp(3.7rem,5.8vw,6.6rem); line-height:.9; color:#fff; }
  .hero__highlight { color:#d8ef79; }
  .hero__description { color:#d9e3dc; }
  .hero__tag { color:#fff; border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.08); }
  .hero__visual { transform:rotate(1.5deg); }
  .hero__card { border-radius:4px; box-shadow:18px 18px 0 #d8ef79; }
}

/* ============================================================
   BESLENME EDİTORYALİ — psikolog şablonundan bağımsız akış
   ============================================================ */
body.diet-editorial {
  --primary: #173c2a;
  --primary-light: #346b4c;
  --primary-dark: #0d281b;
  --accent: #ff6f4f;
  --accent-light: #ffb29f;
  --bg: #f4f0df;
  --surface-soft: #dce7a5;
  --sage-soft: #e3ead5;
  --text: #13271b;
  --muted: #536257;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.diet-editorial .hero { order: 1; }
.diet-editorial .nutrition-index { order: 2; }
.diet-editorial .achievements { order: 3; }
.diet-editorial .services { order: 4; }
.diet-editorial .assessment { order: 5; }
.diet-editorial .process { order: 6; }
.diet-editorial .about { order: 7; }
.diet-editorial .trust-bar { order: 8; }
.diet-editorial .themes { order: 9; }
.diet-editorial .testimonials { order: 10; }
.diet-editorial .ethics { order: 11; }
.diet-editorial .blog { order: 12; }
.diet-editorial .faq { order: 13; }
.diet-editorial .contact { order: 14; }
.diet-editorial .cta { order: 15; }
.diet-editorial footer { order: 50; }

.diet-editorial .navbar {
  background: rgba(244,240,223,.9);
  border-bottom: 2px solid var(--text);
}

.diet-editorial .navbar__icon,
.diet-editorial .preloader__leaf { filter: none; }

.nutrition-board {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 600px;
  background: #fff9ed;
  border: 2px solid var(--text);
  box-shadow: 16px 16px 0 var(--accent);
  transform: rotate(1.2deg);
}

.nutrition-board__photo { position: relative; min-width: 0; overflow: hidden; }
.nutrition-board__photo img { width: 100%; height: 100%; object-fit: cover; }
.nutrition-board__stamp {
  position: absolute; right: 20px; bottom: 20px; width: 112px; aspect-ratio: 1;
  border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--surface-soft); border: 2px solid var(--text);
  font: 800 15px/1.1 var(--font-body); text-transform: uppercase; transform: rotate(-8deg);
}

.nutrition-board__panel { padding: 44px 34px; display: flex; flex-direction: column; justify-content: center; color: var(--text); }
.nutrition-board__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--accent); }
.nutrition-board__panel h2 { font: 600 clamp(38px,4vw,62px)/.95 var(--font-heading); margin: 18px 0 32px; }
.nutrition-board__metrics { display: grid; gap: 0; border-top: 2px solid var(--text); }
.nutrition-board__metrics span { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(19,39,27,.3); font-weight: 700; }
.nutrition-board__metrics b { font: 600 28px var(--font-heading); color: var(--accent); }
.nutrition-board .hero__stats { margin-top: 24px; padding: 0; border: 0; display: grid; gap: 8px; }
.nutrition-board .hero__stat { border: 1px solid rgba(19,39,27,.22); padding: 10px; background: var(--bg); }

.nutrition-index { background: var(--text); color: #fff9ed; border-bottom: 2px solid var(--text); }
.nutrition-index__grid { display: grid; grid-template-columns: repeat(4,1fr); padding-top: 0; padding-bottom: 0; }
.nutrition-index__grid > div { padding: 27px 22px; border-right: 1px solid rgba(255,255,255,.2); display: grid; gap: 4px; }
.nutrition-index__grid > div:last-child { border-right: 0; }
.nutrition-index__grid span { color: var(--accent); font: 600 13px var(--font-heading); }
.nutrition-index__grid b { font: 600 22px var(--font-heading); }
.nutrition-index__grid small { color: #b7c2ba; }

.diet-editorial .achievements { padding: 0; background: var(--surface-soft); border-bottom: 2px solid var(--text); }
.diet-editorial .achievements__grid { gap: 0; }
.diet-editorial .achievement-card { border-radius: 0; border: 0; border-right: 2px solid var(--text); background: transparent; box-shadow: none; }
.diet-editorial .achievement-card:last-child { border-right: 0; }

.diet-editorial .section { padding: 112px 0; }
.diet-editorial .section__header { max-width: 960px; text-align: left; margin: 0 0 55px; }
.diet-editorial .section__eyebrow { padding: 0; color: var(--accent); }
.diet-editorial .section__eyebrow::before,
.diet-editorial .section__eyebrow::after { display: none; }
.diet-editorial .section__title { font-size: clamp(46px,6vw,84px); line-height: .98; max-width: 900px; }
.diet-editorial .section__description { margin: 0; max-width: 680px; }

.diet-editorial .services { background: #fff9ed; }
.diet-editorial .services__grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.diet-editorial .service-card { grid-column: span 4; min-height: 310px; border: 2px solid var(--text); border-radius: 4px; box-shadow: none; justify-content: flex-end; }
.diet-editorial .service-card:first-child,
.diet-editorial .service-card:last-child { grid-column: span 8; background: var(--surface-soft); }
.diet-editorial .service-card:nth-child(2) { background: var(--accent); }
.diet-editorial .service-card::before { display: none; }
.diet-editorial .service-card__icon { border-radius: 50%; border: 1px solid currentColor; }
.diet-editorial .service-card__title { font: 600 30px/1.05 var(--font-heading); }

.diet-editorial .assessment { background: var(--accent); border-block: 2px solid var(--text); }
.diet-editorial .assessment .container { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 64px; }
.diet-editorial .assessment .section__header { position: sticky; top: 110px; margin: 0; }
.diet-editorial .assessment__form { margin: 0; max-width: none; border: 2px solid var(--text); border-radius: 4px; box-shadow: 12px 12px 0 var(--text); background: #fff9ed; }

.diet-editorial .process { background: var(--text); color: #fff9ed; }
.diet-editorial .process .section__title { color: #fff9ed; }
.diet-editorial .process .section__description { color: #b7c2ba; }
.diet-editorial .process__grid { grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid rgba(255,255,255,.28); }
.diet-editorial .process-card { border: 0; border-right: 1px solid rgba(255,255,255,.28); border-radius: 0; background: transparent; color: #fff9ed; min-height: 330px; }
.diet-editorial .process-card:last-child { border-right: 0; }
.diet-editorial .process-card__step { width: auto; height: auto; justify-content: flex-start; background: transparent; color: var(--accent); font: 600 54px var(--font-heading); }
.diet-editorial .process-card__title { color: #fff9ed; font: 600 25px var(--font-heading); }
.diet-editorial .process-card__description { color: #b7c2ba; }

.diet-editorial .about { background: var(--surface-soft); }
.diet-editorial .about__grid { grid-template-columns: .7fr 1.3fr; gap: 80px; }
.diet-editorial .about__image-wrapper { border-radius: 50% 50% 4px 4px; border: 2px solid var(--text); box-shadow: -14px 14px 0 var(--accent); }
.diet-editorial .about__content p { font-size: 18px; }

.diet-editorial .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--text); }
.diet-editorial .trust-card { border: 0; border-radius: 0; border-right: 1px solid var(--text); border-bottom: 1px solid var(--text); box-shadow: none; }
.diet-editorial .themes { padding: 46px 0; overflow: hidden; background: #fff9ed; }
.diet-editorial .themes .section__header { margin-bottom: 28px; }
.diet-editorial .themes__list { display: flex; width: 100%; max-width: 100%; gap: 10px; overflow-x: auto; padding-bottom: 12px; }
.diet-editorial .theme-item { border: 2px solid var(--text); border-radius: 999px; background: var(--surface-soft); white-space: nowrap; }
.diet-editorial .themes .reveal { opacity: 1; transform: none; }

.diet-editorial .testimonials { background: var(--bg); }
.diet-editorial .testimonials__slider { max-width: 920px; margin: 0; }
.diet-editorial .testimonial-card { border: 0; border-left: 10px solid var(--accent); border-radius: 0; background: transparent; box-shadow: none; padding: 24px 0 24px 52px; }
.diet-editorial .testimonial-card__text { font: 500 clamp(28px,4vw,48px)/1.2 var(--font-heading); }
.diet-editorial .testimonials__controls { justify-content: flex-start; }

.diet-editorial .ethics__box,
.diet-editorial .cta__box { border-radius: 4px; border: 2px solid var(--text); box-shadow: 12px 12px 0 var(--surface-soft); }
.diet-editorial .contact__grid { grid-template-columns: 1fr 1fr; }
.diet-editorial .footer { background: var(--text); }

@media (max-width: 900px) {
  body.diet-editorial { display: flex; }
  .diet-editorial .hero { background: var(--bg); }
  .diet-editorial .hero__grid { grid-template-columns: 1fr; }
  .diet-editorial .hero__content { order: 1; }
  .diet-editorial .hero__visual { order: 2; }
  .nutrition-board { grid-template-columns: 1fr; min-height: auto; transform: none; box-shadow: 8px 8px 0 var(--accent); }
  .nutrition-board__photo { height: 360px; }
  .nutrition-index__grid { grid-template-columns: 1fr 1fr; }
  .nutrition-index__grid > div { border-bottom: 1px solid rgba(255,255,255,.2); }
  .diet-editorial .services__grid { grid-template-columns: 1fr; }
  .diet-editorial .service-card,
  .diet-editorial .service-card:first-child,
  .diet-editorial .service-card:last-child { grid-column: auto; min-height: 260px; }
  .diet-editorial .assessment .container { grid-template-columns: 1fr; gap: 38px; }
  .diet-editorial .assessment .section__header { position: static; }
  .diet-editorial .process__grid { grid-template-columns: 1fr 1fr; }
  .diet-editorial .process-card:nth-child(2) { border-right: 0; }
  .diet-editorial .about__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .diet-editorial .section { padding: 78px 0; }
  .diet-editorial .section__title { font-size: clamp(38px,12vw,54px); }
  .nutrition-board__photo { height: 290px; }
  .nutrition-board__panel { padding: 32px 22px; }
  .nutrition-index__grid,
  .diet-editorial .process__grid,
  .diet-editorial .trust-bar__grid,
  .diet-editorial .contact__grid { grid-template-columns: 1fr; }
  .nutrition-index__grid > div { border-right: 0; }
  .diet-editorial .achievement-card { border-right: 0; border-bottom: 1px solid var(--text); }
  .diet-editorial .assessment__form { box-shadow: 7px 7px 0 var(--text); }
  .diet-editorial .testimonial-card { padding-left: 24px; border-left-width: 6px; }
}
