/* =========================================================
   Homepage — premium health UI layer
   Scoped to body.page-home
   ========================================================= */

body.page-home,
body.page-seo-landing.page-home {
  --home-gradient: linear-gradient(135deg, #1e6bff 0%, #0d9488 100%);
  --home-glass: rgba(255, 255, 255, 0.72);
  --home-glass-border: rgba(255, 255, 255, 0.85);
}

body.page-home .site-main,
body.page-seo-landing.page-home .site-main {
  overflow: visible;
}

body.page-seo-landing.page-home .seo-article--home {
  max-width: none;
}

body.page-seo-landing.page-home .seo-article--home .home-section,
body.page-seo-landing.page-home .seo-article--home .home-trust {
  margin-left: 0;
  margin-right: 0;
}

/* —— Hero —— */
.home-hero {
  position: relative;
  padding: clamp(32px, 5vw, 64px) 0 clamp(56px, 6vw, 88px);
  overflow: hidden;
  background: linear-gradient(165deg, #f8fbff 0%, #eef6ff 38%, #f0faf9 72%, #f8fbff 100%);
  border-bottom: none;
}

.home-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e6bff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.home-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  color: var(--color-bg, #fbfcff);
  pointer-events: none;
  z-index: 2;
}

.home-hero__wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__lead a {
  color: var(--color-accent);
  font-weight: 650;
  text-decoration: none;
}

.home-hero__lead a:hover {
  text-decoration: underline;
}

body.page-seo-landing.page-home .seo-layout {
  padding-top: clamp(20px, 3vw, 36px);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: homeOrbFloat 14s ease-in-out infinite;
}

.home-hero__orb--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -18%;
  right: -8%;
  background: rgba(30, 107, 255, 0.35);
}

.home-hero__orb--2 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  bottom: -12%;
  left: -6%;
  background: rgba(13, 148, 136, 0.28);
  animation-delay: -4s;
}

.home-hero__orb--3 {
  width: 220px;
  height: 220px;
  top: 42%;
  left: 38%;
  background: rgba(99, 102, 241, 0.18);
  animation-delay: -7s;
}

@keyframes homeOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 18px) scale(1.05);
  }
}

.home-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 39, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 39, 68, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.home-hero__float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--home-glass);
  border: 1px solid var(--home-glass-border);
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--color-accent);
  font-size: 1.25rem;
  z-index: 2;
  animation: homeFloatBadge 6s ease-in-out infinite;
}

.home-hero__float--a {
  top: 18%;
  right: 8%;
}

.home-hero__float--b {
  bottom: 22%;
  left: 6%;
  animation-delay: -2s;
  color: var(--color-success);
}

@keyframes homeFloatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 980px) {
  .home-hero__layout {
    grid-template-columns: 1fr;
  }

  .home-hero__float {
    display: none;
  }
}

.home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.home-pill--live {
  color: var(--color-accent);
  border-color: rgba(30, 107, 255, 0.2);
  background: rgba(30, 107, 255, 0.08);
}

.home-pill--link {
  text-decoration: none;
  color: var(--color-accent);
  transition: background 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
}

.home-pill--link:hover {
  background: rgba(30, 107, 255, 0.12);
  border-color: rgba(30, 107, 255, 0.28);
}

.home-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: homePulse 2s ease-in-out infinite;
}

