/* ============================================================
   DIETITIAN TEMPLATE — Ana Tema Styles
   Tema: Adaçayı Yeşili / Zeytin Yeşili / Krem / Mint
   Başlık: Playfair Display | Gövde: Manrope
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --bg: #FFFDF9;
  --surface: #FFFFFF;
  --surface-soft: #F5DFCF;
  --primary: #CD8D62;
  --primary-dark: #A96D46;
  --accent: #B85A38;
  --accent-dark: #8F3F25;
  --sage: #2D4A36;
  --sage-soft: #DDE8DE;
  --text: #26140A;
  --muted: #7A6252;
  --line: rgba(38, 20, 10, 0.14);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --container-padding: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(38, 20, 10, 0.06);
  --shadow-md: 0 8px 24px rgba(38, 20, 10, 0.08);
  --shadow-lg: 0 16px 48px rgba(38, 20, 10, 0.1);
  --navbar-height: 72px;
}

/* ------------------------------------------------------------
   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.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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;
}

/* ------------------------------------------------------------
   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-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(127, 166, 106, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------
   SECTION
   ------------------------------------------------------------ */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section__description {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 246, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  height: var(--navbar-height);
  transition: var(--transition);
}

.navbar--scrolled {
  background: rgba(247, 246, 239, 0.97);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.navbar__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.navbar__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}

.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__menu {
  display: flex;
  gap: 4px;
}

.navbar__link {
  display: block;
  padding: 8px 16px;
  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(--accent-dark);
  background: var(--surface-soft);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__cta {
  font-size: 14px;
  padding: 10px 20px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ------------------------------------------------------------
   BOTTOM SHEET MENU (mobil)
   ------------------------------------------------------------ */
.bottom-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(38, 49, 40, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-sheet-overlay--open {
  opacity: 1;
}

.bottom-sheet {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(38, 49, 40, 0.15);
}

.bottom-sheet--open {
  transform: translateY(0);
}

.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.bottom-sheet__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.bottom-sheet__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--muted);
  border-radius: 50%;
  transition: var(--transition);
  background: var(--bg);
}

.bottom-sheet__close:hover {
  background: var(--mint);
  color: var(--text);
}

.bottom-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bottom-sheet__link {
  display: block;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
}

.bottom-sheet__link:hover,
.bottom-sheet__link:focus-visible {
  background: var(--surface-soft);
  color: var(--accent-dark);
}

.bottom-sheet__cta {
  padding-top: 8px;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: calc(var(--navbar-height) + 48px) 0 64px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--surface-soft);
  border-radius: 100px;
}

/* Hero Visual Card */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--line);
}

.hero__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero__avatar svg {
  border-radius: 50%;
  background: var(--surface-soft);
}

.hero__profile-info {
  display: flex;
  flex-direction: column;
}

.hero__profile-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}

.hero__profile-label {
  font-size: 13px;
  color: var(--muted);
}

.hero__card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--surface-soft);
}

.hero__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ------------------------------------------------------------
   TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
  padding: 48px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
}

.trust-card:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--mint);
  margin-bottom: 16px;
}

.trust-card__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------ */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__content p:last-child {
  margin-bottom: 0;
}

.about__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--surface-soft), var(--mint));
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.about__image-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--surface-soft);
  border-radius: var(--radius-xs);
}

.highlight-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   SERVICES
   ------------------------------------------------------------ */
.services {
  background: var(--surface);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--mint);
  margin-bottom: 18px;
  font-size: 22px;
}

.service-card__title {
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------
   THEMES (Çalışma Alanları)
   ------------------------------------------------------------ */
.themes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.theme-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.theme-item:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
}

.theme-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  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: 32px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 16px;
}

.process-card__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.process-card__description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   ETHICS (Yaklaşım)
   ------------------------------------------------------------ */
.ethics__box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--line);
}

.ethics__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ethics__description {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ethics__notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 24px;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--muted);
  text-align: left;
  max-width: 680px;
  line-height: 1.6;
}

.ethics__notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  background: var(--surface);
}

.cta__box {
  background: linear-gradient(135deg, var(--surface-soft), var(--mint));
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta__description {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}

.faq-item__question:hover {
  color: var(--accent-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 18px;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */
.contact {
  background: var(--surface);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--mint);
  flex-shrink: 0;
}

.contact-card__content {
  flex: 1;
  min-width: 0;
}

.contact-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

.contact-card__action {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--surface-soft);
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.contact-card__action:hover {
  background: var(--accent);
  color: #fff;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  padding: 48px 0 32px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
}

.footer__inner {
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__copyright {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer__notice {
  font-size: 12px;
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   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 -4px 20px rgba(38, 49, 40, 0.08);
}

.sticky-bar--hidden {
  display: none !important;
}

.sticky-bar__inner {
  display: flex;
  gap: 10px;
}

.sticky-bar__btn {
  flex: 1;
  font-size: 14px;
  padding: 12px 16px;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   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;
  }
}

/* ------------------------------------------------------------
   FOCUS VISIBLE
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   RESPONSIVE TABLET (≤1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__grid {
    gap: 32px;
  }
  .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);
  }
}

/* ------------------------------------------------------------
   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: 32px;
  }
  .about__visual {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about__image-placeholder {
    width: 100%;
    max-width: 400px;
  }
  .section__title {
    font-size: 30px;
  }
  .ethics__title {
    font-size: 28px;
  }
  .cta__title {
    font-size: 28px;
  }
  .cta__box {
    padding: 40px 24px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE MOBIL (≤768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --navbar-height: 64px;
  }
  .section {
    padding: 56px 0;
  }
  .section__header {
    margin-bottom: 32px;
  }
  .section__title {
    font-size: 26px;
  }
  .section__description {
    font-size: 15px;
  }

  /* Navbar */
  .navbar__nav {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }
  .bottom-sheet,
  .bottom-sheet-overlay {
    display: block;
  }
  .sticky-bar {
    display: block;
  }

  /* Hero */
  .hero {
    padding: calc(var(--navbar-height) + 32px) 0 48px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__description {
    font-size: 16px;
  }
  .hero__card {
    padding: 24px;
  }
  .hero__stats {
    flex-direction: column;
    gap: 10px;
  }

  /* 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;
  }

  /* Ethics */
  .ethics__box {
    padding: 32px 20px;
  }
  .ethics__title {
    font-size: 24px;
  }
  .ethics__notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CTA */
  .cta__box {
    padding: 32px 20px;
  }
  .cta__title {
    font-size: 24px;
  }
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__actions .btn {
    width: 100%;
  }

  /* FAQ */
  .faq-item__question {
    font-size: 15px;
    padding: 16px 18px;
  }
  .faq-item__answer-inner {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  /* Contact */
  .contact__grid {
    gap: 10px;
  }

  /* Footer */
  .footer {
    padding: 32px 0 80px;
  }
  .footer__links {
    gap: 16px;
  }
}

/* ------------------------------------------------------------
   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;
  }
}

/* ------------------------------------------------------------
   HIDDEN UTILITY (JS tarafından kullanılır)
   ------------------------------------------------------------ */
.hidden-section {
  display: none !important;
}

/* ------------------------------------------------------------
   PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .navbar,
  .sticky-bar,
  .bottom-sheet,
  .bottom-sheet-overlay {
    display: none !important;
  }
}