:root {
  --font-sans: "Manrope";
  --font-display: "Playfair Display";
  --navy-950: #030817;
  --navy-900: #07142d;
  --navy-800: #0a2147;
  --navy-700: #10366d;
  --blue-500: #2f73d9;
  --blue-300: #7fb0ff;
  --ivory: #f8f5ef;
  --paper: #fffdf9;
  --sand: #e9e1d5;
  --gold: #c9a76a;
  --gold-light: #e7d3a6;
  --ink: #101929;
  --muted: #667085;
  --line: #e5e7eb;
  --green: #16a26a;
  --shadow: 0 24px 70px rgba(4, 16, 40, 0.14);
  --radius: 24px;
}

.about__frame--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 23, 0.93) 0%, rgba(3, 8, 23, 0.55) 46%, rgba(3, 8, 23, 0.08) 82%);
}

.analysis-form__media {
  position: relative;
  height: 158px;
  overflow: hidden;
  background: var(--navy-900);
}

.analysis-form__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 23, 0.68), rgba(3, 8, 23, 0.04));
}

.analysis-form__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.analysis-form__media > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: white;
  background: rgba(7,20,45,.68);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.form-panel[hidden],
.analysis-success[hidden],
.analysis-form__actions[hidden],
.step-labels[hidden],
.progress[hidden],
.form-error[hidden],
button[hidden],
span[hidden] {
  display: none !important;
}

.choice-check {
  display: none;
}

.choice-card.selected .choice-check,
.pattern-card.selected .choice-check {
  display: block;
}

.php-analysis-form .analysis-success {
  min-height: 380px;
  box-shadow: none;
  background: transparent;
}

.php-analysis-form .analysis-form__body {
  min-height: 420px;
}

@media (max-width: 620px) {
  .analysis-form__media {
    height: 135px;
  }

  .analysis-form__media > span {
    left: 16px;
    bottom: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans), Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  background: white;
  color: var(--navy-900);
  padding: 12px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 45, 0.96);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: white;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo {
  display: inline-flex;
  width: 190px;
  flex: 0 0 190px;
  overflow: hidden;
  align-items: center;
}

.brand-logo__mark {
  display: block;
  width: 100%;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  padding: 8px;
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--navy-800);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 20, 45, 0.18);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--large {
  min-height: 56px;
  padding-inline: 28px;
}

.button--accent {
  background: linear-gradient(135deg, #d0ad6c, #b68b45);
  color: #07142d;
  box-shadow: 0 14px 36px rgba(201, 167, 106, 0.25);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost {
  background: transparent;
  border-color: #d4d8df;
  color: var(--ink);
}

.button--ghost-dark {
  background: transparent;
  border-color: #cbd0d8;
  color: var(--navy-900);
}

.button--light {
  background: white;
  color: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 770px;
  padding: 76px 0 24px;
  color: white;
  background:
    radial-gradient(circle at 70% 45%, rgba(37, 96, 175, 0.28), transparent 30%),
    linear-gradient(118deg, #020817 0%, #071630 55%, #092757 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.25;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  background: #286bc4;
  left: -160px;
  bottom: 80px;
}

.hero__glow--two {
  width: 240px;
  height: 240px;
  background: #d3b16d;
  right: -100px;
  top: 80px;
  opacity: 0.13;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
}

.hero__content {
  padding-bottom: 36px;
}

.hero__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.section h2,
.final-cta h2,
.article-header h1,
.service-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.hero h1 em,
.section h2 em,
.final-cta h2 em,
.article-header h1 em,
.service-hero h1 em {
  font-family: var(--font-display), serif;
  font-weight: 500;
  color: var(--gold-light);
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__trust > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero__trust svg {
  width: 22px;
  color: var(--gold);
}

.hero__trust span {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.45;
}

.hero__trust strong {
  color: white;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.016), 0 0 0 120px rgba(255, 255, 255, 0.012);
}

.hero-result-card {
  position: relative;
  z-index: 2;
  width: 360px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  transform: rotate(2deg);
}

.hero-result-card__top,
.hero-result-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.hero-result-card__top {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e64b5f;
  box-shadow: 0 0 0 5px rgba(230, 75, 95, 0.12);
}

.hero-result-card__image {
  height: 400px;
  overflow: hidden;
  border-radius: 21px;
  background: var(--navy-950);
}

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

.hero-result-card__footer {
  padding-block: 14px 8px;
}

.hero-result-card__footer > div {
  display: grid;
  gap: 4px;
}

.hero-result-card__footer strong {
  font-size: 13px;
}

.hero-result-card__footer span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.hero-result-card__footer a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(10, 28, 58, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-float--rating {
  left: -20px;
  top: 145px;
}

.hero-float--location {
  right: -15px;
  bottom: 110px;
}

.hero-float svg {
  width: 21px;
  color: var(--gold-light);
}

.hero-float__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(201, 167, 106, 0.15);
}

.hero-float span:not(.hero-float__icon) {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.hero-float strong {
  color: white;
  font-size: 11px;
}

.hero__footnote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.hero__footnote a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.trust-strip {
  background: white;
  border-bottom: 1px solid #eceef2;
}

.trust-strip__grid {
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 24px;
  border-right: 1px solid #eaecf0;
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 28px;
  color: var(--gold);
}

.trust-strip span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 11px;
}

.trust-strip strong {
  color: var(--navy-900);
  font-size: 12px;
}

.section {
  padding: 115px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #926d31;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold-light);
}

.section h2,
.final-cta h2 {
  max-width: 800px;
  font-size: clamp(38px, 4.5vw, 60px);
  color: var(--navy-900);
}

.section h2 em,
.final-cta h2 em {
  color: #9b773c;
}

.about {
  background: var(--ivory);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 590px;
}

.about__frame {
  position: absolute;
  inset: 0 30px 35px 0;
  overflow: hidden;
  border-radius: 220px 220px 24px 24px;
  color: white;
  background:
    radial-gradient(circle at 70% 15%, rgba(80, 131, 201, 0.35), transparent 30%),
    linear-gradient(160deg, #0c2a58, #030915);
  box-shadow: var(--shadow);
}

.about__frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}

.about__monogram {
  position: absolute;
  right: -24px;
  top: 70px;
  font-family: var(--font-display), serif;
  font-size: 250px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
}

.about__lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-radial-gradient(circle at 20% 90%, transparent 0 28px, rgba(255, 255, 255, 0.14) 29px 30px);
}

.about__center {
  position: absolute;
  z-index: 1;
  left: 58px;
  bottom: 75px;
  display: grid;
  gap: 15px;
}

.about__center > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about__center strong {
  font-family: var(--font-display), serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
}

.about__experience {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 225px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.about__experience svg {
  color: var(--gold);
  flex-shrink: 0;
}

.about__experience div {
  display: grid;
  gap: 4px;
}

.about__experience strong {
  color: var(--navy-900);
  font-size: 13px;
}

.about__experience span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.about__content h2 {
  font-size: clamp(38px, 4.2vw, 57px);
}

.about__content > p {
  max-width: 650px;
  color: #626b79;
  font-size: 15px;
  line-height: 1.9;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding: 25px 0;
  margin: 24px 0;
  border-top: 1px solid #dedad2;
  border-bottom: 1px solid #dedad2;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.check-list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid #b8bdc5;
  padding-bottom: 6px;
}

.text-link--light {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading--split > p {
  max-width: 380px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.section-heading--center {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 65px;
}

.techniques {
  background: white;
}

.technique-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.technique-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #e3e6eb;
  border-radius: var(--radius);
  background: #fcfcfb;
}

.technique-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  border: 1px solid rgba(7, 20, 45, 0.08);
  box-shadow: 0 0 0 28px rgba(7, 20, 45, 0.025), 0 0 0 58px rgba(7, 20, 45, 0.018);
}

.technique-card--featured {
  color: white;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 0;
  box-shadow: 0 30px 65px rgba(7, 20, 45, 0.2);
}

.technique-card__number {
  position: absolute;
  right: 28px;
  top: 24px;
  font-family: var(--font-display), serif;
  color: #d8dce3;
  font-size: 48px;
}

.technique-card--featured .technique-card__number {
  color: rgba(255, 255, 255, 0.12);
}

.technique-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 17px;
  color: var(--gold);
  background: #f2ede4;
}

.technique-card--featured .technique-card__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(201, 167, 106, 0.12);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technique-card h3 {
  max-width: 260px;
  margin: 0 0 16px;
  color: var(--navy-900);
  font-size: 23px;
  line-height: 1.25;
}

.technique-card--featured h3 {
  color: white;
  font-size: 28px;
}

.technique-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.technique-card--featured p {
  color: rgba(255, 255, 255, 0.62);
}

.technique-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.technique-card li::before {
  content: "✓";
  color: var(--gold-light);
  margin-right: 8px;
}

.technique-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.technique-card--featured > a {
  color: white;
}

.technique-card > a svg {
  width: 17px;
}

.process {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, #071a38, #030817);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 130%, rgba(47, 115, 217, 0.3), transparent 42%);
}

.process .container {
  position: relative;
}

.process h2 {
  color: white;
}

.process h2 em {
  color: var(--gold-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-card {
  position: relative;
  padding: 20px 28px;
  text-align: center;
}

.process-card__number {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display), serif;
  font-size: 23px;
  background: rgba(255, 255, 255, 0.04);
}

.process-card__line {
  position: absolute;
  top: 54px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.17);
}

.process-card__line svg {
  position: absolute;
  right: -5px;
  top: -8px;
  width: 15px;
  color: rgba(255, 255, 255, 0.35);
}

.process-card h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.75;
}

.analysis-section {
  background: #f1eee8;
}

.analysis-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.analysis-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.analysis-benefits {
  display: grid;
  gap: 18px;
  margin: 32px 0;
}

.analysis-benefits > div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.analysis-benefits > div > svg {
  width: 23px;
  height: 23px;
  padding: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
}

.analysis-benefits span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
}