@keyframes homePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.home-hero__title {
  font-size: clamp(2.35rem, 1.4rem + 3.2vw, 3.85rem);
  line-height: 1.04;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.home-gradient-text {
  background: var(--home-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 0 22px;
}

.home-hero__lead strong {
  color: var(--color-text);
  font-weight: 700;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.home-btn-glow {
  position: relative;
}

.home-btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--home-gradient);
  opacity: 0.35;
  filter: blur(14px);
  z-index: -1;
  transition: opacity 0.2s var(--ease-out);
}

.home-btn-glow:hover::after {
  opacity: 0.55;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}

.home-hero__trust p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.home-avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.home-avatar-stack span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(145deg, #dbe7ff, #1e6bff);
  box-shadow: var(--shadow-sm);
}

.home-avatar-stack span:first-child {
  margin-left: 0;
  background: linear-gradient(145deg, #ccfbf1, #0d9488);
}

.home-avatar-stack span:nth-child(2) {
  background: linear-gradient(145deg, #e0e7ff, #6366f1);
}

/* Hero visual / glass */
.home-hero__visual {
  position: relative;
  min-height: 380px;
}

@media (max-width: 980px) {
  .home-hero__visual {
    min-height: 320px;
  }
}

.home-glass {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--home-glass-border);
  background: var(--home-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 28px 70px rgba(15, 39, 68, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.home-glass--main {
  padding: 0;
}

.home-glass__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15, 39, 68, 0.06);
  background: rgba(255, 255, 255, 0.5);
}

.home-glass__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.home-glass__dot:nth-child(1) {
  background: #f87171;
}

.home-glass__dot:nth-child(2) {
  background: #fbbf24;
}

.home-glass__dot:nth-child(3) {
  background: #34d399;
}

.home-glass__label {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-faint);
}

.home-glass__body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 12px;
}

.home-metric {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 39, 68, 0.06);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.home-metric:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.home-metric__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-primary-soft);
  color: var(--color-accent);
  font-size: 1.2rem;
}

.home-metric__icon--teal {
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-success);
}

.home-metric__icon--navy {
  background: rgba(15, 39, 68, 0.08);
  color: var(--color-text);
}

.home-metric__text {
  display: grid;
  gap: 2px;
}

.home-metric__text strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.home-metric__text small {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.home-metric__tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(30, 107, 255, 0.1);
  color: var(--color-accent);
}

.home-metric__tag--teal {
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-success);
}

.home-stat-float {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  animation: homeFloatBadge 5s ease-in-out infinite;
}

.home-stat-float--1 {
  top: -8px;
  right: -12px;
}

.home-stat-float--2 {
  bottom: 24px;
  left: -16px;
  animation-delay: -1.5s;
}

.home-stat-float__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--home-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-stat-float__lbl {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--color-muted);
}

/* —— Adana sağlık kabini pillar strip —— */
.home-seo-pillar {
  border-block: 1px solid var(--color-border);
  background: linear-gradient(90deg, rgba(30, 107, 255, 0.08), rgba(13, 148, 136, 0.06), rgba(30, 107, 255, 0.08));
  padding: 20px 0;
}

.home-seo-pillar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-seo-pillar__title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-seo-pillar__title a {
  color: var(--color-text);
  text-decoration: none;
}

.home-seo-pillar__title a:hover {
  color: var(--color-accent);
}

.home-seo-pillar__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 52ch;
}

.seo-pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--color-accent);
  background: rgba(30, 107, 255, 0.1);
  border: 1px solid rgba(30, 107, 255, 0.2);
}

.seo-pillar-badge i {
  color: var(--color-success);
}

/* —— Trust marquee —— */
.home-trust {
  border-block: 1px solid var(--color-border);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 255, 0.95), rgba(255, 255, 255, 0.95));
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-trust__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: homeMarquee 38s linear infinite;
}

.home-trust__track:hover {
  animation-play-state: paused;
}

@keyframes homeMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.home-trust__item i {
  color: var(--color-success);
  font-size: 1.05rem;
}

/* —— Sections —— */
.home-section {
  padding: clamp(64px, 7vw, 104px) 0;
  position: relative;
}

.home-section--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30, 107, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.home-section--alt {
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.6), transparent);
}

.home-section--faq {
  background: linear-gradient(180deg, transparent, rgba(243, 247, 255, 0.8));
}

.home-section--cta {
  padding-bottom: clamp(72px, 8vw, 112px);
}

.home-section__head {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.home-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.home-section__head--center .lead {
  margin-inline: auto;
}

.home-section__foot {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(30, 107, 255, 0.1);
  border: 1px solid rgba(30, 107, 255, 0.15);
  margin-bottom: 14px;
}

.home-tag--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* —— Bento services —— */
.home-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .home-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-bento {
    grid-template-columns: 1fr;
  }
}

.home-bento__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.home-bento__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 107, 255, 0.22);
}

.home-bento__item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 560px) {
  .home-bento__item--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.home-bento__media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-2);
}

