/* =====================================================
   Ankara Evde Sağlık — Premium Editorial Theme
   Krem/Siyah palet · Glassmorphism · Inter Tight + Instrument Serif
   ===================================================== */

:root {
  --bg: #ece8de;
  --bg-2: #e1dccf;
  --bg-3: #d6cfbe;
  --bg-grad: radial-gradient(120% 80% at 50% 0%, #f2eee4 0%, #ece8de 50%, #d8d2c2 100%);

  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --ink-3: #555;
  --muted: #8a857a;
  --line: rgba(10, 10, 10, .12);
  --line-soft: rgba(10, 10, 10, .06);

  --glass: rgba(255, 253, 248, .55);
  --glass-strong: rgba(255, 253, 248, .78);
  --glass-line: rgba(255, 255, 255, .55);

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .05);
  --shadow: 0 16px 40px -16px rgba(10, 10, 10, .25), 0 4px 12px -6px rgba(10, 10, 10, .12);
  --shadow-lg: 0 32px 80px -24px rgba(10, 10, 10, .35), 0 8px 24px -10px rgba(10, 10, 10, .15);

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --container: 1240px;
  --container-narrow: 820px;

  --t: .35s cubic-bezier(.4, 0, .2, 1);
  --t-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============ Background Decor (Serum Bags) ============ */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-grad);
}
.bg-bag { position: absolute; opacity: .55; filter: saturate(0.85); }
.bg-bag--main {
  width: clamp(420px, 45vw, 720px);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  opacity: .45;
}
.bg-bag--tl {
  width: clamp(120px, 14vw, 200px);
  top: 16%;
  left: 4%;
  opacity: .25;
  transform: rotate(-12deg);
}
.bg-bag--br {
  width: clamp(120px, 14vw, 220px);
  bottom: 8%;
  right: 4%;
  opacity: .22;
  transform: rotate(8deg);
}

/* ============ Topbar (Pill Nav like reference) ============ */
.topbar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
}

.brand-pill,
.menu-pill,
.phone-pill {
  background: var(--glass-strong);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.brand-pill:hover,
.phone-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.brand-pill {
  padding: 8px 18px 8px 8px;
  gap: 10px;
}
.brand-pill__mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-pill__txt { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }

.menu-pill {
  padding: 6px 14px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.menu-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  background: var(--ink);
  color: var(--bg);
  transition: background var(--t);
}
.menu-pill__btn:hover { background: #1d1d1d; }
.menu-pill__sep { color: var(--muted); font-size: 12px; }
.menu-pill__link {
  padding: 6px 4px;
  color: var(--ink);
  font-weight: 500;
  transition: color var(--t);
}
.menu-pill__link:hover { color: var(--ink-3); }

.phone-pill {
  padding: 8px 18px 8px 12px;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.phone-pill__dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .25);
  animation: livePulse 2.4s infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, .25); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}
.phone-pill__txt { color: var(--ink-3); font-weight: 500; }
.phone-pill__num { color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }

@media (max-width: 1080px) {
  .menu-pill { display: none; }
}
@media (max-width: 720px) {
  .topbar { padding: 0 16px; top: 16px; gap: 8px; }
  .brand-pill__txt { display: none; }
  .brand-pill { padding: 6px; }
  .phone-pill { padding: 8px 14px 8px 10px; gap: 8px; }
  .phone-pill__txt { display: none; }
  .phone-pill__num { font-size: 13px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .2);
  animation: livePulse 2.4s infinite;
}

.hero__title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 1100px;
}
.hero__title-line {
  display: block;
}
.hero__title em {
  font-family: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-3);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* ============ Glass Cards (Staggered, like reference) ============ */
.cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 60px;
}

.g-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 22px 22px 26px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  min-height: 240px;
  color: var(--ink);
  width: 100%;
}
.g-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}
.g-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--glass-strong);
}
.g-card:active { transform: translateY(-2px); }

/* Staggered heights/positions */
.g-card--1 { transform: translateY(40px); }
.g-card--2 { transform: translateY(0); min-height: 280px; }
.g-card--3 { transform: translateY(20px); }
.g-card--4 { transform: translateY(60px); min-height: 220px; }

.g-card--1:hover { transform: translateY(34px); }
.g-card--2:hover { transform: translateY(-6px); }
.g-card--3:hover { transform: translateY(14px); }
.g-card--4:hover { transform: translateY(54px); }

.g-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}

