/* Muhammed Yusuf Hoca — Plain CSS (cPanel ready, no SCSS build) */

:root {
  --primary: #0F3D2E;
  --primary-deep: #0A2B20;
  --secondary: #C8A15A;
  --secondary-soft: #D4B57A;
  --bg: #FAF8F4;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --muted: #5C5C5C;
  --border: rgba(15, 61, 46, 0.1);
  --shadow: 0 14px 40px rgba(15, 61, 46, 0.08);
  --shadow-soft: 0 8px 28px rgba(15, 61, 46, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 86px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 1200;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.gold { color: var(--secondary); }
.text-muted { color: var(--muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.75;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--text);
}

.section-lead {
  max-width: 38rem;
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.page-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.page-head .section-lead { margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Buttons — referans: yeşil dolu / altın outline / altın dolu CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
  vertical-align: middle;
}
.btn svg,
.brand__mark svg,
.footer-social svg,
.footer-contact svg,
.stat-item__icon svg,
.why-item svg,
.value-card__icon svg,
.service-card__icon svg,
.contact-panel__item svg,
.feature-pills svg,
.hero-home__trust svg {
  width: 1.15rem;
  height: 1.15rem;
  max-width: 40px;
  max-height: 40px;
  flex-shrink: 0;
}
.btn .icon-whatsapp,
.footer-social .icon-whatsapp,
.footer-contact .icon-whatsapp,
.contact-panel__item .icon-whatsapp {
  width: 1.3rem;
  height: 1.3rem;
}
.btn-primary .icon-whatsapp,
.btn-secondary .icon-whatsapp,
.btn-outline .icon-whatsapp {
  width: 1.35rem;
  height: 1.35rem;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.btn-primary {
  background: #0f3d2e;
  border-color: #0f3d2e;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.22);
}
.btn-primary:hover {
  background: #0a2b20;
  border-color: #0a2b20;
  color: #fff !important;
}

.btn-secondary {
  background: #c8a15a;
  border-color: #c8a15a;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(200, 161, 90, 0.3);
}
.btn-secondary:hover {
  background: #b8924a;
  border-color: #b8924a;
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  border-color: #c8a15a;
  color: #c8a15a !important;
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(200, 161, 90, 0.08);
  border-color: #c8a15a;
  color: #b8924a !important;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(200, 161, 90, 0.9);
  color: #c8a15a !important;
  box-shadow: none;
}
.btn-outline-light:hover {
  background: rgba(200, 161, 90, 0.1);
  border-color: #c8a15a;
  color: #c8a15a !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--secondary) !important;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
  width: auto;
  max-width: 100%;
  box-shadow: none;
  transform: none !important;
}
.btn-ghost svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex: 0 0 14px;
}
.btn-ghost:hover { color: #b8924a !important; gap: 0.55rem; }

.btn-sm {
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  font-size: 0.86rem;
}
.navbar-cta {
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 61, 46, 0.18);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.navbar-main {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}
.brand__logo--footer {
  height: 44px;
  max-width: 180px;
}
.brand--logo { gap: 0; }
.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  display: grid;
  place-items: center;
  color: var(--secondary);
  background: var(--white);
  flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.brand__tag {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding-bottom: 0.15rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--primary); }
.nav-links a.is-active::after,
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--primary);
  margin: 4px auto;
}

/* Hero Home — diagonal split like reference */
/* ========== Ana sayfa (referans birebir) ========== */
.home-hero {
  position: relative;
  height: clamp(580px, 74vh, 680px);
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
}
.home-hero__clip {
  position: absolute;
  width: 0;
  height: 0;
}
.home-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 820px);
  z-index: 0;
  pointer-events: none;
  clip-path: url(#home-hero-curve);
  -webkit-clip-path: url(#home-hero-curve);
}
.home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}
.home-hero__shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 820px);
  z-index: 1;
  pointer-events: none;
  clip-path: url(#home-hero-curve);
  -webkit-clip-path: url(#home-hero-curve);
  background: linear-gradient(102deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.1) 16%, transparent 34%);
  box-shadow: inset 24px 0 36px -18px rgba(15, 61, 46, 0.14);
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  padding: 2.75rem 0;
}
.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 30rem;
  width: 100%;
  padding-right: 1.5rem;
}
.home-hero__moon {
  color: var(--secondary);
  margin-bottom: 0.9rem;
  line-height: 0;
}
.home-hero__moon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
}
.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.9vw, 3.25rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.home-hero__title span {
  color: var(--secondary);
}
.home-hero__lead {
  color: #666;
  max-width: 28rem;
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.7;
}
.home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.45rem;
  margin: 0 0 1.55rem;
  padding: 0;
  list-style: none;
}
.home-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #444;
}
.home-hero__trust svg {
  width: 1.05rem !important;
  height: 1.05rem !important;
  color: var(--secondary);
}
.home-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}
.home-hero__actions .btn {
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.home-hero__actions .btn-primary {
  box-shadow: 0 10px 24px rgba(15, 61, 46, 0.2);
}
.home-hero__actions .btn-outline {
  background: transparent;
  border-width: 1.5px;
  border-color: #c8a15a;
  color: #c8a15a !important;
  box-shadow: none;
}

/* ========== Hikayeler sayfası ========== */
.stry-hero {
  position: relative;
  height: clamp(440px, 58vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f4ee;
}
.stry-hero__bg {
  position: absolute;
  inset: 0;
}
.stry-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
}
.stry-hero--blog .stry-hero__bg img {
  object-position: 58% 35%;
}
.stry-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(250, 248, 244, 0.98) 0%,
      rgba(250, 248, 244, 0.94) 28%,
      rgba(250, 248, 244, 0.55) 48%,
      rgba(250, 248, 244, 0.12) 68%,
      transparent 82%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 78%,
      rgba(250, 248, 244, 0.28) 90%,
      rgba(250, 248, 244, 0.75) 96%,
      #faf8f4 100%
    );
  pointer-events: none;
}
.stry-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #faf8f4);
}
.stry-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  max-width: 480px;
  margin-left: max(calc((100vw - var(--container)) / 2), 1.25rem);
  margin-right: auto;
  width: min(100% - 2.5rem, 480px);
}
.stry-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stry-hero__moon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  color: var(--secondary);
}
.stry-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.95rem;
}
.stry-hero__title span {
  color: var(--secondary);
}
.stry-hero__text {
  margin: 0;
  max-width: 26rem;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.7;
}
.stry-list {
  background: #faf8f4;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.stry-list__empty {
  text-align: center;
  color: #666;
  margin: 0;
}
.stry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.stry-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 61, 46, 0.1);
}
.stry-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.stry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.stry-card:hover .stry-card__media img {
  transform: scale(1.04);
}
.stry-card__body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.stry-card__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
.stry-card__text {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.stry-card__text--plain {
  font-style: normal;
}
.stry-card__meta {
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 600;
}
.stry-card__link {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.15rem;
}
.stry-card__link:hover {
  color: #b8924a;
}

.home-services {
  background: #faf8f4;
}
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}
.home-services .service-card--icon {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.05);
  padding: 1.75rem 1.1rem 1.4rem;
  text-align: center;
}
.home-services .service-card--icon .service-card__icon {
  margin: 0 auto 0.9rem;
  color: var(--secondary);
  background: none;
  width: auto;
  height: auto;
}
.home-services .service-card--icon .service-card__icon svg {
  width: 34px !important;
  height: 34px !important;
}
.home-services .service-card--icon .btn-ghost {
  justify-content: center;
  width: 100%;
}