.home-bento__item--featured .home-bento__media {
  aspect-ratio: 16 / 9;
}

.home-bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.home-bento__item:hover .home-bento__img {
  transform: scale(1.04);
}

.home-bento__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.home-bento__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 10px;
}

.home-bento__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.22rem;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-600));
  box-shadow: 0 6px 16px rgba(30, 107, 255, 0.28);
  border: none;
  margin: 0;
}

.home-bento__item--featured .home-bento__icon {
  width: 52px;
  height: 52px;
  font-size: 1.38rem;
  border-radius: 16px;
}

.home-bento__title {
  margin: 0;
  padding-top: 4px;
  font-weight: 850;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-text);
}

.home-bento__item--featured .home-bento__title {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
}

.home-bento__text {
  margin: 0;
  flex: 1 1 auto;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-bento__item--featured .home-bento__text {
  -webkit-line-clamp: 4;
  font-size: 0.96rem;
}

.home-bento__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
}

.home-bento__link i {
  transition: transform 0.2s var(--ease-out);
}

.home-bento__item:hover .home-bento__link i {
  transform: translate(3px, -3px);
}

.home-bento__item.reveal {
  transition-delay: calc(var(--d, 0) * 60ms);
}

/* —— Split / showcase —— */
.home-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 980px) {
  .home-split {
    grid-template-columns: 1fr;
  }
}

.home-showcase {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.home-showcase__ring {
  position: absolute;
  width: min(340px, 85%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(30, 107, 255, 0.2);
  animation: homeSpin 24s linear infinite;
}

@keyframes homeSpin {
  to {
    transform: rotate(360deg);
  }
}

.home-showcase__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  animation: homeFloatBadge 7s ease-in-out infinite;
}

.home-showcase__card i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.home-showcase__card strong {
  display: block;
  font-size: 0.95rem;
}

.home-showcase__card span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.home-showcase__card--top {
  top: 8%;
  left: 4%;
  animation-delay: 0s;
}

.home-showcase__card--mid {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: linear-gradient(145deg, #1e6bff, #0d9488);
  border: none;
  color: #fff;
  box-shadow: 0 24px 50px rgba(30, 107, 255, 0.35);
  animation: none;
}

.home-showcase__big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.home-showcase__sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
}

.home-showcase__card--btm {
  bottom: 6%;
  right: 2%;
  animation-delay: -3s;
}

.home-checklist {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.home-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
}

.home-checklist__ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-success);
  font-size: 1rem;
}

/* —— Timeline —— */
.home-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
}

@media (max-width: 900px) {
  .home-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
  }
}

.home-timeline__line {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-success));
  border-radius: 99px;
  opacity: 0.35;
}

@media (max-width: 900px) {
  .home-timeline__line {
    display: none;
  }
}

.home-timeline__step {
  position: relative;
  padding: 24px 20px 22px;
  border-radius: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.home-timeline__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.home-timeline__num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  background: var(--home-gradient);
  box-shadow: 0 12px 28px rgba(30, 107, 255, 0.25);
  margin-bottom: 14px;
}

.home-timeline__title {
  margin: 0 0 8px;
  font-weight: 850;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.home-timeline__text {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

/* —— Team —— */
.home-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .home-team {
    grid-template-columns: 1fr;
  }
}

.home-team__card {
  position: relative;
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.home-team__card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(30, 107, 255, 0.4), rgba(13, 148, 136, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s;
}

.home-team__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.home-team__card:hover::before {
  opacity: 1;
}

.home-team__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.home-team__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--color-accent);
  background: linear-gradient(145deg, #f3f7ff, #ffffff);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.home-team__name {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.home-team__role {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.home-team__card.reveal {
  transition-delay: calc(var(--d, 0) * 80ms);
}

/* —— Reviews —— */
.home-reviews {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .home-reviews {
    grid-template-columns: 1fr;
  }
}

.home-reviews__stack {
  display: grid;
  gap: 18px;
}

.home-review {
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.home-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home-review--featured {
  padding: 32px;
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 45%, #eef6ff 100%);
  border-color: rgba(30, 107, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.home-review__quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(30, 107, 255, 0.12);
  line-height: 1;
}

.home-review__stars {
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.home-review blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text);
}

.home-review--featured blockquote {
  font-size: 1.15rem;
}

.home-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  background: var(--home-gradient);
  flex-shrink: 0;
}

.home-review__author strong {
  display: block;
  font-size: 0.95rem;
}

.home-review__author small {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* —— FAQ layout —— */
.home-faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 900px) {
  .home-faq-layout {
    grid-template-columns: 1fr;
  }
}

.home-faq-intro .lead {
  margin-bottom: 20px;
}

.home-faq .faq__q i {
  transition: transform 0.25s var(--ease-out);
}

.home-faq .faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}