.analysis-benefits strong {
  color: var(--navy-900);
  font-size: 13px;
}

.analysis-callout {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 26px;
  border-top: 1px solid #d8d3cb;
}

.analysis-callout > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
}

.analysis-callout span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
}

.analysis-callout a {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
}

.analysis-form {
  overflow: hidden;
  border: 1px solid #dfe2e7;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 80px rgba(7, 20, 45, 0.13);
}

.analysis-form__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 32px 20px;
}

.analysis-form__head .eyebrow {
  margin-bottom: 7px;
  font-size: 9px;
}

.analysis-form__head h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.analysis-form__step {
  color: #a5acb8;
  font-family: var(--font-display), serif;
  font-size: 17px;
}

.progress {
  height: 3px;
  margin: 0 32px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6e8eb;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--navy-700));
  transition: width 0.35s ease;
}

.step-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 12px 32px 16px;
}

.step-labels span {
  color: #a7aeb9;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.step-labels .active {
  color: var(--navy-800);
}

.analysis-form__body {
  min-height: 400px;
  padding: 24px 32px;
  border-top: 1px solid #eceef1;
  background: #fbfbfa;
}

.analysis-form fieldset {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.analysis-form legend {
  width: 100%;
  padding: 0;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.analysis-form fieldset > p {
  margin: 7px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.choice-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.choice-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-card {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d9dde3;
  border-radius: 15px;
  background: white;
  color: var(--navy-900);
}

.choice-card.selected,
.pattern-card.selected {
  border-color: var(--navy-700);
  background: #f2f6fc;
  box-shadow: inset 0 0 0 1px var(--navy-700);
}

.choice-card > svg:last-child,
.pattern-card > svg:last-child {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
}

.choice-card--compact {
  min-height: 76px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.analysis-form select,
.analysis-form input:not([type="checkbox"]) {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d7dbe1;
  border-radius: 12px;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 13px;
}

.analysis-form select:focus,
.analysis-form input:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(16, 54, 109, 0.08);
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pattern-card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 8px;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  background: white;
  color: var(--navy-900);
}

.pattern-card > svg:first-child {
  width: 70px;
  height: 70px;
}

.pattern-card > span {
  font-size: 9px;
  font-weight: 700;
}

.input-with-icon {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.input-with-icon > svg {
  position: absolute;
  left: 15px;
  top: 16px;
  color: #9aa1ac;
}

.input-with-icon input:not([type="checkbox"]) {
  padding-left: 47px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--navy-800);
}

.consent a {
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: underline;
}

.form-error {
  color: #b42318 !important;
}

.analysis-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 15px 32px;
  border-top: 1px solid #e8eaed;
}

.analysis-success {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.analysis-success > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e9f8f1;
  color: var(--green);
}

.analysis-success h3 {
  max-width: 450px;
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 30px;
}

.analysis-success > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.results {
  background: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.instagram-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  background: var(--navy-900);
}

.instagram-card--image {
  grid-row: span 2;
  aspect-ratio: auto;
}

.instagram-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-card:hover > img {
  transform: scale(1.03);
}

.instagram-card__art {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(82, 139, 216, 0.45), transparent 32%),
    linear-gradient(145deg, #0e2f62, #030817);
}

.instagram-card--hospital .instagram-card__art {
  background: linear-gradient(145deg, #183f64, #07162e);
}

.instagram-card--natural .instagram-card__art {
  background: linear-gradient(145deg, #4e4739, #15120d);
}

.instagram-card--analysis .instagram-card__art {
  background: linear-gradient(145deg, #18486c, #07162e);
}

.instagram-card--location .instagram-card__art {
  background: linear-gradient(145deg, #133f57, #061a25);
}

.instagram-card__art::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  top: -65px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.025), 0 0 0 52px rgba(255, 255, 255, 0.02);
}

.instagram-card__art > svg {
  margin-bottom: auto;
  color: var(--gold-light);
}

.instagram-card__eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.instagram-card__art strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.instagram-card__art > span:last-child {
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  line-height: 1.5;
}

.instagram-card__hover {
  position: absolute;
  inset: auto 10px 10px 10px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 11px;
  color: white;
  background: rgba(3, 8, 23, 0.82);
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(12px);
}

.instagram-card__hover svg:last-child {
  margin-left: auto;
}

.instagram-card:hover .instagram-card__hover {
  opacity: 1;
  transform: translateY(0);
}

.medical-note {
  margin: 18px 0 0;
  color: #89909a;
  font-size: 9px;
  text-align: center;
}

.local-seo {
  padding: 0;
  color: white;
  background: var(--navy-900);
}

.local-seo__grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.local-seo__map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(25deg, transparent 48%, rgba(255, 255, 255, 0.11) 49% 50%, transparent 51%) 0 0 / 160px 130px,
    linear-gradient(-20deg, transparent 48%, rgba(255, 255, 255, 0.08) 49% 50%, transparent 51%) 0 0 / 200px 140px,
    #e3dfd5;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(#c5c1b8 1px, transparent 1px), linear-gradient(90deg, #c5c1b8 1px, transparent 1px);
  background-size: 80px 80px;
}

.local-seo__map::before,
.local-seo__map::after {
  content: "";
  position: absolute;
  background: #b9cdd2;
}

.local-seo__map::before {
  width: 140%;
  height: 45px;
  left: -20%;
  top: 45%;
  transform: rotate(-16deg);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.local-seo__map::after {
  width: 34px;
  height: 140%;
  left: 60%;
  top: -20%;
  transform: rotate(24deg);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.5);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 45%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 13px;
  color: white;
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(7, 20, 45, 0.28);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  color: var(--gold-light);
}

.map-pin span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
}

.map-label {
  position: absolute;
  z-index: 2;
  color: #657178;
  font-size: 10px;
  font-weight: 800;
}

.map-label--one {
  left: 15%;
  top: 25%;
}

.map-label--two {
  right: 9%;
  top: 67%;
}

.map-label--three {
  left: 18%;
  bottom: 18%;
}

.local-seo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 85px max(7vw, 60px);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 115, 217, 0.2), transparent 35%),
    var(--navy-900);
}

