/* ============================================================
   Dyt. Rüveyde Has — ruveydehas.com
   Tema: Yeşil & Beyaz, modern, sağlık odaklı
   ============================================================ */

:root {
  --brand-950: #07281a;
  --brand-900: #0b3b26;
  --brand-800: #0f5132;
  --brand-700: #14683f;
  --brand-600: #17804c;
  --brand-500: #22a05f;
  --brand-400: #4cbf82;
  --brand-200: #bfe6cf;
  --brand-100: #e3f4e9;
  --brand-50: #f3faf5;
  --amber: #f0b429;
  --ink: #1b2a21;
  --muted: #59695f;
  --line: #dceae0;
  --bg: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(15, 81, 50, 0.08);
  --shadow-lift: 0 16px 40px rgba(15, 81, 50, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--brand-950);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--brand-700);
  text-decoration: none;
}

a:hover {
  color: var(--brand-500);
}

ul,
ol {
  padding-left: 1.3em;
}

strong {
  color: var(--brand-900);
}

::selection {
  background: var(--brand-200);
  color: var(--brand-950);
}

:focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Yerleşim ---------- */

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.container-narrow {
  width: min(820px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: var(--brand-50);
}

.section-deep {
  background: linear-gradient(160deg, var(--brand-900), var(--brand-950));
  color: #eaf6ef;
}

.section-deep h2,
.section-deep h3 {
  color: #ffffff;
}

.section-deep p {
  color: #cfe7d8;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-400);
  border-radius: 2px;
}

.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-400);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn-primary {
  background: var(--brand-600);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 128, 76, 0.28);
}

.btn-primary:hover {
  background: var(--brand-700);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 128, 76, 0.34);
}

.btn-outline {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--brand-200);
}

.btn-outline:hover {
  border-color: var(--brand-500);
  color: var(--brand-700);
  background: var(--brand-50);
  transform: translateY(-2px);
}

.btn-light {
  background: #ffffff;
  color: var(--brand-800);
}

.btn-light:hover {
  background: var(--brand-100);
  color: var(--brand-900);
  transform: translateY(-2px);
}

.btn-wa {
  background: #22c15e;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(34, 193, 94, 0.3);
}

.btn-wa:hover {
  background: #1aa54f;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.1rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Üst menü ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(15, 81, 50, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--brand-950);
}

.brand:hover {
  color: var(--brand-800);
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--brand-100);
  border-radius: 12px;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 1.2vw, 0.65rem);
}

.main-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
}

.main-nav a:hover {
  background: var(--brand-50);
  color: var(--brand-800);
}

.main-nav a.active {
  background: var(--brand-100);
  color: var(--brand-800);
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-cta .btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  color: var(--brand-900);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid;
  }

  .header-cta .btn {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(15, 81, 50, 0.12);
    padding: 0.9rem 4vw 1.2rem;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem 1rem;
    font-size: 1.02rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -10%, var(--brand-100) 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 110%, var(--brand-50) 0%, transparent 55%),
    #ffffff;
  padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero h1 em {
  font-style: italic;
  color: var(--brand-600);
}

.hero .lead {
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-note svg {
  width: 17px;
  height: 17px;
  color: var(--brand-500);
  flex: none;
}

.hero-figure {
  position: relative;
  justify-self: center;
  width: min(430px, 100%);
}

.hero-photo {
  aspect-ratio: 4 / 4.6;
  border-radius: 210px 210px var(--radius) var(--radius);
  background: linear-gradient(165deg, var(--brand-200), var(--brand-500));
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  display: grid;
  place-items: center;
}

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

.photo-placeholder {
  text-align: center;
  color: var(--brand-900);
  padding: 2rem;
}

.photo-placeholder svg {
  width: 76px;
  height: 76px;
  margin: 0 auto 0.8rem;
  opacity: 0.55;
}

.photo-placeholder span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}

.float-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-900);
}

.float-badge svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: 8px;
  padding: 4px;
}

.float-badge.tl {
  top: 9%;
  left: -6%;
}

.float-badge.br {
  bottom: 7%;
  right: -5%;
}

@media (max-width: 520px) {
  .float-badge.tl {
    left: 0;
  }

  .float-badge.br {
    right: 0;
  }
}

/* ---------- Güven şeridi / rozet listesi ---------- */

.trust-bar {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  padding: 1.1rem 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-900);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-500);
  flex: none;
}

/* ---------- Kartlar ---------- */

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.card {
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-200);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 0.4em;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--brand-600);
}

.card:hover .card-link {
  color: var(--brand-800);
}

.card ul {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.6rem 0 0;
  padding-left: 1.15em;
}

.card ul li {
  margin-bottom: 0.3em;
}

/* ---------- Süreç adımları ---------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

.step {
  counter-increment: step;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35em;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- Danışan görüşleri ---------- */

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--amber);
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
}

.testimonial blockquote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0;
  color: var(--brand-400);
  vertical-align: -0.35em;
  margin-right: 0.15rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
}