.g-card__icon {
  width: 44px;
  height: 44px;
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.g-card__title {
  display: block;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.g-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: gap var(--t), color var(--t);
}
.g-card:hover .g-card__cta {
  gap: 10px;
  color: var(--ink);
}

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
  .g-card--1, .g-card--2, .g-card--3, .g-card--4 { transform: translateY(0); min-height: 220px; }
  .g-card--1:hover, .g-card--2:hover, .g-card--3:hover, .g-card--4:hover { transform: translateY(-6px); }
}
@media (max-width: 540px) {
  .cards { grid-template-columns: 1fr; max-width: 380px; }
  .hero { padding: 100px 20px 40px; }
}

/* ============ Hero Foot Stats ============ */
.hero__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-line);
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}
.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
.stat strong {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat span {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .hero__foot { border-radius: var(--radius); padding: 14px 18px; }
  .stat { padding: 6px 14px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { border-right: 1px solid var(--line-soft); }
}

/* ============ Sections ============ */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.section--alt {
  background: rgba(255, 253, 248, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 768px) { .section { padding: 80px 0; } }

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.sec-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.sec-eyebrow--light { color: rgba(255, 253, 248, .7); }
.sec-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 18px;
}
.sec-title em { font-size: 1.05em; font-weight: 400; }
.sec-lede {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 600px;
  margin: 14px auto 0;
}

/* ============ Services ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 255, 255, .3), transparent 50%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--glass-strong);
}
.service-card__num {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--ink-3);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  position: relative;
}
.service-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card ul {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.service-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 8px;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ============ Team ============ */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-card {
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card--lead {
  grid-column: span 3;
  flex-direction: row;
  background: var(--glass-strong);
  align-items: center;
  gap: 32px;
  padding: 36px;
}
.team-card--lead .team-card__avatar {
  width: 96px;
  height: 96px;
  font-size: 26px;
  flex-shrink: 0;
}
.team-card--lead h3 {
  font-size: 26px;
}

.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.team-card__role {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 12px;
}
.team-card__cred {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card__cred li {
  font-size: 12.5px;
  color: var(--ink-3);
  position: relative;
  padding-left: 14px;
}
.team-card__cred li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .team-card--lead { grid-column: span 2; }
}
@media (max-width: 600px) {
  .team { grid-template-columns: 1fr; }
  .team-card--lead { grid-column: span 1; flex-direction: column; text-align: center; padding: 28px; }
  .team-card--lead .team-card__cred li { padding-left: 0; }
  .team-card--lead .team-card__cred li::before { display: none; }
}

/* ============ Process Steps ============ */
.process {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.process__step {
  flex: 1;
  text-align: center;
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--t);
}
.process__step:hover { transform: translateY(-4px); }
.process__num {
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  line-height: 1;
}
.process__step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process__step p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}
.process__divider {
  flex: 0 0 40px;
  align-self: center;
  height: 1px;
  background: var(--line);
  position: relative;
}
.process__divider::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .process { flex-direction: column; }
  .process__divider { width: 1px; height: 30px; flex: 0 0 30px; margin: 0 auto; }
  .process__divider::after {
    transform: rotate(135deg);
    right: -3px;
    top: auto;
    bottom: -2px;
  }
}

/* ============ Reviews ============ */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-3);
}
.rating strong { color: var(--ink); font-weight: 700; }
.rating__stars { display: inline-flex; gap: 2px; }