.local-seo__content h2 {
  color: white;
}

.local-seo__content h2 em {
  color: var(--gold-light);
}

.local-seo__content > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  line-height: 1.8;
}

.address-card {
  display: flex;
  gap: 16px;
  margin: 24px 0 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.address-card > svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.address-card div {
  display: grid;
  gap: 5px;
}

.address-card span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.address-card strong {
  font-size: 14px;
}

.address-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.6;
}

.local-seo__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-preview {
  background: var(--ivory);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #e2ded7;
  border-radius: 20px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(7, 20, 45, 0.11);
}

.blog-card__visual {
  position: relative;
  height: 190px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(95, 150, 221, 0.5), transparent 35%),
    linear-gradient(145deg, #0e336b, #06132b);
}

.blog-card--2 .blog-card__visual {
  background: linear-gradient(145deg, #124e6c, #061722);
}

.blog-card--3 .blog-card__visual {
  background: linear-gradient(145deg, #5a4a31, #17120b);
}

.blog-card__visual::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -40px;
  top: -55px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.03), 0 0 0 50px rgba(255, 255, 255, 0.02);
}

.blog-card__visual span {
  font-family: var(--font-display), serif;
  color: rgba(255, 255, 255, 0.34);
  font-size: 45px;
}

.blog-card__visual svg {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
}

.blog-card__body {
  padding: 25px;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  color: #8a9099;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-card h3 {
  min-height: 76px;
  margin: 14px 0 12px;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.4;
}

.blog-card p {
  min-height: 62px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
}

.blog-card__link svg {
  width: 15px;
}

.faq {
  background: white;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq__intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.faq__intro > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq__intro .button {
  margin-top: 16px;
}

.faq__list {
  border-top: 1px solid #dfe2e7;
}

.faq details {
  border-bottom: 1px solid #dfe2e7;
}

.faq summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #d9dde3;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
  background: var(--navy-900);
  color: white;
}