.home-faq .faq__item.is-open .faq__q {
  color: var(--color-accent);
}

/* —— CTA —— */
.home-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2744 0%, #1a4a8a 40%, #1e6bff 70%, #0d9488 100%);
  color: #fff;
  box-shadow: 0 32px 80px rgba(15, 39, 68, 0.25);
}

@media (max-width: 860px) {
  .home-cta {
    grid-template-columns: 1fr;
  }
}

.home-cta__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -50%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.home-cta__title {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  margin: 0 0 12px;
  color: #fff;
}

.home-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  max-width: 48ch;
}

/* SEO .prose stilleri mavi CTA metnini ezmesin */
.seo-article--home .home-cta,
.seo-article .home-cta {
  color: #fff;
}

.seo-article--home .home-cta .home-cta__title,
.seo-article .home-cta .home-cta__title {
  color: #fff;
}

.seo-article--home .home-cta .home-cta__text,
.seo-article .home-cta .home-cta__text {
  color: rgba(255, 255, 255, 0.92);
}

.seo-article--home .home-cta .home-tag--light,
.seo-article .home-cta .home-tag--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
}

.seo-article--home .home-cta .home-cta__content,
.seo-article .home-cta .home-cta__content {
  color: #fff;
}

.seo-article--home .home-cta .btn--light,
.seo-article .home-cta .btn--light {
  color: var(--color-text);
}

.seo-article--home .home-cta .btn--outline-light,
.seo-article .home-cta .btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.seo-article--home .home-cta a.btn,
.seo-article .home-cta a.btn {
  text-decoration: none;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .home-cta__actions {
    justify-content: flex-start;
  }
}

/* —— Images —— */
.home-hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.home-hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.home-hero__photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.05) 0%, rgba(15, 39, 68, 0.35) 55%, rgba(15, 39, 68, 0.55) 100%);
  pointer-events: none;
}

.home-hero__visual .home-glass {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
}

.home-hero__visual {
  min-height: 460px;
}

.home-hero__visual .home-stat-float {
  z-index: 4;
}

.home-avatar-stack {
  display: flex;
  align-items: center;
}

.home-avatar-stack__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.home-avatar-stack__img:first-child {
  margin-left: 0;
}

.home-showcase {
  min-height: 480px;
}

.home-showcase__photo {
  position: absolute;
  inset: 8% 6% 8% 6%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 0;
}

.home-showcase__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-showcase__card {
  z-index: 2;
}

.home-showcase__card--mid {
  background: linear-gradient(145deg, rgba(30, 107, 255, 0.92), rgba(13, 148, 136, 0.92));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.home-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
}

.home-gallery__item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.home-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.home-gallery__item:hover .home-gallery__img {
  transform: scale(1.04);
}

.home-team__avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.15);
  padding: 0;
  background: none;
}

.home-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-review--featured {
  position: relative;
  overflow: hidden;
}

.home-review__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.14;
}

.home-review__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-review--featured blockquote,
.home-review--featured .home-review__stars,
.home-review--featured .home-review__author,
.home-review--featured .home-review__quote-icon {
  position: relative;
  z-index: 1;
}

.home-cta {
  grid-template-columns: 0.9fr 1.1fr 0.8fr;
}

@media (max-width: 1024px) {
  .home-cta {
    grid-template-columns: 1fr 1fr;
  }

  .home-cta__visual {
    display: none;
  }
}

.home-cta__visual {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-cta__img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}