.home-stories {
  background: #fff;
}
.home-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.home-story {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 61, 46, 0.1);
}
.home-story__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.home-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.home-story:hover .home-story__media img {
  transform: scale(1.04);
}
.home-story__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.home-story__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
}
.home-story__text {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.home-story__meta {
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 600;
}
.home-story__link {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.2rem;
}
.home-story__link:hover {
  color: #b8924a;
}
.home-stories__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}
.home-stories__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 61, 46, 0.18);
}
.home-stories__dots span.is-active {
  background: var(--secondary);
  width: 22px;
  border-radius: 999px;
}

.home-why {
  background: #faf8f4;
}
.home-why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.home-why__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border: 1.5px solid rgba(200, 161, 90, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--secondary);
}
.home-why__icon svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px;
  max-height: 26px;
}
.home-why__item h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: #1a1a1a;
}
.home-why__item p {
  margin: 0;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-home {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(86vh, 720px);
  background: var(--white);
  overflow: hidden;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 620px;
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  width: 100%;
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
}

.hero-home__lead {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
}

.hero-home__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0 0 1.85rem;
  padding: 0;
  list-style: none;
}
.hero-home__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
}
.hero-home__trust svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--secondary);
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-home__visual {
  position: relative;
  min-height: 420px;
}
.hero-home__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-home__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, #fff 0%, rgba(255,255,255,0.92) 12%, rgba(255,255,255,0.35) 34%, transparent 52%);
  pointer-events: none;
}

/* Page heroes */
.hero-page {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--primary-deep);
}
.hero-page__media { position: absolute; inset: 0; }
.hero-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-page__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,43,32,0.3), rgba(10,43,32,0.85));
}
.hero-page__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 720px);
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  padding: 5rem 0 3.4rem;
}
.hero-page__label {
  color: var(--secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 650;
  margin-bottom: 0.9rem;
  display: inline-block;
}
.hero-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  margin: 0 0 1rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}
.hero-page__lead {
  margin: 0;
  max-width: 36rem;
  color: rgba(255,255,255,0.84);
  font-size: 1.02rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  background: var(--bg);
}
.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}
.hero-split__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  margin: 0 0 1rem;
  line-height: 1.1;
  font-weight: 700;
}
.hero-split__lead { color: var(--muted); margin: 0; }
.hero-split__visual { min-height: 340px; }
.hero-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Hizmetlerimiz sayfası (referans birebir) ========== */
.svc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f4ee;
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
}
.svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.svc-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(250, 248, 244, 0.98) 0%,
    rgba(250, 248, 244, 0.94) 26%,
    rgba(250, 248, 244, 0.62) 44%,
    rgba(250, 248, 244, 0.18) 62%,
    transparent 78%
  );
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  max-width: 480px;
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  margin-right: auto;
  width: min(100% - 2.5rem, 480px);
}
.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.svc-hero__moon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  color: var(--secondary);
}
.svc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.15rem;
}
.svc-hero__title span {
  color: var(--secondary);
  display: inline-block;
}
.svc-hero__text {
  margin: 0;
  max-width: 26rem;
  color: #666;
  font-size: 1rem;
  line-height: 1.75;
}

.svc-list {
  padding: clamp(3.5rem, 6vw, 5rem) 0 1rem;
  background: #faf8f4;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.svc-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(15, 61, 46, 0.06);
  border: 1px solid rgba(15, 61, 46, 0.05);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 61, 46, 0.1);
}
.svc-card__copy {
  position: relative;
  z-index: 2;
  padding: 1.35rem 0.85rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  background: linear-gradient(90deg, #fff 55%, rgba(255, 255, 255, 0.92) 78%, rgba(255, 255, 255, 0));
}
.svc-card__icon {
  color: var(--secondary);
  line-height: 0;
  margin-bottom: 0.1rem;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
}
.svc-card__icon svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px;
  max-height: 26px;
  stroke-width: 1.45;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.25;
}
.svc-card__desc {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.svc-card__link:hover {
  color: #b8924a;
  gap: 0.45rem;
}
.svc-card__photo {
  position: relative;
  min-height: 100%;
  background: #e8e2d6;
}
.svc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.75) 22%, rgba(255, 255, 255, 0.2) 52%, transparent 72%);
  pointer-events: none;
}