.faq details p {
  margin: -4px 45px 25px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.final-cta {
  padding: 80px 0;
  color: white;
  background:
    radial-gradient(circle at 75% 0%, rgba(55, 112, 189, 0.34), transparent 33%),
    linear-gradient(135deg, #0d3268, #030817);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 690px;
  color: white;
}

.final-cta h2 em {
  color: var(--gold-light);
}

.final-cta__actions {
  display: grid;
  gap: 18px;
  justify-items: center;
  flex-shrink: 0;
}

.final-cta__actions > a:last-child {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 75px 0 25px;
  color: white;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 1.1fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand .brand-logo {
  width: 210px;
  margin-bottom: 20px;
}

.footer-brand > p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.8;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.site-footer h3 {
  margin: 8px 0 22px;
  color: white;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact > a {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.footer-contact > a > svg {
  width: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-light);
}

.footer-contact span {
  display: grid;
  gap: 4px;
}

.footer-contact small {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.floating-actions {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.floating-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.floating-actions__phone {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
}

.floating-actions__whatsapp {
  min-height: 49px;
  gap: 9px;
  padding: 0 17px;
  border-radius: 999px;
  background: #19a968;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

/* İç sayfalar */
.inner-hero,
.article-header,
.service-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: white;
  background:
    radial-gradient(circle at 75% 10%, rgba(47, 115, 217, 0.35), transparent 30%),
    linear-gradient(135deg, #081c3d, #030817);
}

.inner-hero::after,
.article-header::after,
.service-hero::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.02), 0 0 0 120px rgba(255, 255, 255, 0.014);
}

.inner-hero .container,
.article-header .container,
.service-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.inner-hero h1,
.article-header h1,
.service-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 68px);
}

.inner-hero p,
.article-header p,
.service-hero p {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
}

.article-header__meta {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  padding: 90px 0;
}

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

.article-content section {
  margin-bottom: 48px;
}

.article-content h2 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: 29px;
  letter-spacing: -0.03em;
}

.article-content p,
.legal-content p {
  color: #5d6673;
  font-size: 15px;
  line-height: 1.95;
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding: 22px 25px 22px 45px;
  border-radius: 15px;
  background: var(--ivory);
  color: #4f5865;
  font-size: 13px;
  line-height: 1.7;
}

.article-sidebar {
  align-self: start;
  position: sticky;
  top: 135px;
}

.sidebar-card {
  padding: 26px;
  border-radius: 20px;
  background: var(--navy-900);
  color: white;
}

.sidebar-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  line-height: 1.7;
}

.sidebar-card .button {
  width: 100%;
  margin-top: 12px;
}

.all-posts {
  padding: 90px 0 120px;
  background: var(--ivory);
}

.all-posts .blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.all-posts .blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.all-posts .blog-card__visual {
  height: auto;
  min-height: 260px;
}

.all-posts .blog-card h3,
.all-posts .blog-card p {
  min-height: 0;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.service-hero__card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.service-hero__card span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero__card strong {
  display: block;
  margin: 10px 0 18px;
  font-family: var(--font-display), serif;
  font-size: 32px;
}

.service-content {
  padding: 100px 0;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-content h2 {
  margin: 0 0 20px;
  color: var(--navy-900);
  font-size: 43px;
  letter-spacing: -0.045em;
}

.service-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-box {
  min-height: 170px;
  padding: 24px;
  border: 1px solid #e2e5e9;
  border-radius: 17px;
  background: #fbfbfa;
}

.feature-box svg {
  color: var(--gold);
}

.feature-box h3 {
  margin: 20px 0 8px;
  color: var(--navy-900);
  font-size: 15px;
}

.feature-box p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.legal-content {
  max-width: 820px;
  padding: 80px 0 110px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  color: var(--navy-900);
  font-size: 27px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero-float--rating {
    left: -10px;
  }

  .hero-float--location {
    right: -5px;
  }

  .about__grid,
  .analysis-section__grid,
  .faq__grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: var(--navy-900);
    transition: grid-template-rows 0.3s ease;
  }

  .mobile-menu > nav {
    min-height: 0;
    overflow: hidden;
    display: grid;
  }

  .mobile-menu--open {
    grid-template-rows: 1fr;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
  }

  .mobile-menu .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid,
  .about__grid,
  .analysis-section__grid,
  .faq__grid,
  .service-content__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__badge {
    margin-inline: auto;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    max-width: 650px;
    margin-inline: auto;
    text-align: left;
  }

  .hero__visual {
    min-height: 610px;
  }

  .hero__footnote {
    margin-top: 20px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 18px;
  }

  .trust-strip__grid > div {
    min-height: 70px;
    border-bottom: 1px solid #eaecf0;
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(3),
  .trust-strip__grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .about__visual {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .technique-grid {
    grid-template-columns: 1fr 1fr;
  }

  .technique-card--featured {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .process-card__line {
    display: none;
  }

  .analysis-copy {
    max-width: 680px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-seo__grid {
    grid-template-columns: 1fr;
  }

  .local-seo__map {
    min-height: 420px;
    order: 2;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    display: grid;
    grid-template-columns: 240px 1fr;
  }

  .blog-card__visual {
    height: auto;
  }

  .blog-card h3,
  .blog-card p {
    min-height: 0;
  }

  .faq__intro {
    position: static;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__actions {
    justify-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .service-hero__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__card {
    max-width: 450px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topline__inner {
    justify-content: center;
  }

  .topline__inner > span {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .brand-logo {
    width: 165px;
    flex-basis: 165px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 44px;
    overflow-wrap: anywhere;
  }

  .hero h1 em {
    display: block;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .hero__visual {
    min-height: 550px;
  }

  .hero__visual::before {
    width: 340px;
    height: 340px;
  }

  .hero-result-card {
    width: min(330px, 88vw);
  }

  .hero-result-card__image {
    height: 370px;
  }

  .hero-float--rating {
    left: -2px;
    top: 90px;
  }

  .hero-float--location {
    right: -2px;
    bottom: 85px;
  }

  .hero-float {
    padding: 10px 11px;
  }

  .hero-float__icon {
    width: 31px;
    height: 31px;
  }

  .hero__footnote span {
    max-width: 220px;
  }

  .hero__footnote a {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:nth-child(3) {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid #eaecf0;
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .about__grid {
    gap: 45px;
  }

  .about__visual {
    min-height: 460px;
  }

  .about__frame {
    inset: 0 12px 30px 0;
    border-radius: 160px 160px 20px 20px;
  }

  .about__center {
    left: 35px;
    bottom: 58px;
  }

  .about__center strong {
    font-size: 34px;
  }

  .about__experience {
    width: 210px;
    padding: 18px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 38px;
  }

  .technique-grid {
    grid-template-columns: 1fr;
  }

  .technique-card--featured {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .analysis-section__grid {
    gap: 45px;
  }

  .analysis-form__head,
  .analysis-form__body,
  .analysis-form__actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .progress {
    margin-inline: 20px;
  }

  .step-labels {
    padding-inline: 20px;
  }

  .pattern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .analysis-form__actions .button {
    padding-inline: 15px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-card--image {
    aspect-ratio: 4 / 5;
    grid-row: auto;
  }

  .local-seo__content {
    padding: 70px 24px;
  }

  .local-seo__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card,
  .all-posts .blog-card {
    display: block;
  }

  .blog-card__visual,
  .all-posts .blog-card__visual {
    height: 180px;
    min-height: 0;
  }

  .faq__grid {
    gap: 55px;
  }

  .final-cta {
    padding: 65px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions__whatsapp span {
    display: none;
  }

  .floating-actions__whatsapp {
    width: 49px;
    padding: 0;
    border-radius: 50%;
  }

  .inner-hero,
  .article-header,
  .service-hero {
    padding: 65px 0;
  }

  .article-layout {
    padding: 65px 0;
  }

  .article-content h2 {
    font-size: 25px;
  }

  .article-content p,
  .legal-content p {
    font-size: 14px;
  }

  .all-posts {
    padding: 65px 0 85px;
  }

  .all-posts .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-content__grid {
    gap: 45px;
  }

  .feature-boxes {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Yönetim paneli */
.admin-shell {
  min-height: 75vh;
  background: #f3f5f8;
}

body:has(.admin-shell) .site-header,
body:has(.admin-shell) .site-footer,
body:has(.admin-shell) .floating-actions {
  display: none;
}

body:has(.admin-shell) .admin-sidebar {
  top: 0;
  height: 100vh;
}

.admin-login {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 50px 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 115, 217, 0.24), transparent 28%),
    linear-gradient(145deg, #081c3d, #030817);
}

.admin-login__card {
  width: min(440px, 100%);
  padding: 42px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.admin-login__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 15px;
  background: var(--navy-900);
  color: var(--gold-light);
}

.admin-login__card > p {
  margin: 0 0 6px;
  color: #8b6b36;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admin-login__card h1 {
  margin: 0 0 28px;
  color: var(--navy-900);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.admin-login__card > label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
}

.admin-login__card label > div {
  position: relative;
}

.admin-login__card label svg {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 19px;
  color: #939ba7;
}

.admin-login__card input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 44px;
  border: 1px solid #d9dde3;
  border-radius: 11px;
  outline: 0;
}

.admin-login__card input:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(16, 54, 109, 0.08);
}

.admin-login__card .button {
  width: 100%;
  margin-top: 12px;
}

.admin-error,
.admin-message {
  padding: 12px 15px;
  border-radius: 10px;
  color: #9b2c22;
  background: #fff0ee;
  font-size: 11px;
}

.telegram-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.telegram-status--ready {
  color: #166534;
  background: #eaf8ef;
}

.telegram-status--warning {
  color: #92400e;
  background: #fff7e6;
}

.telegram-status code {
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,.65);
}

.admin-dashboard {
  min-height: 780px;
  display: grid;
  grid-template-columns: 230px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  padding: 28px 18px;
  color: white;
  background: var(--navy-950);
}

.admin-sidebar > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.admin-sidebar > div span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-family: var(--font-display), serif;
  font-weight: 800;
}

.admin-sidebar > div strong {
  font-size: 13px;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 25px;
}

.admin-sidebar button {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.54);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.admin-sidebar nav a,
.admin-sidebar .admin-logout {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
}

.admin-sidebar nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar nav a svg,
.admin-sidebar .admin-logout svg {
  width: 18px;
}

.admin-sidebar nav a em {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 9px;
  font-style: normal;
}

.admin-sidebar .admin-logout {
  margin-top: auto;
  color: #ffaaa3;
}

.admin-post-card select,
.admin-post-card input[type="file"] {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #dce0e5;
  border-radius: 9px;
  color: var(--ink);
  background: #fbfbfa;
  font-size: 11px;
}

/* CE form ritmine uygun ücretsiz saç analizi */
.php-analysis-form {
  --form-red: #ef3b30;
  max-width: 650px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(7, 20, 45, .12);
  background: #fff;
}

.php-analysis-form .analysis-form__head {
  display: block;
  padding: 28px 24px 14px;
  text-align: center;
}

.php-analysis-form .analysis-form__head h3 {
  color: var(--form-red);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.form-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 36px 22px;
}

.form-stepper[hidden] {
  display: none !important;
}

.form-stepper__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #171717;
}

.form-stepper__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 15px;
  left: calc(50% + 15px);
  width: calc(100% - 30px);
  height: 3px;
  background: #ddd;
}

.form-stepper__item:last-child::after {
  display: none;
}

.form-stepper__item span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #444;
  background: #ddd;
  font-size: 15px;
}

.form-stepper__item strong {
  font-size: 15px;
  font-weight: 500;
}

.form-stepper__item.active span,
.form-stepper__item.completed::after {
  color: #fff;
  background: var(--form-red);
}

.php-analysis-form .analysis-form__body {
  min-height: 445px;
  padding: 16px 30px 22px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.php-analysis-form .analysis-form__body legend {
  margin-bottom: 17px;
  color: #083a50;
  font-size: 20px;
  font-weight: 800;
}

.php-analysis-form .analysis-form__body fieldset > p {
  color: #667085;
}

.pattern-grid--clinical {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 44px;
  max-width: 535px;
  margin: 0 auto;
}

.pattern-grid--clinical .pattern-card {
  width: 148px;
  height: 150px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  background: #fff;
}

.pattern-grid--clinical .pattern-card > svg:first-child {
  width: 100%;
  height: 100%;
}

.pattern-grid--clinical .pattern-card:hover {
  border-color: #a8a8a8;
}

.pattern-grid--clinical .pattern-card.selected {
  border-color: var(--form-red);
  box-shadow: inset 0 0 0 3px var(--form-red);
  background: #fff;
}

.pattern-grid--clinical .choice-check {
  top: 8px;
  right: 8px;
  background: var(--form-red);
}

.php-analysis-form .analysis-form__actions {
  min-height: 78px;
  padding: 10px 30px 24px;
  border-top: 0;
  background: #fff;
}

.php-analysis-form .analysis-form__actions .button {
  min-width: 150px;
  min-height: 60px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--form-red);
  font-size: 17px;
  font-weight: 800;
}

.php-analysis-form .analysis-form__actions .button--ghost {
  color: #fff;
  background: var(--form-red);
}

.php-analysis-form .analysis-form__actions .button:disabled {
  opacity: .68;
}

.php-analysis-form .choice-card.selected {
  border-color: var(--form-red);
  background: #fff7f6;
  box-shadow: inset 0 0 0 1px var(--form-red);
}

.php-analysis-form .choice-card > svg:last-child {
  background: var(--form-red);
}

.php-analysis-form select:focus,
.php-analysis-form input:focus {
  border-color: var(--form-red);
  box-shadow: 0 0 0 3px rgba(239, 59, 48, .10);
}

.php-analysis-form .consent input {
  accent-color: var(--form-red);
}

@media (max-width: 700px) {
  .php-analysis-form .analysis-form__head h3 {
    font-size: 29px;
  }

  .form-stepper {
    padding-inline: 14px;
  }

  .form-stepper__item strong {
    font-size: 12px;
  }

  .php-analysis-form .analysis-form__body {
    padding-inline: 16px;
  }

  .pattern-grid--clinical {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pattern-grid--clinical .pattern-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .php-analysis-form .analysis-form__actions {
    padding-inline: 16px;
  }

  .php-analysis-form .analysis-form__actions .button {
    min-width: 125px;
    min-height: 54px;
  }
}

.admin-sidebar button.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar button svg {
  width: 18px;
}

.admin-sidebar button em {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 9px;
  font-style: normal;
}

.admin-sidebar .admin-logout {
  margin-top: auto;
  color: #ffaaa3;
}

.admin-main {
  min-width: 0;
  padding: 40px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.admin-topbar > div:first-child > span {
  color: #8b6b36;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 5px 0 0;
  color: var(--navy-900);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.admin-topbar > div:last-child {
  display: flex;
  gap: 10px;
}

.admin-message {
  margin-bottom: 20px;
  color: #166534;
  background: #eaf8ef;
}

.admin-posts {
  display: grid;
  gap: 16px;
}

.admin-post-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px;
  border: 1px solid #e0e4e9;
  border-radius: 18px;
  background: white;
}

.admin-post-card__preview {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  color: var(--gold-light);
  background: linear-gradient(145deg, #123a73, #040b1a);
  font-family: var(--font-display), serif;
  font-size: 35px;
}

.admin-post-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-post-card__fields {
  min-width: 0;
  display: grid;
  gap: 11px;
}

.admin-post-card label {
  display: grid;
  gap: 5px;
  color: #657080;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-post-card input,
.admin-post-card textarea {
  width: 100%;
  border: 1px solid #dce0e5;
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: #fbfbfa;
  font-size: 12px;
}

.admin-post-card input {
  height: 40px;
  padding: 0 12px;
}

.admin-post-card textarea {
  min-height: 64px;
  resize: vertical;
  padding: 10px 12px;
}

.admin-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-post-card__actions {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 4px;
}

.admin-post-card__actions a,
.admin-post-card__actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: #637083;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.admin-post-card__actions button {
  color: #b42318;
}

.admin-post-card__actions svg {
  width: 15px;
}

.admin-toggle {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
  margin-right: auto;
  color: var(--navy-900) !important;
  text-transform: none !important;
}

.admin-toggle input {
  display: none;
}

.admin-toggle > span {
  position: relative;
  width: 33px;
  height: 19px;
  border-radius: 999px;
  background: #d2d6dc;
  transition: background 0.2s ease;
}

.admin-toggle > span::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s ease;
}

.admin-toggle input:checked + span {
  background: var(--green);
}

.admin-toggle input:checked + span::after {
  transform: translateX(14px);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #e0e4e9;
  border-radius: 17px;
  background: white;
}

.admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 16px;
  border-bottom: 1px solid #e8ebef;
  text-align: left;
  white-space: nowrap;
}

.admin-table-wrap th {
  color: #7b8491;
  background: #f8f9fa;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table-wrap td {
  color: #505968;
}

.admin-table-wrap td strong,
.admin-table-wrap td small {
  display: block;
}

.admin-table-wrap td strong {
  color: var(--navy-900);
}

.admin-table-wrap td small {
  margin-top: 3px;
  color: #929aa5;
}

.admin-table-wrap td a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy-700);
  font-weight: 800;
}

.admin-table-wrap td a svg {
  width: 14px;
}

.lead-status {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  color: #166534;
  background: #e8f8ee;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-empty {
  min-height: 400px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px dashed #ccd2da;
  border-radius: 18px;
  background: white;
}

.admin-empty > svg {
  width: 48px;
  height: 48px;
  color: #a5acb6;
}

.admin-empty h2 {
  margin: 15px 0 7px;
  color: var(--navy-900);
  font-size: 20px;
}

.admin-empty p {
  margin: 0;
  color: #7d8693;
  font-size: 11px;
}

@media (max-width: 850px) {
  .admin-dashboard {
    display: block;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }

  .admin-sidebar > div {
    padding: 0 20px 0 0;
    border: 0;
  }

  .admin-sidebar nav {
    display: flex;
    margin: 0 0 0 auto;
  }

  .admin-sidebar .admin-logout {
    margin: 0 0 0 10px;
  }

  .admin-main {
    padding: 25px 18px;
  }

  .admin-post-card {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 600px) {
  .admin-sidebar > div strong {
    display: none;
  }

  .admin-sidebar nav button {
    font-size: 0;
  }

  .admin-sidebar nav button em {
    font-size: 8px;
  }

  .admin-sidebar .admin-logout {
    font-size: 0;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-post-card {
    grid-template-columns: 1fr;
  }

  .admin-post-card__preview {
    max-width: 150px;
  }

  .admin-fields-row {
    grid-template-columns: 1fr;
  }
}

/* Multi-page kurumsal sayfalar */
.services-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-list .technique-card {
  min-height: 360px;
}

.about-page {
  background: var(--paper);
}

.page-results {
  background: var(--ivory);
}

.instagram-grid--page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-page {
  padding-block: 100px 120px;
  background: var(--paper);
}

.contact-page {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: 70px;
  align-items: start;
}

.contact-page__info h2 {
  max-width: 640px;
  margin: 12px 0 18px;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.05em;
}

.contact-page__info > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.contact-card {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e0e4e9;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 32px rgba(7, 20, 45, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.contact-card > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--navy-700);
}

.contact-card span,
.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  margin-bottom: 5px;
  color: #8a93a0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.6;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-map {
  min-height: 315px;
  border-radius: 22px;
}

.contact-page__form {
  position: sticky;
  top: 135px;
}

/* Genişletilmiş yönetim paneli */
.admin-sidebar .admin-site-link {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.admin-sidebar .admin-site-link svg {
  width: 18px;
}

.admin-sidebar .admin-logout {
  margin-top: 5px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.admin-stats article {
  min-height: 155px;
  padding: 22px;
  border: 1px solid #e0e4e9;
  border-radius: 18px;
  background: white;
}

.admin-stats article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 11px;
  color: var(--navy-700);
  background: #eef4ff;
}

.admin-stats article > span svg {
  width: 19px;
}

.admin-stats strong {
  display: block;
  color: var(--navy-900);
  font-size: 27px;
}

.admin-stats p {
  margin: 4px 0 0;
  color: #818a97;
  font-size: 10px;
  font-weight: 700;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.admin-panel {
  padding: 27px;
  border: 1px solid #e0e4e9;
  border-radius: 18px;
  background: white;
}

.admin-panel h2 {
  margin: 7px 0 20px;
  color: var(--navy-900);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.admin-panel__heading {
  margin-bottom: 8px;
}

.admin-panel__heading p {
  margin: 8px 0 0;
  color: #7c8592;
  font-size: 11px;
  line-height: 1.7;
}

.admin-quick-links {
  display: grid;
  gap: 8px;
}

.admin-quick-links > a {
  display: grid;
  grid-template-columns: 37px 1fr 18px;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid #e7e9ed;
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-quick-links > a:hover {
  border-color: #bdcde4;
  background: #f8fbff;
}

.admin-quick-links > a > svg:first-child {
  width: 37px;
  height: 37px;
  padding: 9px;
  border-radius: 10px;
  color: var(--navy-700);
  background: #edf3fc;
}

.admin-quick-links span,
.admin-quick-links strong,
.admin-quick-links small {
  display: block;
}

.admin-quick-links strong {
  color: var(--navy-900);
  font-size: 11px;
}

.admin-quick-links small {
  margin-top: 4px;
  color: #8a929e;
  font-size: 9px;
  line-height: 1.5;
}

.admin-quick-links > a > svg:last-child {
  color: #a6adb7;
}

.admin-system-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.admin-system-list > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.admin-system-list > div > svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--green);
}

.admin-system-list span,
.admin-system-list strong,
.admin-system-list small {
  display: block;
}

.admin-system-list strong {
  color: var(--navy-900);
  font-size: 10px;
}

.admin-system-list small {
  margin-top: 3px;
  color: #8a929e;
  font-size: 9px;
  line-height: 1.5;
}

.admin-content-form,
.admin-dynamic-list {
  display: grid;
  gap: 15px;
}

.admin-content-form label,
.admin-editor-card label,
.admin-form-grid label {
  display: grid;
  gap: 7px;
  color: #657080;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-content-form label small,
.admin-editor-card label small {
  color: #9aa1aa;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.admin-content-form input,
.admin-content-form textarea,
.admin-content-form select,
.lead-action-form select {
  width: 100%;
  border: 1px solid #dce0e5;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fbfbfa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.admin-content-form input,
.admin-content-form select {
  height: 44px;
  padding: 0 13px;
}

.admin-content-form textarea {
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.65;
}

.admin-content-form input:focus,
.admin-content-form textarea:focus,
.admin-content-form select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 115, 217, 0.08);
}

.admin-form-grid {
  display: grid;
  gap: 15px;
}

.admin-editor-card {
  overflow: hidden;
  border: 1px solid #e0e4e9;
  border-radius: 16px;
  background: white;
}

.admin-editor-card > summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  list-style: none;
  color: var(--navy-900);
  background: white;
}

.admin-editor-card > summary::-webkit-details-marker {
  display: none;
}

.admin-editor-card > summary > span,
.admin-editor-card__bar > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-editor-card > summary > span > svg,
.admin-editor-card__bar > span > svg {
  width: 18px;
  color: var(--navy-700);
}

.admin-editor-card > summary strong,
.admin-editor-card__bar strong {
  font-size: 12px;
}

.admin-editor-card > summary small {
  color: #929aa5;
  font-size: 9px;
}

.admin-editor-card > summary > svg {
  width: 18px;
  color: #8f98a5;
  transition: transform 0.2s ease;
}

.admin-editor-card[open] > summary > svg {
  transform: rotate(180deg);
}

.admin-editor-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid #eceef1;
  background: #fcfcfb;
}

.admin-subheading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e7e9ed;
}

.admin-subheading strong {
  color: var(--navy-900);
  font-size: 11px;
}

.admin-subheading span {
  color: #929aa5;
  font-size: 9px;
}

.admin-editor-card__bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
}

.admin-editor-card__bar button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: #b42318;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.admin-editor-card__bar button svg {
  width: 15px;
}

.admin-fields-row--four {
  grid-template-columns: 1.3fr 0.8fr 0.7fr 0.7fr;
}

.admin-blog-body {
  min-height: 320px;
  font-family: Consolas, "Courier New", monospace !important;
  font-size: 11px !important;
}

.lead-action-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-action-form select {
  min-width: 105px;
  height: 35px;
  padding: 0 8px;
  font-size: 10px;
}

.lead-action-form button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--navy-700);
}

.lead-action-form button svg {
  width: 15px;
}

.lead-action-form .lead-delete {
  background: #b42318;
}

.admin-whatsapp-link {
  margin-top: 5px;
  color: var(--green) !important;
  font-size: 8px !important;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .contact-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services-list,
  .instagram-grid--page,
  .contact-page__grid,
  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__form {
    position: static;
  }

  .admin-sidebar .admin-site-link {
    margin: 0 0 0 10px;
    white-space: nowrap;
  }

  .admin-sidebar .admin-logout {
    margin: 0 0 0 5px;
  }

  body:has(.admin-shell) .admin-sidebar {
    position: static;
    top: auto;
    height: auto;
    min-height: 76px;
  }
}

@media (max-width: 700px) {
  .contact-cards,
  .admin-stats,
  .admin-fields-row--four {
    grid-template-columns: 1fr;
  }

  .contact-card--wide {
    grid-column: auto;
  }

  .contact-page {
    padding-top: 70px;
  }

  .services-list .technique-card {
    min-height: 0;
  }

  .admin-editor-card__body {
    padding: 15px;
  }

  .admin-sidebar .admin-site-link {
    font-size: 0;
  }
}

/* 2026 form ve medya iyileştirmeleri */
.choice-card--gender {
  min-height: 154px;
  align-content: center;
  gap: 7px;
  text-align: center;
}

.choice-card--gender > img {
  width: 58px;
  height: 58px;
  margin: 0 auto 3px;
  object-fit: contain;
}

.choice-card--gender > span:not(.choice-check) {
  color: #7a8490;
  font-size: 10px;
  line-height: 1.4;
}

.pattern-help {
  max-width: 540px;
  margin: -7px auto 18px;
  text-align: center;
}

.pattern-grid--clinical {
  gap: 14px;
  max-width: 600px;
}

.pattern-grid--clinical .pattern-card {
  width: 100%;
  height: auto;
  min-height: 185px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 14px;
  background: #fbfcfd;
}

.pattern-grid--clinical .pattern-card > img {
  width: 100%;
  min-height: 140px;
  height: 140px;
  padding: 7px 7px 0;
  object-fit: contain;
}

.pattern-grid--clinical .pattern-card > span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 5px;
  border-top: 1px solid #e8ebee;
  color: #27364a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.pattern-grid--clinical .pattern-card.selected > span {
  color: var(--form-red);
  border-color: rgba(239, 59, 48, .22);
}

@media (max-width: 700px) {
  .choice-card--gender {
    min-height: 132px;
  }

  .pattern-grid--clinical .pattern-card {
    min-height: 160px;
  }

  .pattern-grid--clinical .pattern-card > img {
    min-height: 118px;
    height: 118px;
  }
}

/* Görsel hizmetler */
.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.visual-service-card {
  overflow: hidden;
  border: 1px solid #e1e6ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 20, 45, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.visual-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(7, 20, 45, .12);
}

.visual-service-card > a {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.visual-service-card img,
.technique-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.visual-service-card:hover img,
.technique-card:hover .technique-card__image img {
  transform: scale(1.04);
}

.visual-service-card > div {
  padding: 21px;
}

.visual-service-card span {
  color: #96723a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-service-card h3 {
  margin: 8px 0 10px;
  color: var(--navy-900);
  font-size: 21px;
}

.visual-service-card p {
  min-height: 88px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.visual-service-card > div > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
}

.technique-card__image {
  height: 195px;
  display: block;
  overflow: hidden;
  margin: -31px -31px 24px;
  border-radius: 19px 19px 0 0;
}

.services-list .technique-card {
  overflow: hidden;
}

.service-hero__card--visual {
  padding: 0;
  overflow: hidden;
}

.service-hero__card--visual > img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.service-hero__card--visual > div {
  padding: 26px;
}

/* Instagram resmi profil embed alanı */
.instagram-live,
.instagram-profile-embed {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, 1.25fr);
  gap: 32px;
  align-items: center;
  margin-top: 38px;
  padding: 30px;
  border: 1px solid #e3e7ed;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f6f8fb);
}

.instagram-profile-embed {
  margin: 0 0 45px;
}

.instagram-live__copy h3,
.instagram-profile-embed h2 {
  margin: 8px 0 10px;
  color: var(--navy-900);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.04em;
}

.instagram-live__copy p,
.instagram-profile-embed p {
  color: var(--muted);
  line-height: 1.8;
}

.instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Profesyonel blog arşivi */
.blog-search {
  max-width: 690px;
  height: 58px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 7px 0 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}

.blog-search > svg {
  color: #f2d7aa;
}

.blog-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
}

.blog-search input::placeholder {
  color: rgba(255,255,255,.65);
}

.blog-search button {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.blog-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 30px;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.blog-categories a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid #dfe4ea;
  border-radius: 999px;
  color: #637083;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}

.blog-categories a.active,
.blog-categories a:hover {
  color: #fff;
  border-color: var(--navy-700);
  background: var(--navy-700);
}

.blog-grid--professional {
  align-items: stretch;
}

.blog-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__visual:has(img)::after {
  background: linear-gradient(180deg, transparent 45%, rgba(4,11,26,.45));
}

.blog-card__body > small {
  display: block;
  margin: -5px 0 14px;
  color: #9aa1aa;
  font-size: 8px;
}

.blog-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  border: 1px dashed #ccd2da;
  border-radius: 22px;
  background: #fff;
}

.blog-empty h2 {
  color: var(--navy-900);
}

/* Makale okuma deneyimi */
.article-header__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-cover {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(7,20,45,.10);
}

.article-cover img {
  width: 100%;
  max-height: 540px;
  display: block;
  object-fit: cover;
}

.article-lead {
  margin-bottom: 36px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  color: #344054;
  background: #f8f4ed;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.article-content > h2,
.article-content > h3 {
  scroll-margin-top: 130px;
  color: var(--navy-900);
  letter-spacing: -.035em;
}

.article-content > h2 {
  margin: 43px 0 15px;
  font-size: 29px;
}

.article-content > h3 {
  margin: 30px 0 12px;
  font-size: 21px;
}

.article-content > p,
.article-content > ul,
.article-content > ol {
  color: #4f5d6d;
  font-size: 14px;
  line-height: 1.95;
}

.article-content a {
  color: #174f96;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  color: var(--navy-800);
  background: #f7f8fa;
  font-weight: 700;
  line-height: 1.75;
}

.article-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eef1f5;
}

.article-media {
  margin: 34px 0;
}

.article-media img {
  width: 100%;
  border-radius: 18px;
}

.article-media figcaption {
  margin-top: 8px;
  color: #8d96a2;
  font-size: 9px;
  text-align: center;
}

.article-medical-note {
  margin: 45px 0 25px;
  padding: 22px;
  border: 1px solid #e1d3b9;
  border-radius: 16px;
  background: #fffaf1;
}

.article-medical-note strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #765524;
}

.article-medical-note p {
  margin: 8px 0 0;
  color: #6d624f;
  font-size: 11px;
  line-height: 1.8;
}

.article-author {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: center;
  padding: 25px;
  border: 1px solid #e2e6eb;
  border-radius: 18px;
  background: #fff;
}

.article-author img {
  width: 100%;
  height: auto;
}

.article-author span,
.article-author strong,
.article-author small {
  display: block;
}

.article-author span {
  color: #987038;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-author strong {
  margin: 5px 0;
  color: var(--navy-900);
}

.article-author p,
.article-author small {
  color: #7d8693;
  font-size: 9px;
  line-height: 1.65;
}

.article-toc {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid #e1e5ea;
  border-radius: 16px;
  background: #fff;
}

.article-toc strong {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 12px;
}

.article-toc a {
  padding: 7px 0;
  color: #667386;
  font-size: 9px;
  line-height: 1.45;
}

.article-toc a.sub {
  padding-left: 13px;
}

.article-toc a:hover {
  color: var(--navy-700);
}

.related-posts {
  background: #f6f7f9;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-posts__grid article {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7,20,45,.07);
}

.related-posts__grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.related-posts__grid span,
.related-posts__grid h3,
.related-posts__grid small {
  display: block;
  margin-inline: 20px;
}

.related-posts__grid span {
  margin-top: 17px;
  color: #976f35;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-posts__grid h3 {
  margin-top: 7px;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.45;
}

.related-posts__grid small {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #8c95a1;
  font-size: 8px;
}

/* Admin blog editörü */
.admin-blog-guide {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #cdddf2;
  border-radius: 14px;
  color: #365577;
  background: #f0f6ff;
  font-size: 10px;
  line-height: 1.7;
}

.admin-blog-guide > svg {
  width: 18px;
  flex: 0 0 auto;
}

.admin-blog-guide strong {
  display: block;
  color: var(--navy-900);
}

.admin-media-fields {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: stretch;
}

.admin-cover-preview {
  min-height: 155px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 14px;
  color: #9aa3af;
  background: #f4f6f8;
}

.admin-cover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-media-fields > div:last-child {
  display: grid;
  gap: 10px;
}

.admin-rich-editor {
  overflow: hidden;
  border: 1px solid #dce1e7;
  border-radius: 13px;
  background: #fff;
}

.admin-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 9px;
  border-bottom: 1px solid #e5e8ec;
  background: #f7f8fa;
}

.admin-editor-toolbar button {
  min-width: 34px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid #d9dee5;
  border-radius: 7px;
  color: #405066;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}

.admin-editor-toolbar button:hover {
  color: #fff;
  border-color: var(--navy-700);
  background: var(--navy-700);
}

.admin-editor-toolbar svg {
  width: 14px;
}

.admin-rich-editor > label {
  gap: 0;
}

.admin-rich-editor > label > small {
  padding: 9px 13px 0;
}

.admin-rich-editor .admin-blog-body {
  min-height: 470px;
  border: 0;
  border-radius: 0;
  background: #fff;
  font-size: 12px !important;
  line-height: 1.75;
}

.admin-editor-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 13px;
  border-top: 1px solid #e8ebef;
  color: #7f8996;
  background: #fafbfc;
  font-size: 8px;
}

.admin-editor-status .is-warning {
  color: #b45309;
}

[data-seo-title-count],
[data-seo-description-count] {
  min-height: 14px;
}

[data-seo-title-count].is-good,
[data-seo-description-count].is-good {
  color: #15803d !important;
}

.floating-actions__whatsapp img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.inline-whatsapp-icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-card > .inline-whatsapp-icon {
  width: 25px;
  height: 25px;
}

@media (max-width: 1050px) {
  .visual-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .instagram-live,
  .instagram-profile-embed,
  .related-posts__grid {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 700px) {
  .visual-service-grid {
    grid-template-columns: 1fr;
  }

  .visual-service-card p {
    min-height: 0;
  }

  .instagram-live,
  .instagram-profile-embed {
    padding: 20px;
  }

  .blog-search {
    height: auto;
    grid-template-columns: 20px 1fr;
    padding: 12px;
  }

  .blog-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .article-author,
  .admin-media-fields {
    grid-template-columns: 1fr;
  }

  .article-author img {
    max-width: 150px;
  }

  .article-content > h2 {
    font-size: 24px;
  }
}

/* Final ana sayfa sadeleştirmesi */
.desktop-nav a.active {
  color: var(--navy-900);
}

.desktop-nav a.active::after {
  transform: scaleX(1);
}

.mobile-menu a.active:not(.button) {
  color: var(--gold-light);
}

.hero--compact {
  min-height: auto;
}

.hero--compact .hero__grid {
  min-height: 650px;
  padding-block: 60px;
}

.hero--compact .hero__trust {
  margin-top: 30px;
}

.hero__trust--compact > div {
  min-width: 0;
}

.analysis-section--priority {
  padding-block: 78px;
  background:
    radial-gradient(circle at 0 0, rgba(207, 172, 111, .12), transparent 34%),
    linear-gradient(180deg, #f7f4ee, #fff);
}

.analysis-section--priority .analysis-section__grid {
  align-items: center;
}

.home-intro {
  padding-block: 88px;
  background: #fff;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 62px;
  align-items: center;
}

.home-intro__image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7,20,45,.12);
}

.home-intro__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
}

.home-intro h2 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.055em;
  line-height: 1.06;
}

