:root {
  --bg: #f9f5f0;
  --text: #2c2826;
  --accent: #e8613a;
  --muted: rgba(44, 40, 38, 0.72);
  --line: rgba(44, 40, 38, 0.14);
  --card: rgba(255, 255, 255, 0.68);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --wrap: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.25s ease, backdrop-filter 0.25s ease,
    border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(249, 245, 240, 0.74);
  backdrop-filter: blur(10px);
  border-color: var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  width: 48px;
  height: 44px;
  display: grid;
  gap: 4px;
  place-content: center;
  cursor: pointer;
}

.line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--text);
  transition: 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .line:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .line:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .line:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu {
  position: absolute;
  top: 72px;
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.5rem;
}

.menu.is-open {
  display: flex;
}

.menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  transition: 0.2s ease;
}

.menu a:hover {
  background: rgba(232, 97, 58, 0.12);
}

.menu-cta {
  background: rgba(232, 97, 58, 0.16);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 2.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

h3 {
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  max-width: 38ch;
  font-size: 1.05rem;
  margin: 0.9rem 0 1.4rem;
}

.hero-art {
  min-height: 280px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(
    140deg,
    rgba(232, 97, 58, 0.16),
    rgba(232, 97, 58, 0.05) 52%,
    rgba(44, 40, 38, 0.08)
  );
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.shape-a {
  width: 240px;
  height: 240px;
  top: -60px;
  left: -40px;
  background: rgba(232, 97, 58, 0.28);
}

.shape-b {
  width: 200px;
  height: 200px;
  right: -50px;
  top: 30%;
  background: rgba(44, 40, 38, 0.16);
}

.shape-c {
  width: 180px;
  height: 180px;
  left: 20%;
  bottom: -80px;
  background: rgba(232, 97, 58, 0.2);
}

.section {
  padding: 4rem 0;
}

.title-block {
  margin-bottom: 1rem;
}

.flow,
.services,
.comments {
  display: grid;
  gap: 0.9rem;
}

.flow-item,
.service-card,
.comment-card,
.trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.flow-item {
  padding: 1.15rem;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  font-weight: 700;
  background: rgba(232, 97, 58, 0.18);
}

.flow-item p,
.service-card p,
.trust-text,
.comment-card blockquote {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.services {
  margin-top: 0.4rem;
}

.service-card {
  padding: 1.15rem;
}

.intake-form {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.submit-feedback {
  display: none;
  margin-top: 0.7rem;
  background: rgba(232, 97, 58, 0.12);
  border: 1px solid rgba(232, 97, 58, 0.35);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
}

.form-note {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.submit-feedback.is-visible {
  display: block;
}

.field-grid {
  display: grid;
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span,
.field legend {
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(232, 97, 58, 0.28);
  border-color: rgba(232, 97, 58, 0.5);
}

.choice {
  margin: 0;
  padding: 0;
  border: none;
}

.choice-item {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  margin-top: 0.45rem;
}

.choice-item input {
  width: auto;
  margin: 0;
}

.service-top {
  display: flex;
  gap: 0.7rem;
}

.service-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 97, 58, 0.16);
  color: var(--accent);
}

.meta {
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
}

.featured {
  border-color: rgba(232, 97, 58, 0.3);
  background: linear-gradient(
    180deg,
    rgba(232, 97, 58, 0.16),
    rgba(255, 255, 255, 0.7)
  );
}

.trust {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.trust-badges {
  display: grid;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.95rem;
}

.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(232, 97, 58, 0.16);
  color: var(--accent);
  font-weight: 700;
}

.trust-item p {
  margin: 0.3rem 0 0;
}

.trust-text {
  margin-top: 0.95rem;
}

.comment-card {
  margin: 0;
  padding: 1.15rem;
}

.comment-card figcaption {
  margin-top: 0.6rem;
  font-weight: 600;
}

.bottom-cta {
  padding: 3.2rem 0;
  background: linear-gradient(
    130deg,
    rgba(232, 97, 58, 0.92),
    rgba(232, 97, 58, 0.7)
  );
}

.bottom-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.bottom-cta h2 {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-soft {
  background: rgba(232, 97, 58, 0.14);
}

.btn-dark {
  background: rgba(44, 40, 38, 0.9);
  color: #fff;
}

.footer {
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
}

.footer-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.privacy-list {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a,
.socials a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.socials a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footnote {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-disclaimer {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#nasil,
#hizmetler,
#basvuru,
#basla {
  scroll-margin-top: 86px;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    background: transparent;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .hero-art {
    min-height: 420px;
  }

  .flow,
  .services,
  .comments {
    grid-template-columns: repeat(3, 1fr);
  }

  .field-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust {
    padding: 1.25rem;
  }

  .bottom-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