.reviews {
  columns: 3;
  column-gap: 18px;
}
.review {
  break-inside: avoid;
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review::before {
  content: '"';
  font-family: 'Instrument Serif', serif;
  font-size: 60px;
  color: var(--ink);
  opacity: 0.15;
  position: absolute;
  top: 4px;
  right: 18px;
  line-height: 1;
}
.review__text {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review__foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.review__foot strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review__foot span {
  font-size: 12.5px;
  color: var(--ink-3);
}
@media (max-width: 980px) { .reviews { columns: 2; } }
@media (max-width: 600px) { .reviews { columns: 1; } }

/* ============ Districts ============ */
.districts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}
.districts li {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-pill);
  padding: 14px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all var(--t);
  position: relative;
}
.districts li:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  border-color: var(--ink);
}

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background var(--t), border-color var(--t);
}
.faq__item[open] {
  background: var(--glass-strong);
  border-color: var(--line);
}
.faq__item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  transition: transform var(--t);
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq__item p {
  padding: 0 24px 22px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ CTA Block ============ */
.section--cta { padding-bottom: 100px; }
.cta-block {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 32px 80px -24px rgba(10, 10, 10, .4);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 100% at 50% 0%, rgba(255, 255, 255, .08), transparent 60%);
  pointer-events: none;
}
.cta-block .sec-eyebrow { color: rgba(255, 253, 248, .55); }
.cta-block__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--bg);
  margin: 14px 0 18px;
}
.cta-block__title em { font-weight: 400; color: rgba(255, 253, 248, .85); }
.cta-block__sub {
  font-size: 16px;
  color: rgba(255, 253, 248, .65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-block__phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--bg);
  color: var(--ink);
  padding: 22px 30px 22px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .35);
  transition: transform var(--t), box-shadow var(--t);
  margin-bottom: 36px;
  text-align: left;
}
.cta-block__phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, .45);
}
.cta-block__phone-label {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.cta-block__phone-num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-block__phone-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--t);
}
.cta-block__phone:hover .cta-block__phone-arrow { transform: rotate(-45deg); }
.cta-block__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 253, 248, .12);
  padding-top: 32px;
}
.cta-block__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.cta-block__meta strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.cta-block__meta span {
  font-size: 13px;
  color: rgba(255, 253, 248, .55);
}
@media (max-width: 768px) {
  .cta-block { padding: 56px 28px; }
  .cta-block__phone { padding: 16px 20px 16px 22px; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .cta-block__phone-num { font-size: 22px; }
  .cta-block__meta { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  background: rgba(255, 253, 248, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand .brand-pill__mark {
  width: 36px;
  height: 36px;
}
.footer__brand strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer__brand small {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  transition: color var(--t);
}
.footer__nav a:hover { color: var(--ink); }
.footer__bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.footer__disclaimer strong { color: var(--ink); }

/* ============ Modals ============ */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 720px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 80px);
  border-radius: var(--radius-lg);
  overflow: visible;
}
.modal::backdrop {
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal[open] { animation: modalIn .35s cubic-bezier(.4, 0, .2, 1); }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__inner {
  background: rgba(255, 253, 248, .9);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px -16px rgba(10, 10, 10, .5);
  padding: 36px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 22px;
  font-weight: 300;
  display: grid;
  place-items: center;
  transition: transform var(--t), background var(--t);
}
.modal__close:hover { transform: rotate(90deg); background: #1d1d1d; }
.modal__title {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.modal__title em { font-weight: 400; }
.modal__body p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.modal__body strong { color: var(--ink); font-weight: 600; }
.modal__list {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal__list li {
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}
.modal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}
.modal__list li strong { color: var(--ink); margin-right: 6px; }
.modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.modal__grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal__grid strong {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.modal__grid span {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.modal__body blockquote {
  border-left: 2px solid var(--ink);
  padding: 6px 0 6px 18px;
  margin: 18px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.modal__body blockquote em {
  font-family: 'Inter Tight', sans-serif;
  font-style: normal;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-top: 6px;
}
.modal__foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--t), background var(--t);
}
.cta-mini:hover { transform: translateY(-2px); background: #1d1d1d; }
.cta-mini--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.cta-mini--ghost:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 600px) {
  .modal__inner { padding: 24px; }
  .modal__grid { grid-template-columns: 1fr; }
}

/* ============ Reveal Animations ============ */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-in {
  animation: revealUp .8s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-init { opacity: 1; transform: none; }
  .bg-bag { display: none; }
}

/* Selection */
::selection { background: var(--ink); color: var(--bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(10,10,10,.25); border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: rgba(10,10,10,.5); }

/* ===== Restored Latest Overrides ===== */
.bg-decor {
  --sway-x: 0px;
  --sway-y: 0px;
  --sway-rot: 0deg;
  background: #f1f0ed;
}
.bg-motion {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  transform: rotate(var(--sway-rot)) translate3d(var(--sway-x), var(--sway-y), 0) scale(1.08);
  transform-origin: 50% 0%;
  will-change: transform;
  z-index: 1;
}
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.02) saturate(0.92);
}
.bg-photo--fallback { display: none; }
.bg-decor.is-static-mobile .bg-photo--video { display: none; }
.bg-decor.is-static-mobile .bg-photo--fallback { display: block; }
.bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(110% 70% at 50% -8%, rgba(255, 255, 255, .03), rgba(0, 0, 0, .12)),
    linear-gradient(to bottom, rgba(236, 232, 222, .34), rgba(236, 232, 222, .72) 65%, rgba(236, 232, 222, .9));
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.topbar > .brand-pill { justify-self: start; }
.topbar > .menu-pill { justify-self: center; }
.topbar > .topbar-contact { justify-self: end; }
.topbar-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.phone-pill--wa {
  background: rgba(37, 211, 102, .18);
  border-color: rgba(37, 211, 102, .4);
}
.phone-pill__wa-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.phone-pill__wa-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.phone-pill__num--wa,
.cta-block__phone-num--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wa-cursor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-cursor-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .22);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay__inner {
  position: relative;
  width: min(360px, calc(100vw - 24px));
  margin-top: 82px;
  margin-left: 24px;
  border-radius: 18px;
  border: 1px solid var(--glass-line);
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--shadow-lg);
  padding: 14px;
}
.nav-overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10, 10, 10, .08);
  display: grid;
  place-items: center;
}
.nav-overlay__eyebrow {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .05em;
  margin-bottom: 10px;
  padding-left: 8px;
}
.nav-overlay__nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.nav-overlay__nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-weight: 600;
}
.nav-overlay__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
}
.nav-overlay__cta small { display: block; font-size: 10.5px; opacity: .7; }
.nav-overlay__cta strong { display: block; font-size: 18px; }