.home-intro p {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.home-intro__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.home-services {
  padding-block: 88px;
  background: #f5f6f8;
}

.section-heading__action {
  max-width: 470px;
}

.section-heading__action p {
  margin: 0 0 13px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-950);
  box-shadow: 0 15px 38px rgba(7,20,45,.10);
}

.home-service-card a {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.home-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .45s ease, opacity .3s ease;
}

.home-service-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,14,31,.04) 20%, rgba(5,14,31,.88) 100%);
}

.home-service-card span,
.home-service-card h3 {
  position: relative;
  z-index: 1;
}

.home-service-card span {
  color: #f0d6a7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-service-card h3 {
  margin: 6px 0 0;
  font-size: 21px;
}

.home-service-card:hover img {
  transform: scale(1.055);
  opacity: .9;
}

.results--clean {
  padding-block: 88px;
  background: #fff;
}

.instagram-grid--nine {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.instagram-post-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #e9edf2;
}

.instagram-post-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.instagram-post-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  color: #fff;
  background: rgba(7,20,45,.64);
  font-size: 10px;
  transition: opacity .25s ease;
}

.instagram-post-card:hover > img {
  transform: scale(1.04);
}

.instagram-post-card:hover .instagram-post-card__overlay {
  opacity: 1;
}

.instagram-feed-note {
  margin: 18px 0 0;
  padding: 12px 15px;
  border-radius: 10px;
  color: #78613c;
  background: #fff7e8;
  font-size: 9px;
  line-height: 1.6;
}