.svc-stats {
  background: #faf8f4;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.svc-stats__panel {
  position: relative;
  background: #f3efe6;
  border: 1px solid rgba(15, 61, 46, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 61, 46, 0.05);
  overflow: hidden;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) clamp(1rem, 2.5vw, 1.5rem);
}
.svc-stats__panel::before,
.svc-stats__panel::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  pointer-events: none;
  opacity: 0.14;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C8A15A' stroke-width='1.2'%3E%3Ccircle cx='60' cy='60' r='46'/%3E%3Ccircle cx='60' cy='60' r='30'/%3E%3Cpath d='M60 14v92M14 60h92M28 28l64 64M92 28L28 92'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.svc-stats__panel::before {
  left: -24px;
  top: -28px;
}
.svc-stats__panel::after {
  right: -24px;
  bottom: -28px;
}
.svc-stats__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}
.svc-stats__item {
  position: relative;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.svc-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(28, 28, 28, 0.12);
}
.svc-stats__icon {
  color: var(--secondary);
  margin: 0;
  line-height: 0;
}
.svc-stats__icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
}
.svc-stats__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0;
}
.svc-stats__label {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .stry-hero {
    height: auto;
    display: block;
  }
  .stry-hero__bg {
    position: relative;
    height: 280px;
  }
  .stry-hero__veil {
    background: linear-gradient(180deg, transparent 45%, rgba(250, 248, 244, 0.4) 78%, #faf8f4 100%);
  }
  .stry-hero::after {
    height: 36px;
  }
  .stry-hero__inner {
    max-width: none;
    width: min(100% - 2.5rem, var(--container));
    margin: -2.5rem auto 0;
    padding: 0 0 2rem;
  }
  .stry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-hero {
    min-height: auto;
    display: block;
  }
  .svc-hero__bg {
    position: relative;
    height: 260px;
  }
  .svc-hero__veil {
    background: linear-gradient(180deg, transparent 10%, rgba(250, 248, 244, 0.75) 55%, #faf8f4 100%);
  }
  .svc-hero__inner {
    max-width: none;
    width: min(100% - 2.5rem, var(--container));
    margin: -3rem auto 0;
    padding: 0 0 2.5rem;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .svc-card__photo {
    order: -1;
    min-height: 150px;
    max-height: 170px;
  }
  .svc-card__photo::before {
    background: linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.95));
  }
  .svc-card__copy {
    background: #fff;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-stats__panel {
    padding: 2rem 0.75rem;
  }
  .svc-stats__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.75rem;
  }
  .svc-stats__item {
    padding: 0.35rem 1rem;
  }
  .svc-stats__item:nth-child(2n)::after {
    display: none;
  }
  .svc-stats__item:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -0.9rem;
    height: 1px;
    background: rgba(28, 28, 28, 0.1);
  }
}