#heroCards .g-card {
  --base-x: 0px;
  --base-y: 0px;
  --base-rot: 0deg;
  --scroll-x: 0px;
  --scroll-y: 0px;
  --scroll-rot: 0deg;
  --scroll-opacity: 1;
  opacity: var(--scroll-opacity);
  transform:
    translate3d(calc(var(--base-x) + var(--scroll-x)), calc(var(--base-y) + var(--scroll-y)), 0)
    rotate(calc(var(--base-rot) + var(--scroll-rot)));
  transition: background var(--t), box-shadow var(--t), border-color var(--t), opacity .5s ease;
  will-change: transform, opacity;
}
#heroCards .g-card--1 { --base-y: 40px; }
#heroCards .g-card--2 { --base-y: 0px; min-height: 280px; }
#heroCards .g-card--3 { --base-y: 20px; }
#heroCards .g-card--4 { --base-y: 60px; min-height: 220px; }
#heroCards .g-card:hover { box-shadow: var(--shadow-lg); }

@media (max-width: 980px) {
  #heroCards .g-card {
    transform: none;
    opacity: 1;
    will-change: auto;
    min-height: 220px;
  }
  #heroCards .g-card--1,
  #heroCards .g-card--2,
  #heroCards .g-card--3,
  #heroCards .g-card--4 {
    --base-x: 0px;
    --base-y: 0px;
    --base-rot: 0deg;
    --scroll-x: 0px;
    --scroll-y: 0px;
    --scroll-rot: 0deg;
  }
}

@media (max-width: 540px) {
  #heroCards {
    gap: 14px;
  }
}

.cta-block__phone--wa {
  margin-top: -18px;
  background: #25d366;
  color: #fff;
}
.cta-block__phone--wa .cta-block__phone-label,
.cta-block__phone--wa .cta-block__phone-num { color: #fff; }
.cta-block__phone-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .22);
  border-radius: 50%;
}
.cta-block__phone-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .topbar { padding: 0 16px; top: 16px; gap: 10px; }
  .phone-pill { padding: 7px 12px 7px 10px; gap: 7px; }
  .topbar-contact { gap: 6px; }
  .phone-pill__txt { display: none; }
  .phone-pill__num { font-size: 12.5px; white-space: nowrap; }
  .topbar-contact .phone-pill:first-child .phone-pill__txt { display: inline; font-size: 12px; font-weight: 600; }
  .topbar-contact .phone-pill:first-child .phone-pill__num { display: none; }
  .phone-pill__dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, .2);
  }
}
@media (max-width: 720px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "brand menu wa"
      "hotline hotline hotline";
    align-items: center;
    padding: 0 10px;
    gap: 6px;
  }
  .brand-pill { grid-area: brand; }
  .menu-pill { grid-area: menu; }
  .topbar-contact { display: contents; }
  .topbar-contact .phone-pill:first-child {
    grid-area: hotline;
    justify-self: start;
  }
  .topbar-contact .phone-pill--wa {
    grid-area: wa;
    justify-self: end;
  }
  .menu-pill { padding: 5px 7px; }
  .phone-pill { padding: 7px 10px; gap: 7px; }
  .phone-pill__num { font-size: 12px; letter-spacing: 0; }
  .topbar-contact .phone-pill:first-child .phone-pill__txt { font-size: 10.5px; }
  .phone-pill__dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, .22);
    animation: none;
  }
  .phone-pill--wa { padding: 7px 12px 7px 9px; }
}
@media (max-width: 1080px) {
  .menu-pill { display: inline-flex; padding: 6px 8px; }
  .menu-pill__sep:nth-of-type(1),
  .menu-pill__link:nth-of-type(1),
  .menu-pill__sep:nth-of-type(2),
  .menu-pill__link:nth-of-type(2) { display: none; }
}

/* Menü satırı ile hero üst etiketi çakışmasın */
.hero {
  padding-top: 172px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 184px;
  }
}
@media (max-width: 720px) {
  .hero {
    padding-top: 198px;
  }
  .hero__eyebrow {
    margin-top: 8px;
  }
}