.avatar {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-footer strong {
  display: block;
  font-size: 0.94rem;
  color: var(--brand-950);
}

.testimonial-footer span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- SSS ---------- */

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-950);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314683f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- CTA bandı ---------- */

.cta-band {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(76, 191, 130, 0.25) 0%, transparent 60%),
    linear-gradient(150deg, var(--brand-800), var(--brand-950));
  border-radius: calc(var(--radius) + 6px);
  color: #ffffff;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.cta-band h2 {
  color: #ffffff;
  margin-bottom: 0.3em;
}

.cta-band p {
  color: #cfe7d8;
  margin: 0;
  max-width: 34rem;
}

.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */

.page-hero {
  background:
    radial-gradient(700px 360px at 85% -20%, var(--brand-100) 0%, transparent 60%),
    var(--brand-50);
  padding: clamp(2.4rem, 5vw, 3.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 0.35em;
}

.page-hero .lead {
  max-width: 40rem;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--brand-600);
  font-weight: 500;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--brand-300, #a9d8bd);
}

/* ---------- Formlar ---------- */

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-950);
  margin-bottom: 0.4rem;
}

.field label .opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(34, 160, 95, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 0 1rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 1.1rem 0 1.3rem;
}

.check input {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--brand-600);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.form-note svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--brand-500);
  margin-top: 2px;
}

.form-success {
  display: none;
  background: var(--brand-100);
  border: 1px solid var(--brand-200);
  color: var(--brand-900);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.94rem;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
}

/* Bölmeli (segmented) radyo grubu */

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.segmented label {
  position: relative;
  cursor: pointer;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.15s ease;
}

.segmented input:checked + span {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #ffffff;
  font-weight: 600;
}

.segmented input:focus-visible + span {
  outline: 3px solid var(--brand-400);
  outline-offset: 2px;
}

/* ---------- Hesaplama araçları ---------- */

.calc-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}

@media (max-width: 860px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
}

.calc-result {
  background: linear-gradient(160deg, var(--brand-800), var(--brand-950));
  border-radius: var(--radius);
  color: #ffffff;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.calc-result h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.calc-result .placeholder {
  color: #9ec9ae;
  font-size: 0.94rem;
}

.result-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
}

.result-big small {
  font-family: var(--font-body);
  font-size: 0.42em;
  font-weight: 500;
  color: var(--brand-200);
  margin-left: 0.3rem;
}

.result-label {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 0.4rem;
}

.result-rows {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  font-size: 0.94rem;
  color: #d7ecdf;
}

.result-row strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.result-tag {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 600;
}

.calc-cta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.calc-cta p {
  font-size: 0.9rem;
  color: #cfe7d8;
}

/* ---------- Tablolar ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 420px;
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
}

thead th {
  background: var(--brand-50);
  color: var(--brand-900);
  font-weight: 600;
  font-size: 0.88rem;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--brand-50);
}

/* ---------- Uyarı / bilgi kutuları ---------- */

.notice {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.notice svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--brand-600);
  margin-top: 2px;
}

.notice p {
  margin: 0;
}

/* ---------- Blog ---------- */

.post-card .post-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.9rem;
}

.post-card .post-meta {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.article-body {
  font-size: 1.04rem;
}

.article-body h2 {
  margin-top: 2em;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}

.article-body h3 {
  margin-top: 1.6em;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 0.45em;
}

.article-body img {
  border-radius: var(--radius);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* ---------- Zaman çizelgesi (hakkımda) ---------- */

.timeline {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-left: 1.9rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--brand-200);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-500);
  border: 4px solid var(--brand-100);
}

.timeline-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2em;
}

.timeline-item .when {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-600);
  letter-spacing: 0.04em;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.3em 0 0;
}

/* ---------- Alt bilgi ---------- */

.site-footer {
  background: linear-gradient(165deg, var(--brand-900), var(--brand-950));
  color: #cfe7d8;
  padding: clamp(2.8rem, 6vw, 4.2rem) 0 0;
  margin-top: clamp(3rem, 7vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.4rem;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer .brand {
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.site-footer .brand small {
  color: var(--brand-400);
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer p {
  font-size: 0.92rem;
  color: #a8cdb6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #cfe7d8;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--brand-400);
  margin-top: 3px;
}

.footer-contact a {
  color: #cfe7d8;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: #8fbc9f;
}

.footer-bottom a {
  color: #a8cdb6;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ---------- WhatsApp sabit butonu ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22c15e;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(34, 193, 94, 0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(34, 193, 94, 0.5);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Mobil yapışkan CTA barı ---------- */

.mobile-cta-bar {
  display: none;
}

@media (max-width: 760px) {
  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.65rem 4vw calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(15, 81, 50, 0.1);
  }

  .mobile-cta-bar .btn {
    padding: 0.75rem 0.6rem;
    font-size: 0.92rem;
  }

  body {
    padding-bottom: 72px;
  }

  .wa-float {
    bottom: 86px;
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- Görünürlük animasyonu ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card,
  .wa-float {
    transition: none;
  }
}

/* ---------- Yardımcılar ---------- */

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-900);
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
  color: #ffffff;
}