/* Hakkımızda — referans: soft hero + bio + stats + values */
.abt-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 680px);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.abt-hero__media {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
}
.abt-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.abt-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      var(--bg) 36%,
      rgba(250, 248, 244, 0.94) 46%,
      rgba(250, 248, 244, 0.55) 58%,
      rgba(250, 248, 244, 0.12) 72%,
      transparent 84%
    );
}
.abt-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 560px);
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}
.abt-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  color: #8a8a8a;
}
.abt-hero__crumb a {
  color: #8a8a8a;
}
.abt-hero__crumb a:hover {
  color: var(--primary);
}
.abt-hero__crumb span:last-child {
  color: var(--text);
  font-weight: 600;
}
.abt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.abt-hero__line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--secondary);
}
.abt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 3.55rem);
  line-height: 1.12;
  margin: 0 0 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.abt-hero__title span {
  color: var(--secondary);
}
.abt-hero__lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.abt-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 38rem;
}
.abt-hero__feature {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.abt-hero__icon {
  color: var(--secondary);
  margin-bottom: 0.2rem;
  line-height: 0;
}
.abt-hero__icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
}
.abt-hero__feature strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.abt-hero__feature span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.abt-bio {
  background: var(--white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.abt-bio__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
.abt-bio__media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  background: #e8e2d6;
  max-width: 480px;
}
.abt-bio__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abt-bio__content {
  position: relative;
  z-index: 1;
}
.abt-bio__pattern {
  position: absolute;
  right: -8%;
  top: -12%;
  width: 280px;
  height: 280px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23C8A15A' stroke-width='1'%3E%3Cpath d='M100 10l20 35 40 6-29 28 7 40-38-20-38 20 7-40-29-28 40-6z'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='42'/%3E%3Cpath d='M100 20v160M20 100h160M40 40l120 120M160 40L40 160'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.abt-bio__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  color: var(--secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 650;
}
.abt-bio__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.abt-bio__text {
  position: relative;
  z-index: 1;
}
.abt-bio__text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.abt-bio__text p:last-child {
  margin-bottom: 0;
}
.abt-bio__btn {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
}

.abt-stats {
  background: var(--white);
  padding: 0 0 clamp(1rem, 3vw, 1.75rem);
}
.abt-stats__panel {
  background: var(--primary);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(2.1rem, 4vw, 2.75rem) 1rem;
}
.abt-stats__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}
.abt-stats__item {
  position: relative;
  padding: 0.4rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.abt-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: rgba(200, 161, 90, 0.45);
}
.abt-stats__icon {
  color: var(--secondary);
  line-height: 0;
}
.abt-stats__icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
}
.abt-stats__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  margin: 0;
  font-weight: 700;
  color: var(--secondary);
}
.abt-stats__label {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.abt-values {
  background: var(--bg);
  padding: clamp(3.5rem, 7vw, 5.25rem) 0;
}
.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.abt-value {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.15rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.abt-value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.abt-value__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.9rem;
  color: var(--secondary);
  line-height: 0;
}
.abt-value__icon svg {
  width: 38px;
  height: 38px;
}
.abt-value h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--text);
}
.abt-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .abt-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .abt-hero {
    min-height: auto;
    display: block;
  }
  .abt-hero__media {
    position: relative;
    inset: auto;
    height: 280px;
  }
  .abt-hero__fade {
    background: linear-gradient(180deg, transparent 10%, rgba(250, 248, 244, 0.55) 55%, var(--bg) 92%);
  }
  .abt-hero__inner {
    margin: -2.5rem auto 0;
    width: min(100% - 2.5rem, var(--container));
    padding: 0 0 3rem;
  }
  .abt-hero__features {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: none;
  }
  .abt-hero__feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    align-items: start;
  }
  .abt-hero__icon {
    grid-row: 1 / span 2;
  }
  .abt-bio__grid {
    grid-template-columns: 1fr;
  }
  .abt-bio__media {
    max-width: none;
    aspect-ratio: 16 / 11;
  }
  .abt-stats__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.6rem;
  }
  .abt-stats__item:nth-child(2n)::after {
    display: none;
  }
  .abt-stats__item:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -0.85rem;
    height: 1px;
    background: rgba(200, 161, 90, 0.35);
  }
  .abt-values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .abt-values__grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.breadcrumb-inline {
  margin-bottom: 1.1rem;
}
.breadcrumb-inline .breadcrumb {
  width: auto;
  margin: 0;
  font-size: 0.82rem;
}
.breadcrumb {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .is-current { color: var(--primary); font-weight: 600; }
.breadcrumb .sep { color: rgba(28,28,28,0.28); }

/* Service cards — reference styles */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card--icon {
  text-align: center;
  padding: 1.85rem 1.2rem 1.5rem;
}
.service-card--icon .service-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.85rem;
  color: var(--secondary);
}
.service-card--icon .service-card__icon svg {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px;
  max-height: 36px;
}
.service-card--icon .service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.service-card--icon .service-card__text {
  color: var(--muted);
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  flex: 1;
  line-height: 1.65;
}

.services-grid--media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.section--services {
  background: var(--bg);
}

.service-card--media {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  min-height: 230px;
  background: var(--white);
}
.service-card--media .service-card__body {
  position: relative;
  z-index: 2;
  padding: 1.55rem 1.35rem 1.55rem 1.55rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  background: linear-gradient(90deg, #fff 70%, rgba(255,255,255,0));
}
.service-card--media .service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--secondary);
}
.service-card--media .service-card__icon svg { width: 34px; height: 34px; }
.service-card--media .service-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
}
.service-card--media .service-card__text {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
  flex: 1;
}
.service-card--media .service-card__media {
  position: relative;
  min-height: 100%;
  background: #e8e2d6;
}
.service-card--media .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card--media .service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.55) 35%, transparent 70%);
  pointer-events: none;
}
.service-card--media .service-card__icon svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px;
  max-height: 30px;
}
.service-card--media .service-card__title {
  font-size: 1.28rem;
}
.service-card--media .service-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card--accent { border-top: 3px solid var(--secondary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

/* Stories / posts */
.stories-grid,
.posts-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.story-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.story-card__media,
.post-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 190px;
  max-height: 220px;
  overflow: hidden;
  background: #ddd6c8;
  flex: 0 0 auto;
}
.story-card__media img,
.post-card__media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-card:hover .story-card__media img,
.post-card:hover .post-card__media img { transform: scale(1.04); }

.story-card__body,
.post-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  flex: 1 1 auto;
}
.story-card__title,
.post-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}
.story-card__meta,
.post-card__meta {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
}
.story-card__text,
.post-card__text {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.story-card__body .btn-ghost,
.post-card__body .btn-ghost {
  margin-top: 0.35rem;
}

/* Stats — ana sayfa: koyu yeşil + altın çizgiler */
.stats-bar {
  background: #0f3d2e;
  color: var(--white);
  padding: clamp(2.8rem, 5vw, 3.6rem) 0;
}
.stats-bar--light {
  background: #f3f1ec;
  color: var(--text);
  border-block: 1px solid var(--border);
  padding: 2.8rem 0;
}
.stats-bar--panel {
  background: transparent;
  padding: 0 0 0.5rem;
}
.stats-grid {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stats-bar .stat-item {
  position: relative;
  padding: 0.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.stats-bar .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: rgba(200, 161, 90, 0.55);
}
.stats-bar--light .stat-item,
.stats-bar--panel .stat-item {
  padding: 0.5rem 1rem;
  position: relative;
}
.stats-bar--light .stat-item:not(:last-child)::after,
.stats-grid--panel .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(200, 161, 90, 0.45);
}
.stats-grid--panel {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 22px;
  padding: 2.2rem 1rem;
  box-shadow: var(--shadow);
}
.stat-item__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  color: var(--secondary);
  line-height: 0;
}
.stat-item__icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
}
.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  margin: 0;
  font-weight: 700;
  color: var(--secondary);
}
.stats-grid--panel .stat-item__value,
.stats-grid--panel .stat-item__label {
  color: var(--secondary);
}
.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.stats-bar--light .stat-item__label {
  color: var(--muted);
  opacity: 1;
}
.stats-bar--light .stat-item__value {
  color: var(--primary);
}