.faq--compact {
  padding-block: 80px;
}

@media (max-width: 1100px) {
  .hero--compact .hero__grid {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .home-intro__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero--compact .hero__grid {
    padding-block: 45px;
  }

  .analysis-section--priority,
  .home-intro,
  .home-services,
  .results--clean,
  .faq--compact {
    padding-block: 62px;
  }

  .home-intro h2 {
    font-size: 34px;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card a {
    min-height: 230px;
  }

  .instagram-grid--nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .instagram-post-card {
    border-radius: 5px;
  }

  .instagram-post-card__overlay {
    display: none;
  }
}

/* Premium son rötuşlar */
.desktop-nav a.active {
  color: #f5d89e;
  background: rgba(207, 172, 111, .12);
  box-shadow: inset 0 0 0 1px rgba(231, 201, 145, .18);
}

.desktop-nav a.active::after {
  left: 14px;
  right: 14px;
  bottom: 5px;
  width: auto;
  height: 1px;
  background: var(--gold-light);
}

.php-analysis-form {
  --form-red: #cda75f;
  overflow: hidden;
  border: 1px solid rgba(207, 172, 111, .36);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 30px 80px rgba(7, 20, 45, .16), 0 1px 0 rgba(255,255,255,.9) inset;
}

.php-analysis-form .analysis-form__head {
  padding: 30px 24px 20px;
  background:
    radial-gradient(circle at 80% 0, rgba(207,172,111,.18), transparent 38%),
    linear-gradient(135deg, #07142d, #102c54);
}

.php-analysis-form .analysis-form__head h3 {
  color: #f4d79f;
  font-family: "Playfair Display", serif;
  font-size: 39px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.php-analysis-form .form-stepper {
  padding-top: 20px;
  border-bottom: 1px solid rgba(13, 35, 69, .08);
  background: #f8f3e9;
}

.php-analysis-form .form-stepper__item {
  color: #4f5d72;
}

.php-analysis-form .form-stepper__item::after {
  background: #ded7c9;
}

.php-analysis-form .form-stepper__item span {
  border-radius: 50%;
  color: #667085;
  background: #e1ded7;
}

.php-analysis-form .form-stepper__item.active span,
.php-analysis-form .form-stepper__item.completed span,
.php-analysis-form .form-stepper__item.completed::after {
  color: #07142d;
  background: #d8b66f;
}

.php-analysis-form .form-stepper__item.active strong {
  color: #07142d;
  font-weight: 800;
}

.php-analysis-form .analysis-form__body,
.php-analysis-form .analysis-form__actions {
  background: #fffdf8;
}

.php-analysis-form .analysis-form__body {
  border-top: 0;
}

.php-analysis-form .analysis-form__body legend {
  color: #071f3f;
}

.php-analysis-form .choice-card,
.php-analysis-form select,
.php-analysis-form .input-with-icon {
  border-color: #d9dfe7;
  background: #fff;
}

.php-analysis-form .choice-card:hover {
  border-color: #c7a65f;
  box-shadow: 0 12px 26px rgba(7,20,45,.07);
}

.php-analysis-form .choice-card.selected {
  border-color: #c7a65f;
  background: #fbf4e5;
  box-shadow: inset 0 0 0 1px #c7a65f, 0 12px 28px rgba(7,20,45,.08);
}

.php-analysis-form .choice-card > svg:last-child,
.php-analysis-form .choice-check {
  color: #07142d;
  background: #d8b66f;
}

.pattern-grid--clinical .pattern-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.pattern-grid--clinical .pattern-card > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.pattern-grid--clinical .pattern-card.selected {
  border-color: #c7a65f;
  box-shadow: inset 0 0 0 3px #d8b66f, 0 10px 24px rgba(7,20,45,.08);
  background: #fbf4e5;
}

.php-analysis-form select:focus,
.php-analysis-form input:focus {
  border-color: #c7a65f;
  box-shadow: 0 0 0 3px rgba(207, 172, 111, .18);
}

.php-analysis-form .analysis-form__actions {
  padding-bottom: 28px;
}

.php-analysis-form .analysis-form__actions .button {
  min-height: 56px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #0a2141, #123866);
  box-shadow: 0 12px 24px rgba(7,20,45,.16);
}

.php-analysis-form .analysis-form__actions .button--ghost {
  color: #102c54;
  border: 1px solid #cfd7e2;
  background: #fff;
  box-shadow: none;
}

.php-analysis-form .analysis-form__actions .button--accent {
  color: #07142d;
  background: linear-gradient(135deg, #e3c27d, #cda75f);
}

.results--clean {
  background:
    radial-gradient(circle at 100% 0, rgba(207,172,111,.10), transparent 28%),
    linear-gradient(180deg, #fff, #f8f5ef);
}

.results--clean .section-heading h2 {
  max-width: 850px;
  overflow-wrap: anywhere;
  font-size: clamp(38px, 5vw, 68px);
}

.instagram-post-card {
  border: 1px solid rgba(7,20,45,.08);
  background: #0a1830;
  box-shadow: 0 16px 34px rgba(7,20,45,.10);
}

.instagram-post-card__overlay {
  background: linear-gradient(180deg, rgba(7,20,45,.18), rgba(7,20,45,.82));
}

.site-footer .footer-bottom a {
  color: #e4c581;
  font-weight: 700;
}

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

.admin-inline-form {
  display: inline-flex;
}

.instagram-sync-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 22px;
}

.instagram-sync-panel h2 {
  margin: 8px 0 10px;
}

.instagram-sync-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.instagram-sync-panel__status {
  min-width: 250px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(207,172,111,.3);
  border-radius: 14px;
  color: #536176;
  background: #fffaf0;
  font-size: 10px;
}

.instagram-sync-panel__status strong {
  color: #0b2447;
  font-size: 15px;
}

@media (max-width: 800px) {
  .instagram-sync-panel {
    grid-template-columns: 1fr;
  }

  .php-analysis-form .analysis-form__head h3 {
    font-size: 32px;
  }
}