/* Why / values */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.why-item svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  color: var(--secondary);
  margin-bottom: 0.9rem;
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-card__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.9rem;
  color: var(--secondary);
}
.value-card__icon svg { width: 38px; height: 38px; }
.value-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* About */
.about-bio {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-bio__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  background: #e8e2d6;
  max-width: 480px;
}
.about-bio__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-bio__content {
  position: relative;
}
.about-bio__label {
  color: var(--secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 650;
  margin-bottom: 0.7rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.feature-pills li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.92rem;
}
.feature-pills svg { color: var(--secondary); width: 1.1rem; height: 1.1rem; }

/* Contact page */
.ct-hero {
  position: relative;
  min-height: clamp(420px, 52vh, 520px);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ct-hero__media {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
}
.ct-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ct-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      var(--bg) 36%,
      rgba(250, 248, 244, 0.94) 46%,
      rgba(250, 248, 244, 0.55) 58%,
      rgba(250, 248, 244, 0.12) 72%,
      transparent 84%
    );
}
.ct-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 520px);
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ct-hero__line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--secondary);
}
.ct-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.ct-hero__lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ct-body {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.ct-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}
.ct-side {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.ct-wa {
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow);
}
.ct-wa--main {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.ct-wa__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 161, 90, 0.18);
  color: var(--secondary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.ct-wa__icon svg {
  width: 26px !important;
  height: 26px !important;
}
.ct-wa__label {
  margin: 0 0 0.35rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ct-wa__heading {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.ct-wa__number {
  display: block;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.65rem;
  color: var(--white);
}
.ct-wa__text {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}
.ct-wa__btn {
  width: 100%;
  justify-content: center;
}

.ct-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem;
}
.ct-info__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.ct-info__item {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(15, 61, 46, 0.08);
}
.ct-info__item:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.ct-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(200, 161, 90, 0.12);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ct-info__icon svg {
  width: 18px !important;
  height: 18px !important;
}
.ct-info__item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
  color: var(--text);
}
.ct-info__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.ct-info__item a:hover {
  color: var(--primary);
}

@media (max-width: 960px) {
  .ct-hero {
    min-height: auto;
    display: block;
  }
  .ct-hero__media {
    position: relative;
    inset: auto;
    height: 260px;
  }
  .ct-hero__fade {
    background: linear-gradient(180deg, transparent 10%, rgba(250, 248, 244, 0.55) 55%, var(--bg) 92%);
  }
  .ct-hero__inner {
    margin: -2.25rem auto 0;
    width: min(100% - 2.5rem, var(--container));
    padding: 0 0 2.5rem;
  }
  .ct-layout {
    grid-template-columns: 1fr;
  }
  .ct-side {
    position: static;
  }
}

/* Legacy contact helpers */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}
.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 1.4rem;
  font-weight: 700;
}
.contact-panel__item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.contact-panel__item svg {
  color: var(--secondary);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.contact-panel__item strong { display: block; margin-bottom: 0.15rem; }
.contact-panel__item p { margin: 0; color: var(--muted); }

/* ========== Hikaye detay sayfası ========== */
.sk-hero {
  position: relative;
  height: clamp(400px, 52vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f4ee;
}
.sk-hero__bg {
  position: absolute;
  inset: 0;
}
.sk-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.sk-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(250, 248, 244, 0.98) 0%,
      rgba(250, 248, 244, 0.94) 30%,
      rgba(250, 248, 244, 0.5) 52%,
      transparent 78%
    ),
    linear-gradient(180deg, transparent 70%, #faf8f4 100%);
  pointer-events: none;
}
.sk-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 560px);
  margin-left: max(calc((100vw - var(--container)) / 2), 1.25rem);
  padding: 2.5rem 0;
}
.sk-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #888;
}
.sk-hero__crumb a {
  color: #666;
  text-decoration: none;
}
.sk-hero__crumb a:hover { color: var(--secondary); }
.sk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 600;
}
.sk-hero__moon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  color: var(--secondary);
}
.sk-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.8vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.sk-hero__quote {
  margin: 0 0 0.75rem;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 32rem;
}
.sk-hero__quote--plain {
  font-style: normal;
}
.sk-hero__person {
  margin: 0;
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.sk-body {
  background: #faf8f4;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.sk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 1.6rem;
  align-items: start;
}
.sk-panel {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.05);
  padding: 1.7rem 1.8rem 1.9rem;
}
.sk-panel__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-weight: 700;
}
.sk-panel__content {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}
.sk-panel__content p {
  margin: 0 0 1.1rem;
}
.sk-panel__content p:last-child {
  margin-bottom: 0;
}

.sk-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.sk-card {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 61, 46, 0.08);
}
.sk-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.sk-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sk-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
}
.sk-card__label {
  margin: 0 0 0.25rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sk-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  font-weight: 700;
  color: #1a1a1a;
}
.sk-card__text {
  margin: 0 0 1.2rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}
.sk-card__btn {
  width: 100%;
  margin-top: 0.65rem;
}

.sk-share {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 61, 46, 0.08);
}
.sk-share--side {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
}
.sk-share__head {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 700;
}
.sk-share__head svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--secondary);
}
.sk-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.sk-share__actions--compact .sk-share__btn {
  width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
}
.sk-share__actions--compact .sk-share__btn span {
  display: none;
}
.sk-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  background: #faf8f4;
  color: #333 !important;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.sk-share__btn svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--secondary);
}
.sk-share__btn:hover {
  background: #fff;
  border-color: rgba(200, 161, 90, 0.55);
  color: #0f3d2e !important;
}
.sk-share__btn.is-copied {
  border-color: var(--secondary);
  color: var(--secondary) !important;
}

.sk-related {
  background: #fff;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.sk-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

@media (max-width: 960px) {
  .sk-hero {
    height: auto;
    display: block;
  }
  .sk-hero__bg {
    position: relative;
    height: 240px;
  }
  .sk-hero__veil {
    background: linear-gradient(180deg, transparent 20%, rgba(250, 248, 244, 0.7) 65%, #faf8f4 100%);
  }
  .sk-hero__inner {
    width: min(100% - 2.5rem, var(--container));
    margin: -2rem auto 0;
    padding: 0 0 2rem;
  }
  .sk-layout {
    grid-template-columns: 1fr;
  }
  .sk-side {
    position: static;
    order: 2;
  }
  .sk-related__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Hizmet detay sayfası ========== */
.sd-hero {
  position: relative;
  height: clamp(420px, 56vh, 540px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7f4ee;
}
.sd-hero__bg {
  position: absolute;
  inset: 0;
}
.sd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.sd-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(250, 248, 244, 0.98) 0%,
      rgba(250, 248, 244, 0.94) 30%,
      rgba(250, 248, 244, 0.5) 52%,
      transparent 78%
    ),
    linear-gradient(180deg, transparent 70%, #faf8f4 100%);
  pointer-events: none;
}
.sd-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 560px);
  margin-left: max(calc((100vw - var(--container)) / 2), 1.25rem);
  padding: 2.5rem 0;
}
.sd-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #888;
}
.sd-hero__crumb a {
  color: #666;
  text-decoration: none;
}
.sd-hero__crumb a:hover { color: var(--secondary); }
.sd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 600;
}
.sd-hero__moon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  color: var(--secondary);
}
.sd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}
.sd-hero__text {
  margin: 0 0 1.35rem;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
}
.sd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sd-hero__chip {
  min-width: 140px;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 61, 46, 0.06);
}
.sd-hero__chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #0f3d2e;
  line-height: 1.1;
}
.sd-hero__chip span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #777;
  font-weight: 600;
}

.sd-body {
  background: #faf8f4;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.sd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: 1.6rem;
  align-items: start;
}
.sd-main {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.sd-panel {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.05);
  padding: 1.6rem 1.7rem;
}
.sd-panel--note {
  background: linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}
.sd-panel__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
  color: #1a1a1a;
  font-weight: 700;
}
.sd-panel__text {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.75;
}
.sd-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.sd-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}
.sd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.sd-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.sd-card {
  background: #0f3d2e;
  color: #fff;
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  box-shadow: 0 18px 40px rgba(10, 43, 32, 0.22);
}
.sd-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 90, 0.55);
  display: grid;
  place-items: center;
  color: var(--secondary);
  margin-bottom: 0.9rem;
}
.sd-card__icon svg {
  width: 22px !important;
  height: 22px !important;
}
.sd-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}
.sd-card__sub {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.sd-card__rows {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sd-card__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}
.sd-card__row span { color: rgba(255, 255, 255, 0.65); }
.sd-card__row strong { color: var(--secondary); font-weight: 700; }
.sd-card__btn {
  width: 100%;
  margin-top: 0.7rem;
}
.sd-card .btn-outline {
  border-color: rgba(200, 161, 90, 0.7);
  color: #c8a15a !important;
  background: transparent;
}

.sd-related {
  background: #fff;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.sd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.sd-mini {
  background: #faf8f4;
  border: 1px solid rgba(15, 61, 46, 0.07);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sd-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.08);
  background: #fff;
}
.sd-mini__icon {
  color: var(--secondary);
  line-height: 0;
  margin-bottom: 0.2rem;
}
.sd-mini__icon svg {
  width: 28px !important;
  height: 28px !important;
}
.sd-mini__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
}
.sd-mini__text {
  margin: 0;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sd-mini__link {
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.25rem;
}
.sd-mini__link:hover { color: #b8924a; }

@media (max-width: 960px) {
  .sd-hero {
    height: auto;
    display: block;
  }
  .sd-hero__bg {
    position: relative;
    height: 240px;
  }
  .sd-hero__veil {
    background: linear-gradient(180deg, transparent 20%, rgba(250, 248, 244, 0.7) 65%, #faf8f4 100%);
  }
  .sd-hero__inner {
    width: min(100% - 2.5rem, var(--container));
    margin: -2rem auto 0;
    padding: 0 0 2rem;
  }
  .sd-layout {
    grid-template-columns: 1fr;
  }
  .sd-side {
    position: static;
    order: 2;
  }
  .sd-related__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sd-related__grid {
    grid-template-columns: 1fr;
  }
}

.content-article { max-width: 760px; margin: 0 auto; }

.rich-text { color: var(--muted); }
.rich-text h2,
.rich-text h3 { margin-top: 1.8rem; margin-bottom: 0.75rem; color: var(--text); }
.rich-text p { margin: 0 0 1.1rem; }
.rich-text ul { padding-left: 1.15rem; margin-bottom: 1.15rem; }
.rich-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Forms */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200, 161, 90, 0.18);
}
textarea.form-control { min-height: 140px; resize: vertical; }

.alert {
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
}
.alert-success {
  background: rgba(15, 61, 46, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 61, 46, 0.15);
}
.alert-danger {
  background: rgba(160, 40, 40, 0.08);
  color: #8a1f1f;
  border: 1px solid rgba(160, 40, 40, 0.15);
}

/* CTA — referans: krem zemin + yuvarlak kart + cami arka plan */
.cta-band {
  background: #faf8f4;
  color: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.cta-band__panel {
  position: relative;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  background: #0a2b20;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(10, 43, 32, 0.22);
  isolation: isolate;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  filter: saturate(0.55) brightness(0.55) contrast(1.05);
  transform: scale(1.04);
}
.cta-band__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 32, 24, 0.9) 0%, rgba(10, 43, 32, 0.84) 40%, rgba(10, 43, 32, 0.7) 68%, rgba(10, 43, 32, 0.78) 100%),
    radial-gradient(ellipse at 18% 85%, rgba(200, 161, 90, 0.16), transparent 48%);
}
.cta-band__pattern {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(52%, 500px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.28;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23C8A15A' stroke-width='1'%3E%3Cpath d='M100 10l20 35 40 6-29 28 7 40-38-20-38 20 7-40-29-28 40-6z'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='42'/%3E%3Cpath d='M100 20v160M20 100h160M40 40l120 120M160 40L40 160'/%3E%3C/g%3E%3C/svg%3E") left center / 260px 260px repeat-y;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
}
.cta-band__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.75rem, 5vw, 3.85rem) clamp(1.75rem, 4vw, 3.25rem);
}
.cta-band__content {
  max-width: 34rem;
}
.cta-band__content h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin: 0 0 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.cta-band__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 30rem;
}
.cta-band__moon {
  margin: 0 0 0.85rem;
  color: var(--secondary);
  line-height: 0;
}
.cta-band__moon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: min(100%, 310px);
  flex-shrink: 0;
}
.cta-band__actions .btn {
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
}
.cta-band .btn-secondary {
  background: #c8a15a;
  color: #fff !important;
  border-color: #c8a15a;
  box-shadow: 0 12px 28px rgba(200, 161, 90, 0.32);
}
.cta-band .btn-secondary:hover {
  background: #b8924a;
  border-color: #b8924a;
  color: #fff !important;
}
.cta-band .btn-outline-light {
  border-color: rgba(200, 161, 90, 0.95);
  color: #c8a15a !important;
  background: transparent;
  box-shadow: none;
}
.cta-band .btn-outline-light:hover {
  background: rgba(200, 161, 90, 0.1);
  border-color: #c8a15a;
  color: #c8a15a !important;
}

/* Footer */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.82);
  padding-top: 4.2rem;
}
.site-footer a:hover { color: var(--secondary); }
.footer-grid {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 2.3rem;
  padding-bottom: 2.8rem;
}
.footer-brand .brand__name { color: var(--white); }
.footer-brand p {
  margin: 1rem 0 1.4rem;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 90, 0.45);
  display: grid;
  place-items: center;
  color: var(--secondary);
  transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary-deep);
}
.footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li + li { margin-top: 0.65rem; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.footer-contact svg {
  color: var(--secondary);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}
.footer-bottom {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  margin-left: 1rem;
}

/* Admin */
.admin-body { background: #f3f1ec; min-height: 100vh; }
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.85);
  padding: 1.7rem 1.2rem;
}
.admin-sidebar .brand__name { color: #fff; font-size: 1.05rem; }
.admin-sidebar .brand__tag { color: rgba(255,255,255,0.55); }
.admin-sidebar nav {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.admin-sidebar a {
  display: block;
  padding: 0.68rem 0.85rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.admin-sidebar a:hover,
.admin-sidebar a.is-active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.admin-sidebar a.is-active { border-left: 3px solid var(--secondary); }
.admin-main { padding: 1.7rem; }
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  gap: 1rem;
}
.admin-top h1 { margin: 0; font-size: 1.7rem; font-family: var(--font-display); }
.admin-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.admin-stat {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}
.admin-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}
.admin-stat strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--primary);
}
.table-admin {
  width: 100%;
  border-collapse: collapse;
}
.table-admin th,
.table-admin td {
  text-align: left;
  padding: 0.8rem 0.6rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.table-admin th {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at 20% 20%, rgba(200,161,90,0.15), transparent 40%), var(--bg);
}
.login-card {
  width: min(100%, 420px);
  background: #fff;
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border-color: rgba(15, 61, 46, 0.14) !important;
  border-radius: var(--radius-sm);
}
.ql-container.ql-snow {
  min-height: 220px;
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid-home,
  .home-services__grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid,
  .home-why__grid,
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.nav-backdrop {
  display: none;
}
.nav-links__cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    margin-left: auto;
    position: relative;
    z-index: 130;
  }
  .site-header {
    z-index: 200;
  }
  .navbar-cta { display: none; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(10, 43, 32, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .nav-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 340px);
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: calc(5.5rem + env(safe-area-inset-top, 0px)) 1.35rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border: 0;
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 40px rgba(15, 61, 46, 0.14);
    display: flex;
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links li a {
    display: block;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 600;
    min-height: 48px;
  }
  .nav-links li a::after { display: none; }
  .nav-links__cta {
    display: block;
    margin-top: 1.25rem;
    border-bottom: 0 !important;
  }
  .nav-links__cta .btn {
    min-height: 48px;
    width: 100%;
  }
  .nav-toggle span {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 960px) {
  .home-hero {
    display: block;
    height: auto;
  }
  .home-hero__visual,
  .home-hero__shade {
    position: relative;
    width: 100%;
    height: 240px;
    clip-path: none;
    -webkit-clip-path: none;
  }
  .home-hero__shade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    width: 100%;
    background: linear-gradient(180deg, transparent 35%, #fff 100%);
    box-shadow: none;
  }
  .home-hero__inner {
    padding: 0 0 2rem;
    margin-top: -1.75rem;
  }
  .home-hero__content {
    max-width: none;
    padding-right: 0;
  }
  .home-hero__actions {
    flex-wrap: wrap;
  }
  .hero-home,
  .hero-split,
  .hero-services,
  .about-bio,
  .contact-layout,
  .admin-shell { grid-template-columns: 1fr; }
  .hero-home__visual,
  .hero-split__visual { min-height: 300px; order: -1; }
  .hero-home__visual::before {
    background: linear-gradient(180deg, transparent 35%, #fff 100%);
  }
  .hero-home__content,
  .hero-split__content {
    margin: 0 auto;
    padding: 1.75rem 1.25rem 2.5rem;
    max-width: none;
  }
  .home-stories__grid {
    grid-template-columns: 1fr;
  }
  .hero-services {
    min-height: auto;
    display: block;
  }
  .hero-services__media {
    position: relative;
    inset: auto;
    height: 280px;
  }
  .hero-services__overlay {
    background: linear-gradient(180deg, transparent 20%, var(--bg) 95%);
  }
  .hero-services__content {
    max-width: none;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 2.5rem;
  }
  .services-grid,
  .services-grid--media,
  .services-grid-home,
  .home-services__grid,
  .stories-grid,
  .posts-grid,
  .related-grid { grid-template-columns: 1fr 1fr; }
  .service-card--media { grid-template-columns: 1fr; min-height: 0; }
  .service-card--media .service-card__media { min-height: 160px; order: -1; }
  .service-card--media .service-card__body {
    background: #fff;
  }
  .service-card--media .service-card__media::after {
    background: linear-gradient(180deg, transparent 25%, rgba(255,255,255,0.95));
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }
}

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band__actions {
    width: 100%;
  }
  .cta-band__actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .services-grid-home,
  .home-services__grid,
  .stories-grid,
  .stry-grid,
  .posts-grid,
  .related-grid,
  .why-grid,
  .home-why__grid,
  .values-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .home-why__grid {
    gap: 2rem;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
  box-shadow: 0 14px 32px rgba(15, 61, 46, 0.28);
  color: #fff;
}
.wa-float svg {
  width: 28px !important;
  height: 28px !important;
  position: relative;
  z-index: 1;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 0;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .wa-float {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }
}

/* ========== Mobil üst seviye optimizasyon ========== */
html,
body {
  overflow-x: clip;
  max-width: 100%;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

main#main-content {
  padding-bottom: 0.5rem;
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }

  .container,
  .navbar-main,
  .breadcrumb,
  .stry-hero__inner,
  .svc-hero__inner,
  .abt-hero__inner,
  .sk-hero__inner,
  .sd-hero__inner {
    width: min(100% - 1.5rem, var(--container));
  }

  .section { padding: clamp(2.4rem, 7vw, 3.6rem) 0; }

  .navbar-main {
    gap: 0.75rem;
    padding-block: 0.55rem;
    min-height: var(--header-h);
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }
  .brand__mark svg { width: 18px; height: 18px; }
  .brand__name {
    font-size: 1.02rem;
    line-height: 1.15;
  }
  .brand__tag {
    font-size: 0.62rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 11.5rem;
  }

  .home-hero__title,
  .sk-hero__title,
  .sd-hero__title,
  .stry-hero__title,
  .svc-hero__title,
  .abt-hero__title {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
    letter-spacing: -0.02em;
  }

  .home-hero__lead,
  .sk-hero__quote,
  .section-lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .home-hero__actions {
    gap: 0.7rem;
  }
  .home-hero__actions .btn,
  .svc-hero__actions .btn,
  .abt-hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .home-hero__visual,
  .home-hero__shade {
    height: min(52vw, 220px);
  }
  .home-hero__shade { height: min(52vw, 220px); }

  .sk-hero__bg,
  .sd-hero__bg,
  .stry-hero__bg {
    height: min(48vw, 210px);
  }

  .sk-panel,
  .sk-card,
  .contact-panel {
    padding: 1.25rem 1.15rem 1.4rem;
    border-radius: 14px;
  }

  .sk-panel__content,
  .sk-panel .prose,
  .rich-text,
  .prose {
    font-size: 1rem;
    line-height: 1.75;
  }
  .sk-panel__content h2,
  .sk-panel .prose h2,
  .rich-text h2,
  .prose h2 {
    font-size: 1.25rem;
    margin-top: 1.6rem;
  }
  .sk-panel__content h3,
  .sk-panel .prose h3,
  .rich-text h3,
  .prose h3 {
    font-size: 1.08rem;
  }

  .cta-band {
    padding-inline: 0;
  }
  .cta-band__inner {
    gap: 1.1rem;
  }

  .footer-grid {
    gap: 1.75rem;
  }

  /* WhatsApp float içeriği örtmesin */
  main#main-content {
    padding-bottom: 5.5rem;
  }

  input.form-control,
  select.form-select,
  textarea.form-control,
  .form-control,
  .form-select {
    font-size: 16px !important;
    min-height: 48px;
  }
  textarea.form-control {
    min-height: 120px;
  }

  .btn {
    min-height: 46px;
  }
  .btn-sm {
    min-height: 42px;
  }

  .sk-hero__crumb,
  .sd-hero__crumb,
  .breadcrumb {
    font-size: 0.78rem;
    row-gap: 0.25rem;
  }

  .share-row,
  .sk-share {
    flex-wrap: wrap;
  }
  .share-row .btn,
  .sk-share .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .page-head { margin-bottom: 2rem; }

  .home-hero__trust {
    gap: 0.55rem 0.85rem;
  }
  .home-hero__trust li {
    font-size: 0.82rem;
  }

  .stats-grid,
  .svc-stats__row,
  .abt-stats__row {
    column-gap: 0.5rem;
  }

  .footer-bottom,
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand__tag { display: none; }
  .brand__name { font-size: 0.95rem; }
  .home-hero__title,
  .sk-hero__title,
  .sd-hero__title {
    font-size: 1.55rem;
  }
}

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

